B Appendix B Public Data
B.1 Introduction
B.1.1 Open Data Defined by World Bank
- See the following URL: http://opendatatoolkit.worldbank.org
The term “Open Data” has a very precise meaning. Data or content is open if anyone is free to use, re-use or redistribute it, subject at most to measures that preserve provenance and openness.
- The data must be , which means they must be placed in the public domain or under liberal terms of use with minimal restrictions.
- The data must be , which means they must be published in electronic formats that are machine readable and non-proprietary, so that anyone can access and use the data using common, freely available software tools. Data must also be publicly available and accessible on a public server, without password or firewall restrictions. To make Open Data easier to find, most organizations create and manage Open Data catalogs.
B.1.2 A List of Open Data Catalogue
B.1.2.1 International Institutions
- World Bank: New Ways of Looking at Poverty
- Open Data: https://data.worldbank.org
- World Development Indicators: http://datatopics.worldbank.org/world-development-indicators/
- UN Data: http://data.un.org
- WHO Data: https://www.who.int/gho/en/
- OECD: https://data.oecd.org
- European Union: http://data.europa.eu/euodp/en/home
- African Union: https://au.int/en/ea/statistics
B.1.2.2 Goverments
- United States: https://www.data.gov
- United Kingdom: https://data.gov.uk
- China: http://www.stats.gov.cn/english/
- Japan: https://www.data.go.jp/list-of-database/?lang=en
B.1.2.3 Other Open Public Data
- Google Public Data Explore: https://www.google.com/publicdata/directory?hl=en_US
- Google Dataset Search: https://toolbox.google.com/datasetsearch
- Google Trends: https://trends.google.com/trends/?geo=US
- Open Knowledge Foundation: https://okfn.org
- Global Open Data Index: https://index.okfn.org
- A global, non-profit network that promotes and shares information at no charge, including both content and data. It was founded by Rufus Pollock on 20 May 2004 and launched on 24 May 2004 in Cambridge, UK. It is incorporated in England and Wales as a company limited by guarantee. (Wikipedia)
- Our World in Data: https://ourworldindata.org
- A scientific online publication that focuses on large global problems such as poverty, disease, hunger, climate change, war, existential risks, and inequality. The publication’s founder is the social historian and development economist Max Roser. The research team is based at the University of Oxford. (Wikipedia)
B.1.2.4 Financial Data
B.1.2.4.2 Quantmod
quantmod: Quantitative Financial Modelling & Trading Framework forRRpackage `quantmod: https://cran.r-project.org/web/packages/quantmod/quantmod.pdfquantmodR documentation- Yahoo Finance Data Using
quantmod - Reference: CryptCurrency Bitcoin Analysis Using
quantmod
B.1.3 Examples
B.1.3.1 Florence Nightingale (1820 – 1910)
Florence Nightingale was an English social reformer, statistician and the founder of modern nursing. (wikipedia)
- Diagram of the Causes of Motality in the Army in the East
- Insights in Social History, Books and Research by Hugh Small
- Florence Nightingale’s Statistical Diagrams: https://www.york.ac.uk/depts/maths/histstat/small.htm
- Florence Nightingale Museum
- Book: A contribution to the sanitary history of the British army during the late war with Russia
- Project Gutenberg: Books by Nightingale, Florence
- Nightingale: The Journal of the Data Visualization Society, Medium
B.1.3.2 Hans Rosling (1948 – 2017)
Hans Rosling was a Swedish physician, academic, and public speaker. He was a professor of international health at Karolinska Institute[4] and was the co-founder and chairman of the Gapminder Foundation, which developed the Trendalyzer software system. (wikipedia)
- Books:
- Factfulness: Ten Reasons We’re Wrong About The World - And Why Things Are Better Than You Think, 2018
- How I Learned to Understand the World: A Memoir, 2020
- Gapminder: https://www.gapminder.org
- You are probably wrong about: Upgrade Your World View
- Bubble Chart: Income vs Life Expectancy over time, 1800 - 2020
- How many variables?
- Videos: The best stats you’ve ever seen, Hans Rosling
- Google Public Data: Example: World Development Indicator
B.1.3.2.1 Factfulness is … From the book
recognizing when a decision feels urgent and remembering that it rarely is.
To control the urgency instinct, take small steps.
- Take a breath. When your urgency instinct is triggered, your other instincts kick in and your analysis shuts down. Ask for more time and more information. It’s rarely now or never and it’s rarely either/or.
- Insist on the data. If something is urgent and important, it should be measured. Beware of data that is relevant but inaccurate, or accurate but irrelevant. Only relevant and accurate data is useful.
- Beware of fortune-tellers. Any prediction about the future is uncertain. Be wary of predictions that fail to acknowledge that. Insist on a full range of scenarios, never just the best or worst case. Ask how often such predictions have been right before.
- Be wary of drastic action. Ask what the side effects will be. Ask how the idea has been tested. Step-by-step practical improvements, and evaluation of their impact, are less dramatic but usually more effective.
B.2 World Bank
B.2.1 About
- World Bank: https://www.worldbank.org
- Who we are:
- To end extreme poverty: By reducing the share of the global population that lives in extreme poverty to 3 percent by 2030.
- To promote shared prosperity: By increasing the incomes of the poorest 40 percent of people in every country.
- World Bank Open Data: https://data.worldbank.org
B.2.2 WDI - World Development Indicaters
- World Development Indicators (WDI): the World Bank’s premier compilation of cross-country comparable data on development.
- Poverty and Inequality
- People
- Environment
- Economy
- States and Markets
- Global Links
B.2.3 R Package WDI
- WDI: World Development Indicators and Other World Bank Data
- Search and download data from over 40 databases hosted by the World Bank, including the World Development Indicators (‘WDI’), International Debt Statistics, Doing Business, Human Capital Index, and Sub-national Poverty indicators.
- Version: 2.7.4
- Materials: README - usage
- NEWS - version history
- Published: 2021-04-06
- Reference manual: WDI.pdf
B.2.3.1 Function WDI: World Development Indicators (World Bank)
- Description: Downloads the requested data by using the World Bank’s API, parses the resulting XML file, and formats it in long country-year format.
- Usage
WDI(
country = "all",
indicator = "NY.GDP.PCAP.KD",
start = 1960,
end = 2020,
extra = FALSE,
cache = NULL,
latest = NULL,
language = "en"
)
- Arguments
country:
Vector of countries (ISO-2 character codes, e.g. “BR”, “US”, “CA”) for which the data is needed. Using the string “all” instead of individual iso codes pulls data for every available country.indicator:
Character vector of indicators codes. See the WDIsearch() function. If you supply a named vector, the indicators will be automatically renamed: ‘c(’women_private_sector’ = ‘BI.PWK.PRVS.FE.ZS’)’start: Start date, usually a year in integer format. Must be 1960 or greater.
end:
End date, usually a year in integer format. Must be greater than the ‘start’ argument.extra:
TRUE returns extra variables such as region, iso3c code, and incomeLevelcache:
NULL (optional) a list created by WDIcache() to be used with the extra=TRUE argumentValue: Data frame with country-year observations. You can extract a data.frame with indicator names and descriptive labels by inspecting the
labelattribute of the resulting data.frame:attr(dat, 'label')
B.2.3.2 Function WDIsearch
Search names and descriptions of available WDI series
Description
Data frame with series code, name, description, and source for the WDI series which match the given criteriaUsage
WDIsearch(string = “gdp”, field = “name”, short = TRUE, cache = NULL)Arguments
string:
Character string. Search for this string using grep with ignore.case=TRUE.field:
Character string. Search this field. Admissible fields: ‘indicator’, ‘name’, ‘description’, ‘sourceDatabase’, ‘sourceOrganization’short;
TRUE: Returns only the indicator’s code and name. FALSE: Returns the indicator’s code, name, description, and source.cache;
Data list generated by the WDIcache function. If omitted, WDIsearch will search a local list of series.Value; Data frame with code, name, source, and description of all series which match the criteria.
B.2.4 The First Example
B.2.4.1 Setup
In this R Notebook, we will use the following packages. Istall them before you compile this R Notebook.
tidyversePackage, a collection of packages for data scienceWDIPackage for World Development Indicators
library(tidyverse)
library(WDI)B.2.4.2 GDP Per Capita
The following is taken from the usage.
WDI(
country = "all",
indicator = "NY.GDP.PCAP.KD",
start = 1960,
end = 2020,
extra = FALSE,
cache = NULL,
latest = NULL,
language = "en"
)WDIsearch(string = "NY.GDP.PCAP.KD", field = "indicator", cache = NULL)## indicator name
## [1,] "NY.GDP.PCAP.KD" "GDP per capita (constant 2015 US$)"
## [2,] "NY.GDP.PCAP.KD.ZG" "GDP per capita growth (annual %)"
WDIsearch(string = "NY.GDP.PCAP.KD", field = "indicator", short = FALSE, cache = NULL)## indicator name
## [1,] "NY.GDP.PCAP.KD" "GDP per capita (constant 2015 US$)"
## [2,] "NY.GDP.PCAP.KD.ZG" "GDP per capita growth (annual %)"
## description
## [1,] "GDP per capita is gross domestic product divided by midyear population. GDP is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in constant 2015 U.S. dollars."
## [2,] "Annual percentage growth rate of GDP per capita based on constant local currency. GDP per capita is gross domestic product divided by midyear population. GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources."
## sourceDatabase
## [1,] "World Development Indicators"
## [2,] "World Development Indicators"
## sourceOrganization
## [1,] "World Bank national accounts data, and OECD National Accounts data files."
## [2,] "World Bank national accounts data, and OECD National Accounts data files."
df <- as_tibble(WDI(
country = c("CN", "IN", "US", "ID","PK", "BR", "NG", "BD", "RU", "MX", "JP"),
indicator = "NY.GDP.PCAP.KD",
start = 1960,
end = 2020,
extra = FALSE,
cache = NULL,
latest = NULL,
language = "en"
))
df## # A tibble: 671 × 4
## iso2c country NY.GDP.PCAP.KD year
## <chr> <chr> <dbl> <int>
## 1 BD Bangladesh 1620. 2020
## 2 BD Bangladesh 1582. 2019
## 3 BD Bangladesh 1481. 2018
## 4 BD Bangladesh 1395. 2017
## 5 BD Bangladesh 1323. 2016
## 6 BD Bangladesh 1248. 2015
## 7 BD Bangladesh 1185. 2014
## 8 BD Bangladesh 1130. 2013
## 9 BD Bangladesh 1078. 2012
## 10 BD Bangladesh 1024. 2011
## # … with 661 more rows
ggplot(df) +
geom_line(aes(x = year, y = NY.GDP.PCAP.KD, color = country)) +
labs(title = "GDP per capita (constant 2010 US$)")## Warning: Removed 29 row(s) containing missing values (geom_path).

ggplot(df) +
geom_line(aes(x = year, y = NY.GDP.PCAP.KD, color = country)) +
scale_y_continuous(trans='log10') +
labs(title = "GDP per capita (constant 2010 US$)",
subtitle = "Log10 Scale")## Warning: Removed 29 row(s) containing missing values (geom_path).

ggplot(df) +
geom_line(aes(x = year, y = NY.GDP.PCAP.KD, color = country)) +
scale_y_continuous(trans='log10') +
facet_wrap(vars(country)) +
labs(title = "GDP per capita (constant 2010 US$)",
subtitle = "Log10 Scale")## Warning: Removed 29 row(s) containing missing values (geom_path).
### More Examples
B.2.4.4 Population
WDIsearch(string = "Population, Total", field = "name", cache = NULL)## indicator name
## [1,] "JI.POP.URBN.ZS" "Urban population, total (% of total population)"
## [2,] "SP.POP.TOTL" "Population, total"
WDIsearch(string = "SP.POP.TOTL", field = "indicator", cache = NULL)## indicator name
## [1,] "SP.POP.TOTL" "Population, total"
## [2,] "SP.POP.TOTL.FE.IN" "Population, female"
## [3,] "SP.POP.TOTL.FE.ZS" "Population, female (% of total population)"
## [4,] "SP.POP.TOTL.ICP" "SP.POP.TOTL.ICP:Population"
## [5,] "SP.POP.TOTL.ICP.ZS" "SP.POP.TOTL.ICP.ZS:Population shares (World=100)"
## [6,] "SP.POP.TOTL.MA.IN" "Population, male"
## [7,] "SP.POP.TOTL.MA.ZS" "Population, male (% of total population)"
## [8,] "SP.POP.TOTL.ZS" "Population (% of total)"
B.2.4.5 More Than One Indicator
dfp <- as_tibble(WDI(
country = c("CN", "IN", "US", "ID","PK", "BR", "NG", "BD", "RU", "MX", "JP"),
indicator = c("NY.GDP.PCAP.KD","SP.POP.TOTL"),
start = 1960,
end = 2020,
extra = FALSE,
cache = NULL,
latest = NULL,
language = "en"
))
dfp## # A tibble: 671 × 5
## iso2c country year NY.GDP.PCAP.KD SP.POP.TOTL
## <chr> <chr> <int> <dbl> <dbl>
## 1 BD Bangladesh 1960 463. 48013505
## 2 BD Bangladesh 1961 478. 49362834
## 3 BD Bangladesh 1962 490. 50752150
## 4 BD Bangladesh 1963 474. 52202008
## 5 BD Bangladesh 1964 511. 53741721
## 6 BD Bangladesh 1965 504. 55385114
## 7 BD Bangladesh 1966 501. 57157651
## 8 BD Bangladesh 1967 476. 59034250
## 9 BD Bangladesh 1968 505. 60918452
## 10 BD Bangladesh 1969 497. 62679765
## # … with 661 more rows
ggplot(dfp) +
geom_line(aes(x = year, y = SP.POP.TOTL, color = country)) +
labs(title = "Population, total")
ggplot(dfp) +
geom_line(aes(x = year, y = SP.POP.TOTL, color = country)) +
scale_y_continuous(trans='log10') +
labs(title = "Population, total",
subtitle = "Log10 Scale")
B.2.4.5.1 All Countries
df_gdp_all <- as_tibble(WDI(
country = "all",
indicator = c("NY.GDP.PCAP.KD","SP.POP.TOTL"),
start = 1960,
end = 2020,
extra = FALSE,
cache = NULL,
latest = NULL,
language = "en"
))
df_gdp_all## # A tibble: 16,226 × 5
## iso2c country year NY.GDP.PCAP.KD SP.POP.TOTL
## <chr> <chr> <int> <dbl> <dbl>
## 1 1A Arab World 1960 NA 92197715
## 2 1A Arab World 1961 NA 94724540
## 3 1A Arab World 1962 NA 97334438
## 4 1A Arab World 1963 NA 100034191
## 5 1A Arab World 1964 NA 102832792
## 6 1A Arab World 1965 NA 105736428
## 7 1A Arab World 1966 NA 108758634
## 8 1A Arab World 1967 NA 111899335
## 9 1A Arab World 1968 NA 115136161
## 10 1A Arab World 1969 NA 118437193
## # … with 16,216 more rows
df_gdp_all %>% filter(year == 2020) %>% arrange(desc(SP.POP.TOTL))## # A tibble: 266 × 5
## iso2c country year NY.GDP.PCAP.KD SP.POP.TOTL
## <chr> <chr> <int> <dbl> <dbl>
## 1 1W World 2020 10549. 7763932702
## 2 ZT IDA & IBRD total 2020 5017. 6571053159
## 3 XO Low & middle income 2020 4862. 6494812232
## 4 XP Middle income 2020 5341. 5811279241
## 5 XF IBRD only 2020 6290. 4862446431
## 6 V2 Early-demographic dividend 2020 3374. 3332103561
## 7 XN Lower middle income 2020 2297. 3318682068
## 8 XT Upper middle income 2020 9395. 2492597173
## 9 Z4 East Asia & Pacific 2020 11136. 2361517682
## 10 V3 Late-demographic dividend 2020 9711. 2316803603
## # … with 256 more rows
df_gdp_all %>% filter(year == 2020) %>% arrange(NY.GDP.PCAP.KD)## # A tibble: 266 × 5
## iso2c country year NY.GDP.PCAP.KD SP.POP.TOTL
## <chr> <chr> <int> <dbl> <dbl>
## 1 BI Burundi 2020 271. 11890781
## 2 MW Malawi 2020 394. 19129955
## 3 CF Central African Republic 2020 415. 4829764
## 4 MG Madagascar 2020 442. 27691019
## 5 SO Somalia 2020 445. 15893219
## 6 CD Congo, Dem. Rep. 2020 505. 89561404
## 7 NE Niger 2020 523. 24206636
## 8 AF Afghanistan 2020 530. 38928341
## 9 MZ Mozambique 2020 575. 31255435
## 10 LR Liberia 2020 616. 5057677
## # … with 256 more rows
df_gdp_all %>% filter(year == 2020) %>% arrange(desc(NY.GDP.PCAP.KD))## # A tibble: 266 × 5
## iso2c country year NY.GDP.PCAP.KD SP.POP.TOTL
## <chr> <chr> <int> <dbl> <dbl>
## 1 MC Monaco 2020 159222. 39244
## 2 LU Luxembourg 2020 104879. 630419
## 3 BM Bermuda 2020 99729. 63893
## 4 CH Switzerland 2020 85685. 8636561
## 5 IE Ireland 2020 78733. 4985674
## 6 KY Cayman Islands 2020 77959. 65720
## 7 NO Norway 2020 75017. 5379475
## 8 SG Singapore 2020 58982. 5685807
## 9 US United States 2020 58060. 331501080
## 10 AU Australia 2020 58030. 25693267
## # … with 256 more rows
df_gdp_all %>% filter(year == 2020) %>% mutate(GDP = NY.GDP.PCAP.KD * SP.POP.TOTL) %>% arrange(desc(GDP))## # A tibble: 266 × 6
## iso2c country year NY.GDP.PCAP.KD SP.POP.TOTL GDP
## <chr> <chr> <int> <dbl> <dbl> <dbl>
## 1 1W World 2020 10549. 7763932702 8.19e13
## 2 XD High income 2020 40336. 1240684527 5.00e13
## 3 OE OECD members 2020 35869. 1372980201 4.92e13
## 4 V4 Post-demographic dividend 2020 41227. 1117278019 4.61e13
## 5 ZT IDA & IBRD total 2020 5017. 6571053159 3.30e13
## 6 XO Low & middle income 2020 4862. 6494812232 3.16e13
## 7 XP Middle income 2020 5341. 5811279241 3.10e13
## 8 XF IBRD only 2020 6290. 4862446431 3.06e13
## 9 Z4 East Asia & Pacific 2020 11136. 2361517682 2.63e13
## 10 XT Upper middle income 2020 9395. 2492597173 2.34e13
## # … with 256 more rows
B.2.4.6 Gender
as_tibble(WDIsearch(string = "Gender", field = "name", cache = NULL))## # A tibble: 382 × 2
## indicator name
## <chr> <chr>
## 1 2.3_GIR.GPI "Gender parity index for gross intake ratio in grade 1"
## 2 2.6_PCR.GPI "Gender parity index for primary completion rate "
## 3 5.51.01.07.gender "Gender equality"
## 4 BI.EMP.PWRK.PB.FE.ZS "Public sector employment, as a share of paid employmen…
## 5 BI.EMP.PWRK.PB.MA.ZS "Public sector employment, as a share of paid employmen…
## 6 BI.EMP.TOTL.PB.FE.ZS "Public sector employment, as a share of total employme…
## 7 BI.EMP.TOTL.PB.MA.ZS "Public sector employment, as a share of total employme…
## 8 BI.WAG.PREM.PB.FE "Public sector wage premium, by gender: Female (compare…
## 9 BI.WAG.PREM.PB.FM "P-Value: Public sector wage premium, by gender (compar…
## 10 BI.WAG.PREM.PB.FM.ED "P-Value: Gender wage premium in the public sector, by …
## # … with 372 more rows
as_tibble(WDIsearch(string = "Females", field = "name", cache = NULL))## # A tibble: 69 × 2
## indicator name
## <chr> <chr>
## 1 BI.PWK.PRVS.CK.FE.ZS Females, as a share of private paid employees by occupa…
## 2 BI.PWK.PRVS.EO.FE.ZS Females, as a share of private paid employees by occupa…
## 3 BI.PWK.PRVS.FE.Q1.ZS Females, as a share of private paid employees by wage q…
## 4 BI.PWK.PRVS.FE.Q2.ZS Females, as a share of private paid employees by wage q…
## 5 BI.PWK.PRVS.FE.Q3.ZS Females, as a share of private paid employees by wage q…
## 6 BI.PWK.PRVS.FE.Q4.ZS Females, as a share of private paid employees by wage q…
## 7 BI.PWK.PRVS.FE.Q5.ZS Females, as a share of private paid employees by wage q…
## 8 BI.PWK.PRVS.FE.ZS Females, as a share of private paid employees
## 9 BI.PWK.PRVS.PN.FE.ZS Females, as a share of private paid employees by occupa…
## 10 BI.PWK.PRVS.SN.FE.ZS Females, as a share of private paid employees by occupa…
## # … with 59 more rows
WDIsearch(string = "BI.PWK.PRVS.FE.ZS", field = "indicator", cache = NULL)## indicator
## "BI.PWK.PRVS.FE.ZS"
## name
## "Females, as a share of private paid employees"
WDIsearch(string = "BI.PWK.PUBS.FE.ZS", field = "indicator", cache = NULL)## indicator
## "BI.PWK.PUBS.FE.ZS"
## name
## "Females, as a share of public paid employees"
# Rename indicators on the fly
dfwe <- as_tibble(WDI(country = c("CN", "IN", "US", "ID","PK", "BR", "NG", "BD", "RU", "MX", "JP"),
indicator = c('women_private_sector' = 'BI.PWK.PRVS.FE.ZS',
'women_public_sector' = 'BI.PWK.PUBS.FE.ZS')))
dfwe## # A tibble: 231 × 5
## iso2c country year women_private_sector women_public_sector
## <chr> <chr> <int> <dbl> <dbl>
## 1 BD Bangladesh 2000 NA NA
## 2 BD Bangladesh 2001 NA NA
## 3 BD Bangladesh 2002 NA NA
## 4 BD Bangladesh 2003 0.193 0.231
## 5 BD Bangladesh 2004 NA NA
## 6 BD Bangladesh 2005 NA NA
## 7 BD Bangladesh 2006 NA NA
## 8 BD Bangladesh 2007 NA NA
## 9 BD Bangladesh 2008 NA NA
## 10 BD Bangladesh 2009 NA NA
## # … with 221 more rows
summary(dfwe, country)## iso2c country year women_private_sector
## Length:231 Length:231 Min. :2000 Min. :0.08965
## Class :character Class :character 1st Qu.:2005 1st Qu.:0.30555
## Mode :character Mode :character Median :2010 Median :0.40629
## Mean :2010 Mean :0.35629
## 3rd Qu.:2015 3rd Qu.:0.46033
## Max. :2020 Max. :0.58404
## NA's :153
## women_public_sector
## Min. :0.1285
## 1st Qu.:0.4159
## Median :0.5508
## Mean :0.4679
## 3rd Qu.:0.5760
## Max. :0.6583
## NA's :152
dfwe %>% group_by(country) %>% select(2,4,5) %>%
summarize(private_n = sum(is.na(women_private_sector)),
private = mean(is.na(women_private_sector)),
public_n = sum(is.na(women_public_sector)),
public = mean(is.na(women_public_sector)))## # A tibble: 11 × 5
## country private_n private public_n public
## <chr> <int> <dbl> <int> <dbl>
## 1 Bangladesh 17 0.810 17 0.810
## 2 Brazil 6 0.286 6 0.286
## 3 China 19 0.905 19 0.905
## 4 India 17 0.810 17 0.810
## 5 Indonesia 20 0.952 20 0.952
## 6 Japan 21 1 21 1
## 7 Mexico 5 0.238 5 0.238
## 8 Nigeria 19 0.905 18 0.857
## 9 Pakistan 13 0.619 13 0.619
## 10 Russia 4 0.190 4 0.190
## 11 United States 12 0.571 12 0.571
B.2.5 World Bank Country and Lending Groups and an Option extra = TRUE
B.2.5.1 Review Basics: World Development Indicators: ?WDI
- Basic Usage
WDI(country = "all", indicator = "NY.GDP.PCAP.KD")
- Vector Notation
WDI(country = c("US", "CN", JP"), # ISO-2 codes
indicator = c("gdp_pcap" = "NY.GDP.PCAP.KD",
"life_exp" = "SP.DYN.LE00.IN"))
- Use Extra
WDI(country = "all",
indicator = c("gdp_pcap" = NY.GDP.PCAP.KD",
"life_exp" = "SP.DYN.LE00.IN"), extra = TRUE)
extra: TRUE returns extra variables such as region, iso3c code, and incomeLevel
B.2.5.2 World Bank Country and Lending Groups
B.2.5.2.1 About CLASS.xls
This table classifies all World Bank member countries (189), and all other economies with populations of more than 30,000. For operational and analytical purposes, economies are divided among income groups according to 2019 gross national income (GNI) per capita, calculated using the World Bank Atlas method. The groups are:
- low income, $1,035 or less;
- lower middle income, $1,036 - 4,045;
- upper middle income, $4,046 - 12,535;
- and high income, $12,536 or more.
The effective operational cutoff for IDA eligibility is $1,185 or less.
B.2.5.2.2 Geographic classifications
- IBRD: International Bank for Reconstruction and Development
- IDA: International Development Association
IDA countries are those that lack the financial ability to borrow from IBRD.
IDA credits are deeply concessional—interest-free loans and grants for programs aimed at boosting economic growth and improving living conditions.
IBRD loans are noncessional.
Blend countries are eligible for IDA credits because of their low per capita incomes but are also eligible for IBRD because they are financially creditworthy.
B.2.5.2.3 Note
The term country, used interchangeably with economy, does not imply political independence but refers to any territory for which authorities report separate social or economic statistics.
Income classifications set on 1 July 2020 remain in effect until 1 July 2021.
Argentina, which was temporarily unclassified in July 2016 pending release of revised national accounts statistics, was classified as upper middle income for FY17 as of 29 September 2016 based on alternative conversion factors. Also effective 29 September 2016, Syrian Arab Republic is reclassified from IBRD lending category to IDA-only.
On 29 March 2017, new country codes were introduced to align World Bank 3-letter codes with ISO 3-letter codes: Andorra (AND), Dem. Rep. Congo (COD), Isle of Man (IMN), Kosovo (XKX), Romania (ROU), Timor-Leste (TLS), and West Bank and Gaza (PSE).
B.2.5.3 Importing Excel Files
- CLASS.xlsx: - copy the following link
- readxl: https://readxl.tidyverse.org
- Help:
read_excel,read_xls,read_xlsx
url_class <- "https://databankfiles.worldbank.org/data/download/site-content/CLASS.xlsx"
download.file(url = url_class, destfile = "data/CLASS.xlsx")B.2.5.3.1 Countries
Let us look at the first sheet.
- The column names are in the 5th row.
- The country data starts from the 7th row.
- Zimbabue is at the last row.
library(readxl)
wb_countries_tmp <- read_excel("data/CLASS.xlsx", sheet = 1, skip = 0, n_max =219)
wb_countries <- wb_countries_tmp %>%
select(country = Economy, iso3c = Code, region = Region, income = `Income group`, lending = "Lending category", other = "Other (EMU or HIPC)")
wb_countries## # A tibble: 218 × 6
## country iso3c region income lending other
## <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Aruba ABW Latin America & Caribbean High inc… <NA> <NA>
## 2 Afghanistan AFG South Asia Low inco… IDA HIPC
## 3 Angola AGO Sub-Saharan Africa Lower mi… IBRD <NA>
## 4 Albania ALB Europe & Central Asia Upper mi… IBRD <NA>
## 5 Andorra AND Europe & Central Asia High inc… <NA> <NA>
## 6 United Arab Emirates ARE Middle East & North Africa High inc… <NA> <NA>
## 7 Argentina ARG Latin America & Caribbean Upper mi… IBRD <NA>
## 8 Armenia ARM Europe & Central Asia Upper mi… IBRD <NA>
## 9 American Samoa ASM East Asia & Pacific Upper mi… <NA> <NA>
## 10 Antigua and Barbuda ATG Latin America & Caribbean High inc… IBRD <NA>
## # … with 208 more rows
B.2.5.3.2 Regions
- readxl: https://readxl.tidyverse.org
- Help:
read_excel,read_xls,read_xlsx
- Regions start from the 227th row.
- Regions end at the 272th row.
wb_regions_tmp <- read_excel("data/CLASS.xlsx", sheet = 1, skip = 0, n_max =266) %>%
slice(-(1:220))
wb_regions <- wb_regions_tmp %>%
select(region = Economy, iso3c = Code) %>% drop_na()
wb_regions## # A tibble: 45 × 2
## region iso3c
## <chr> <chr>
## 1 Caribbean small states CSS
## 2 Central Europe and the Baltics CEB
## 3 Early-demographic dividend EAR
## 4 East Asia & Pacific EAS
## 5 East Asia & Pacific (excluding high income) EAP
## 6 East Asia & Pacific (IDA & IBRD) TEA
## 7 Euro area EMU
## 8 Europe & Central Asia ECS
## 9 Europe & Central Asia (excluding high income) ECA
## 10 Europe & Central Asia (IDA & IBRD) TEC
## # … with 35 more rows
Let us look at the second sheet.
wb_groups_tmp <- read_excel("data/CLASS.xlsx", sheet = "Groups") # sheet = 3
wb_groups <- wb_groups_tmp %>%
select(gcode = GroupCode, group = GroupName, iso3c = CountryCode, country = CountryName)B.2.5.4 Filtering Join
Description
Filtering joins filter rows from x based on the presence or absence of matches in y:
- semi_join() return all rows from x with a match in y.
- anti_join() return all rows from x without a match in y.
gdp_pcap <- WDI(country = "all", indicator = "NY.GDP.PCAP.KD")
gdp_pcap## iso2c country NY.GDP.PCAP.KD
## 1 ZH Africa Eastern and Southern 1477.2493
## 2 ZH Africa Eastern and Southern 1452.7303
## 3 ZH Africa Eastern and Southern 1534.8901
## 4 ZH Africa Eastern and Southern 1544.0780
## 5 ZH Africa Eastern and Southern 1546.7956
## 6 ZH Africa Eastern and Southern 1548.8131
## 7 ZH Africa Eastern and Southern 1556.3165
## 8 ZH Africa Eastern and Southern 1552.9870
## 9 ZH Africa Eastern and Southern 1534.5577
## 10 ZH Africa Eastern and Southern 1513.3697
## 11 ZH Africa Eastern and Southern 1540.9664
## 12 ZH Africa Eastern and Southern 1527.2297
## 13 ZH Africa Eastern and Southern 1492.3036
## 14 ZH Africa Eastern and Southern 1521.5296
## 15 ZH Africa Eastern and Southern 1497.8568
## 16 ZH Africa Eastern and Southern 1443.0440
## 17 ZH Africa Eastern and Southern 1390.6454
## 18 ZH Africa Eastern and Southern 1345.4233
## 19 ZH Africa Eastern and Southern 1308.9207
## 20 ZH Africa Eastern and Southern 1303.1937
## 21 ZH Africa Eastern and Southern 1287.2158
## 22 ZH Africa Eastern and Southern 1274.2504
## 23 ZH Africa Eastern and Southern 1265.1452
## 24 ZH Africa Eastern and Southern 1264.8553
## 25 ZH Africa Eastern and Southern 1274.4565
## 26 ZH Africa Eastern and Southern 1252.7195
## 27 ZH Africa Eastern and Southern 1219.8938
## 28 ZH Africa Eastern and Southern 1201.4085
## 29 ZH Africa Eastern and Southern 1209.9519
## 30 ZH Africa Eastern and Southern 1248.6235
## 31 ZH Africa Eastern and Southern 1309.9094
## 32 ZH Africa Eastern and Southern 1346.1004
## 33 ZH Africa Eastern and Southern 1385.8630
## 34 ZH Africa Eastern and Southern 1386.6545
## 35 ZH Africa Eastern and Southern 1373.1796
## 36 ZH Africa Eastern and Southern 1356.9575
## 37 ZH Africa Eastern and Southern 1366.3952
## 38 ZH Africa Eastern and Southern 1413.5308
## 39 ZH Africa Eastern and Southern 1413.1155
## 40 ZH Africa Eastern and Southern 1452.8100
## 41 ZH Africa Eastern and Southern 1488.3235
## 42 ZH Africa Eastern and Southern 1468.9210
## 43 ZH Africa Eastern and Southern 1434.8515
## 44 ZH Africa Eastern and Southern 1437.3183
## 45 ZH Africa Eastern and Southern 1464.8120
## 46 ZH Africa Eastern and Southern 1489.8486
## 47 ZH Africa Eastern and Southern 1491.3640
## 48 ZH Africa Eastern and Southern 1509.0984
## 49 ZH Africa Eastern and Southern 1466.8759
## 50 ZH Africa Eastern and Southern 1445.3727
## 51 ZH Africa Eastern and Southern 1455.6812
## 52 ZH Africa Eastern and Southern 1420.7694
## 53 ZH Africa Eastern and Southern 1395.0444
## 54 ZH Africa Eastern and Southern 1361.7142
## 55 ZH Africa Eastern and Southern 1344.7552
## 56 ZH Africa Eastern and Southern 1312.0850
## 57 ZH Africa Eastern and Southern 1296.4906
## 58 ZH Africa Eastern and Southern 1263.6101
## 59 ZH Africa Eastern and Southern 1240.0882
## 60 ZH Africa Eastern and Southern 1209.9305
## 61 ZH Africa Eastern and Southern 1149.3606
## 62 ZH Africa Eastern and Southern 1175.7353
## 63 ZI Africa Western and Central 1810.9278
## 64 ZI Africa Western and Central 1788.6472
## 65 ZI Africa Western and Central 1852.8617
## 66 ZI Africa Western and Central 1843.5547
## 67 ZI Africa Western and Central 1839.1134
## 68 ZI Africa Western and Central 1846.3329
## 69 ZI Africa Western and Central 1894.3221
## 70 ZI Africa Western and Central 1894.1827
## 71 ZI Africa Western and Central 1837.2858
## 72 ZI Africa Western and Central 1779.2668
## 73 ZI Africa Western and Central 1739.0052
## 74 ZI Africa Western and Central 1704.6199
## 75 ZI Africa Western and Central 1638.1663
## 76 ZI Africa Western and Central 1584.5557
## 77 ZI Africa Western and Central 1532.6545
## 78 ZI Africa Western and Central 1492.8292
## 79 ZI Africa Western and Central 1455.9409
## 80 ZI Africa Western and Central 1413.2780
## 81 ZI Africa Western and Central 1344.0622
## 82 ZI Africa Western and Central 1308.2395
## 83 ZI Africa Western and Central 1222.5315
## 84 ZI Africa Western and Central 1193.3549
## 85 ZI Africa Western and Central 1181.5388
## 86 ZI Africa Western and Central 1196.5717
## 87 ZI Africa Western and Central 1187.3887
## 88 ZI Africa Western and Central 1169.9849
## 89 ZI Africa Western and Central 1148.3840
## 90 ZI Africa Western and Central 1156.9333
## 91 ZI Africa Western and Central 1191.4801
## 92 ZI Africa Western and Central 1237.7215
## 93 ZI Africa Western and Central 1237.5945
## 94 ZI Africa Western and Central 1256.9107
## 95 ZI Africa Western and Central 1211.5714
## 96 ZI Africa Western and Central 1217.0848
## 97 ZI Africa Western and Central 1192.8205
## 98 ZI Africa Western and Central 1208.3095
## 99 ZI Africa Western and Central 1224.4947
## 100 ZI Africa Western and Central 1192.3263
## 101 ZI Africa Western and Central 1218.7008
## 102 ZI Africa Western and Central 1340.2363
## 103 ZI Africa Western and Central 1425.3480
## 104 ZI Africa Western and Central 1574.1754
## 105 ZI Africa Western and Central 1586.3064
## 106 ZI Africa Western and Central 1549.2626
## 107 ZI Africa Western and Central 1627.6446
## 108 ZI Africa Western and Central 1596.4613
## 109 ZI Africa Western and Central 1509.6255
## 110 ZI Africa Western and Central 1583.4160
## 111 ZI Africa Western and Central 1472.9998
## 112 ZI Africa Western and Central 1448.9047
## 113 ZI Africa Western and Central 1439.3126
## 114 ZI Africa Western and Central 1330.4162
## 115 ZI Africa Western and Central 1155.2404
## 116 ZI Africa Western and Central 1023.7001
## 117 ZI Africa Western and Central 1032.1586
## 118 ZI Africa Western and Central 1167.0360
## 119 ZI Africa Western and Central 1214.9844
## 120 ZI Africa Western and Central 1193.6896
## 121 ZI Africa Western and Central 1157.5209
## 122 ZI Africa Western and Central 1102.4994
## 123 ZI Africa Western and Central 1085.1126
## 124 ZI Africa Western and Central 1087.6399
## 125 1A Arab World 6050.1186
## 126 1A Arab World 5956.8778
## 127 1A Arab World 6394.1795
## 128 1A Arab World 6414.5397
## 129 1A Arab World 6386.7222
## 130 1A Arab World 6431.6762
## 131 1A Arab World 6359.9006
## 132 1A Arab World 6300.8314
## 133 1A Arab World 6289.2469
## 134 1A Arab World 6268.3527
## 135 1A Arab World 6101.6453
## 136 1A Arab World 6047.6162
## 137 1A Arab World 5910.7934
## 138 1A Arab World 6029.5848
## 139 1A Arab World 5852.0977
## 140 1A Arab World 5732.2290
## 141 1A Arab World 5532.0994
## 142 1A Arab World 5363.6378
## 143 1A Arab World 5037.7877
## 144 1A Arab World 4908.9391
## 145 1A Arab World 4981.0741
## 146 1A Arab World 5002.8173
## 147 1A Arab World 4796.7989
## 148 1A Arab World 4812.0308
## 149 1A Arab World 4676.4500
## 150 1A Arab World 4565.3656
## 151 1A Arab World 4461.2518
## 152 1A Arab World 4464.8854
## 153 1A Arab World 4434.6500
## 154 1A Arab World 4414.6321
## 155 1A Arab World 4274.2966
## 156 1A Arab World 4287.5620
## 157 1A Arab World 3966.7263
## 158 1A Arab World 3992.0174
## 159 1A Arab World 3880.4220
## 160 1A Arab World 3996.6258
## 161 1A Arab World 3938.2793
## 162 1A Arab World 4140.6767
## 163 1A Arab World 4212.7227
## 164 1A Arab World 4631.5414
## 165 1A Arab World 5210.5421
## 166 1A Arab World 5201.4690
## 167 1A Arab World 4926.0734
## 168 1A Arab World 4585.6763
## 169 1A Arab World 4765.6558
## 170 1A Arab World 4552.6175
## 171 1A Arab World 4057.2454
## 172 1A Arab World NA
## 173 1A Arab World NA
## 174 1A Arab World NA
## 175 1A Arab World NA
## 176 1A Arab World NA
## 177 1A Arab World NA
## 178 1A Arab World NA
## 179 1A Arab World NA
## 180 1A Arab World NA
## 181 1A Arab World NA
## 182 1A Arab World NA
## 183 1A Arab World NA
## 184 1A Arab World NA
## 185 1A Arab World NA
## 186 1A Arab World NA
## 187 S3 Caribbean small states 9491.6662
## 188 S3 Caribbean small states 9074.1279
## 189 S3 Caribbean small states 10065.1249
## 190 S3 Caribbean small states 10012.8163
## 191 S3 Caribbean small states 9930.1922
## 192 S3 Caribbean small states 9949.4161
## 193 S3 Caribbean small states 10181.8062
## 194 S3 Caribbean small states 10139.9499
## 195 S3 Caribbean small states 10142.2789
## 196 S3 Caribbean small states 10138.0092
## 197 S3 Caribbean small states 10071.4687
## 198 S3 Caribbean small states 10029.6732
## 199 S3 Caribbean small states 9963.7861
## 200 S3 Caribbean small states 10398.4859
## 201 S3 Caribbean small states 10333.1054
## 202 S3 Caribbean small states 10067.7067
## 203 S3 Caribbean small states 9488.3207
## 204 S3 Caribbean small states 9218.3120
## 205 S3 Caribbean small states 8929.3233
## 206 S3 Caribbean small states 8513.8911
## 207 S3 Caribbean small states 8275.7979
## 208 S3 Caribbean small states 8167.4401
## 209 S3 Caribbean small states 7928.4577
## 210 S3 Caribbean small states 7598.9366
## 211 S3 Caribbean small states 7562.5086
## 212 S3 Caribbean small states 7321.2423
## 213 S3 Caribbean small states 7130.0378
## 214 S3 Caribbean small states 6987.2916
## 215 S3 Caribbean small states 6859.5412
## 216 S3 Caribbean small states 6727.8155
## 217 S3 Caribbean small states 6642.6054
## 218 S3 Caribbean small states 6609.3275
## 219 S3 Caribbean small states 6596.8624
## 220 S3 Caribbean small states 6373.7438
## 221 S3 Caribbean small states 6275.3442
## 222 S3 Caribbean small states 6203.6904
## 223 S3 Caribbean small states 6172.5326
## 224 S3 Caribbean small states 6228.9254
## 225 S3 Caribbean small states 6238.3365
## 226 S3 Caribbean small states 6472.4708
## 227 S3 Caribbean small states 6485.7754
## 228 S3 Caribbean small states 6502.2769
## 229 S3 Caribbean small states 6417.9196
## 230 S3 Caribbean small states 6169.2728
## 231 S3 Caribbean small states 5894.8936
## 232 S3 Caribbean small states 5737.5434
## 233 S3 Caribbean small states 5730.0831
## 234 S3 Caribbean small states 5867.0473
## 235 S3 Caribbean small states 6131.4852
## 236 S3 Caribbean small states 6241.0865
## 237 S3 Caribbean small states 5890.8501
## 238 S3 Caribbean small states 5836.8617
## 239 S3 Caribbean small states 5655.3970
## 240 S3 Caribbean small states 5423.2888
## 241 S3 Caribbean small states 5187.1854
## 242 S3 Caribbean small states 5035.1665
## 243 S3 Caribbean small states NA
## 244 S3 Caribbean small states NA
## 245 S3 Caribbean small states NA
## 246 S3 Caribbean small states NA
## 247 S3 Caribbean small states NA
## 248 S3 Caribbean small states NA
## 249 B8 Central Europe and the Baltics 15187.5802
## 250 B8 Central Europe and the Baltics 14316.2584
## 251 B8 Central Europe and the Baltics 14844.3166
## 252 B8 Central Europe and the Baltics 14244.0241
## 253 B8 Central Europe and the Baltics 13605.0467
## 254 B8 Central Europe and the Baltics 12940.1793
## 255 B8 Central Europe and the Baltics 12522.6611
## 256 B8 Central Europe and the Baltics 12019.3545
## 257 B8 Central Europe and the Baltics 11646.6681
## 258 B8 Central Europe and the Baltics 11479.5755
## 259 B8 Central Europe and the Baltics 11366.5397
## 260 B8 Central Europe and the Baltics 11002.4434
## 261 B8 Central Europe and the Baltics 10779.6995
## 262 B8 Central Europe and the Baltics 11149.1079
## 263 B8 Central Europe and the Baltics 10689.3952
## 264 B8 Central Europe and the Baltics 10006.8693
## 265 B8 Central Europe and the Baltics 9364.5451
## 266 B8 Central Europe and the Baltics 8892.7063
## 267 B8 Central Europe and the Baltics 8379.3178
## 268 B8 Central Europe and the Baltics 8025.2415
## 269 B8 Central Europe and the Baltics 7695.4741
## 270 B8 Central Europe and the Baltics 7411.7233
## 271 B8 Central Europe and the Baltics 7089.6327
## 272 B8 Central Europe and the Baltics 6945.4498
## 273 B8 Central Europe and the Baltics 6752.6852
## 274 B8 Central Europe and the Baltics 6587.4083
## 275 B8 Central Europe and the Baltics 6287.4336
## 276 B8 Central Europe and the Baltics 5939.1689
## 277 B8 Central Europe and the Baltics 5703.8778
## 278 B8 Central Europe and the Baltics 5613.4095
## 279 B8 Central Europe and the Baltics 5706.5689
## 280 B8 Central Europe and the Baltics 6308.5478
## 281 B8 Central Europe and the Baltics NA
## 282 B8 Central Europe and the Baltics NA
## 283 B8 Central Europe and the Baltics NA
## 284 B8 Central Europe and the Baltics NA
## 285 B8 Central Europe and the Baltics NA
## 286 B8 Central Europe and the Baltics NA
## 287 B8 Central Europe and the Baltics NA
## 288 B8 Central Europe and the Baltics NA
## 289 B8 Central Europe and the Baltics NA
## 290 B8 Central Europe and the Baltics NA
## 291 B8 Central Europe and the Baltics NA
## 292 B8 Central Europe and the Baltics NA
## 293 B8 Central Europe and the Baltics NA
## 294 B8 Central Europe and the Baltics NA
## 295 B8 Central Europe and the Baltics NA
## 296 B8 Central Europe and the Baltics NA
## 297 B8 Central Europe and the Baltics NA
## 298 B8 Central Europe and the Baltics NA
## 299 B8 Central Europe and the Baltics NA
## 300 B8 Central Europe and the Baltics NA
## 301 B8 Central Europe and the Baltics NA
## 302 B8 Central Europe and the Baltics NA
## 303 B8 Central Europe and the Baltics NA
## 304 B8 Central Europe and the Baltics NA
## 305 B8 Central Europe and the Baltics NA
## 306 B8 Central Europe and the Baltics NA
## 307 B8 Central Europe and the Baltics NA
## 308 B8 Central Europe and the Baltics NA
## 309 B8 Central Europe and the Baltics NA
## 310 B8 Central Europe and the Baltics NA
## 311 V2 Early-demographic dividend 3557.4062
## 312 V2 Early-demographic dividend 3374.1530
## 313 V2 Early-demographic dividend 3573.6698
## 314 V2 Early-demographic dividend 3535.7600
## 315 V2 Early-demographic dividend 3450.9777
## 316 V2 Early-demographic dividend 3344.8749
## 317 V2 Early-demographic dividend 3244.2370
## 318 V2 Early-demographic dividend 3148.5040
## 319 V2 Early-demographic dividend 3064.8153
## 320 V2 Early-demographic dividend 2984.9513
## 321 V2 Early-demographic dividend 2905.1760
## 322 V2 Early-demographic dividend 2810.7522
## 323 V2 Early-demographic dividend 2678.3504
## 324 V2 Early-demographic dividend 2697.2668
## 325 V2 Early-demographic dividend 2646.9301
## 326 V2 Early-demographic dividend 2542.2330
## 327 V2 Early-demographic dividend 2437.4497
## 328 V2 Early-demographic dividend 2339.0860
## 329 V2 Early-demographic dividend 2238.1810
## 330 V2 Early-demographic dividend 2158.8911
## 331 V2 Early-demographic dividend 2156.9841
## 332 V2 Early-demographic dividend 2172.5720
## 333 V2 Early-demographic dividend 2118.7942
## 334 V2 Early-demographic dividend 2114.1347
## 335 V2 Early-demographic dividend 2105.6435
## 336 V2 Early-demographic dividend 2049.3308
## 337 V2 Early-demographic dividend 1973.6866
## 338 V2 Early-demographic dividend 1966.0446
## 339 V2 Early-demographic dividend 1940.0199
## 340 V2 Early-demographic dividend 1915.7841
## 341 V2 Early-demographic dividend 1881.0694
## 342 V2 Early-demographic dividend 1837.5154
## 343 V2 Early-demographic dividend 1784.1833
## 344 V2 Early-demographic dividend 1783.9717
## 345 V2 Early-demographic dividend 1763.5420
## 346 V2 Early-demographic dividend 1758.6606
## 347 V2 Early-demographic dividend 1750.3815
## 348 V2 Early-demographic dividend 1780.8448
## 349 V2 Early-demographic dividend 1787.1850
## 350 V2 Early-demographic dividend 1825.2071
## 351 V2 Early-demographic dividend 1876.7097
## 352 V2 Early-demographic dividend 1853.3282
## 353 V2 Early-demographic dividend 1835.0765
## 354 V2 Early-demographic dividend 1807.6229
## 355 V2 Early-demographic dividend 1828.5755
## 356 V2 Early-demographic dividend 1799.2986
## 357 V2 Early-demographic dividend 1719.6648
## 358 V2 Early-demographic dividend 1719.9641
## 359 V2 Early-demographic dividend 1651.4931
## 360 V2 Early-demographic dividend 1576.2415
## 361 V2 Early-demographic dividend 1510.8980
## 362 V2 Early-demographic dividend 1461.4032
## 363 V2 Early-demographic dividend 1378.7520
## 364 V2 Early-demographic dividend 1326.2487
## 365 V2 Early-demographic dividend 1276.0585
## 366 V2 Early-demographic dividend 1239.9694
## 367 V2 Early-demographic dividend 1221.0010
## 368 V2 Early-demographic dividend 1185.9062
## 369 V2 Early-demographic dividend 1124.1889
## 370 V2 Early-demographic dividend 1099.5948
## 371 V2 Early-demographic dividend 1088.5022
## 372 V2 Early-demographic dividend 1067.3196
## 373 Z4 East Asia & Pacific 11742.1848
## 374 Z4 East Asia & Pacific 11136.1388
## 375 Z4 East Asia & Pacific 11205.0905
## 376 Z4 East Asia & Pacific 10834.3641
## 377 Z4 East Asia & Pacific 10407.4968
## 378 Z4 East Asia & Pacific 9977.1688
## 379 Z4 East Asia & Pacific 9599.4141
## 380 Z4 East Asia & Pacific 9233.1781
## 381 Z4 East Asia & Pacific 8880.8137
## 382 Z4 East Asia & Pacific 8504.5015
## 383 Z4 East Asia & Pacific 8149.9863
## 384 Z4 East Asia & Pacific 7781.9495
## 385 Z4 East Asia & Pacific 7280.4367
## 386 Z4 East Asia & Pacific 7147.2820
## 387 Z4 East Asia & Pacific 6895.2684
## 388 Z4 East Asia & Pacific 6460.9415
## 389 Z4 East Asia & Pacific 6113.5130
## 390 Z4 East Asia & Pacific 5815.5643
## 391 Z4 East Asia & Pacific 5534.6638
## 392 Z4 East Asia & Pacific 5315.2696
## 393 Z4 East Asia & Pacific 5134.7148
## 394 Z4 East Asia & Pacific 5014.7923
## 395 Z4 East Asia & Pacific 4802.7071
## 396 Z4 East Asia & Pacific 4675.8439
## 397 Z4 East Asia & Pacific 4705.1454
## 398 Z4 East Asia & Pacific 4572.7208
## 399 Z4 East Asia & Pacific 4379.8086
## 400 Z4 East Asia & Pacific 4194.2748
## 401 Z4 East Asia & Pacific 4034.5038
## 402 Z4 East Asia & Pacific 3920.3478
## 403 Z4 East Asia & Pacific 3810.5792
## 404 Z4 East Asia & Pacific 3686.3515
## 405 Z4 East Asia & Pacific 3561.1547
## 406 Z4 East Asia & Pacific 3439.7545
## 407 Z4 East Asia & Pacific 3248.6004
## 408 Z4 East Asia & Pacific 3107.4087
## 409 Z4 East Asia & Pacific 3008.3925
## 410 Z4 East Asia & Pacific 2889.2258
## 411 Z4 East Asia & Pacific 2762.4244
## 412 Z4 East Asia & Pacific 2687.7984
## 413 Z4 East Asia & Pacific 2622.7986
## 414 Z4 East Asia & Pacific 2543.5323
## 415 Z4 East Asia & Pacific 2486.9485
## 416 Z4 East Asia & Pacific 2384.0238
## 417 Z4 East Asia & Pacific 2287.9274
## 418 Z4 East Asia & Pacific 2203.9993
## 419 Z4 East Asia & Pacific 2150.1046
## 420 Z4 East Asia & Pacific 2112.1946
## 421 Z4 East Asia & Pacific 2138.6472
## 422 Z4 East Asia & Pacific 2031.7090
## 423 Z4 East Asia & Pacific 1940.3266
## 424 Z4 East Asia & Pacific 1892.0122
## 425 Z4 East Asia & Pacific 1842.2580
## 426 Z4 East Asia & Pacific 1695.1401
## 427 Z4 East Asia & Pacific 1586.5298
## 428 Z4 East Asia & Pacific 1509.2334
## 429 Z4 East Asia & Pacific 1425.3032
## 430 Z4 East Asia & Pacific 1363.9317
## 431 Z4 East Asia & Pacific 1262.6157
## 432 Z4 East Asia & Pacific 1199.7228
## 433 Z4 East Asia & Pacific 1153.0285
## 434 Z4 East Asia & Pacific 1113.1851
## 435 4E East Asia & Pacific (excluding high income) 8744.9533
## 436 4E East Asia & Pacific (excluding high income) 8183.6461
## 437 4E East Asia & Pacific (excluding high income) 8118.6307
## 438 4E East Asia & Pacific (excluding high income) 7719.1446
## 439 4E East Asia & Pacific (excluding high income) 7294.4321
## 440 4E East Asia & Pacific (excluding high income) 6888.2504
## 441 4E East Asia & Pacific (excluding high income) 6511.2581
## 442 4E East Asia & Pacific (excluding high income) 6150.0344
## 443 4E East Asia & Pacific (excluding high income) 5795.3349
## 444 4E East Asia & Pacific (excluding high income) 5446.9461
## 445 4E East Asia & Pacific (excluding high income) 5106.7086
## 446 4E East Asia & Pacific (excluding high income) 4735.9544
## 447 4E East Asia & Pacific (excluding high income) 4339.2302
## 448 4E East Asia & Pacific (excluding high income) 4047.3586
## 449 4E East Asia & Pacific (excluding high income) 3753.4062
## 450 4E East Asia & Pacific (excluding high income) 3361.4158
## 451 4E East Asia & Pacific (excluding high income) 3049.5236
## 452 4E East Asia & Pacific (excluding high income) 2795.0580
## 453 4E East Asia & Pacific (excluding high income) 2582.1805
## 454 4E East Asia & Pacific (excluding high income) 2390.1567
## 455 4E East Asia & Pacific (excluding high income) 2231.4093
## 456 4E East Asia & Pacific (excluding high income) 2105.2096
## 457 4E East Asia & Pacific (excluding high income) 1975.2396
## 458 4E East Asia & Pacific (excluding high income) 1876.4088
## 459 4E East Asia & Pacific (excluding high income) 1844.3674
## 460 4E East Asia & Pacific (excluding high income) 1738.7325
## 461 4E East Asia & Pacific (excluding high income) 1613.7750
## 462 4E East Asia & Pacific (excluding high income) 1487.3003
## 463 4E East Asia & Pacific (excluding high income) 1358.2479
## 464 4E East Asia & Pacific (excluding high income) 1236.7281
## 465 4E East Asia & Pacific (excluding high income) 1128.0978
## 466 4E East Asia & Pacific (excluding high income) 1060.3670
## 467 4E East Asia & Pacific (excluding high income) 1024.5830
## 468 4E East Asia & Pacific (excluding high income) 985.4827
## 469 4E East Asia & Pacific (excluding high income) 913.7956
## 470 4E East Asia & Pacific (excluding high income) 852.0121
## 471 4E East Asia & Pacific (excluding high income) 808.6919
## 472 4E East Asia & Pacific (excluding high income) 761.5682
## 473 4E East Asia & Pacific (excluding high income) 703.6685
## 474 4E East Asia & Pacific (excluding high income) 664.1789
## 475 4E East Asia & Pacific (excluding high income) 634.6717
## 476 4E East Asia & Pacific (excluding high income) 610.3957
## 477 4E East Asia & Pacific (excluding high income) 576.2294
## 478 4E East Asia & Pacific (excluding high income) 546.5231
## 479 4E East Asia & Pacific (excluding high income) 508.1540
## 480 4E East Asia & Pacific (excluding high income) 480.0057
## 481 4E East Asia & Pacific (excluding high income) 475.0124
## 482 4E East Asia & Pacific (excluding high income) 453.2837
## 483 4E East Asia & Pacific (excluding high income) 446.1242
## 484 4E East Asia & Pacific (excluding high income) 421.8812
## 485 4E East Asia & Pacific (excluding high income) 412.2812
## 486 4E East Asia & Pacific (excluding high income) 396.7616
## 487 4E East Asia & Pacific (excluding high income) 359.4963
## 488 4E East Asia & Pacific (excluding high income) 331.5448
## 489 4E East Asia & Pacific (excluding high income) 334.7462
## 490 4E East Asia & Pacific (excluding high income) 348.5526
## 491 4E East Asia & Pacific (excluding high income) 331.5584
## 492 4E East Asia & Pacific (excluding high income) 307.1020
## 493 4E East Asia & Pacific (excluding high income) 283.7353
## 494 4E East Asia & Pacific (excluding high income) 273.5348
## 495 4E East Asia & Pacific (excluding high income) 279.0174
## 496 4E East Asia & Pacific (excluding high income) 322.3129
## 497 T4 East Asia & Pacific (IDA & IBRD countries) 8841.7352
## 498 T4 East Asia & Pacific (IDA & IBRD countries) 8274.1810
## 499 T4 East Asia & Pacific (IDA & IBRD countries) 8208.5063
## 500 T4 East Asia & Pacific (IDA & IBRD countries) 7804.6978
## 501 T4 East Asia & Pacific (IDA & IBRD countries) 7375.4407
## 502 T4 East Asia & Pacific (IDA & IBRD countries) 6964.9544
## 503 T4 East Asia & Pacific (IDA & IBRD countries) 6583.9535
## 504 T4 East Asia & Pacific (IDA & IBRD countries) 6218.8944
## 505 T4 East Asia & Pacific (IDA & IBRD countries) 5860.4211
## 506 T4 East Asia & Pacific (IDA & IBRD countries) 5508.3086
## 507 T4 East Asia & Pacific (IDA & IBRD countries) 5164.4192
## 508 T4 East Asia & Pacific (IDA & IBRD countries) 4789.6016
## 509 T4 East Asia & Pacific (IDA & IBRD countries) 4388.4762
## 510 T4 East Asia & Pacific (IDA & IBRD countries) 4093.3734
## 511 T4 East Asia & Pacific (IDA & IBRD countries) 3796.1481
## 512 T4 East Asia & Pacific (IDA & IBRD countries) 3399.7453
## 513 T4 East Asia & Pacific (IDA & IBRD countries) 3084.2983
## 514 T4 East Asia & Pacific (IDA & IBRD countries) 2826.9230
## 515 T4 East Asia & Pacific (IDA & IBRD countries) 2611.5868
## 516 T4 East Asia & Pacific (IDA & IBRD countries) 2417.3370
## 517 T4 East Asia & Pacific (IDA & IBRD countries) 2256.7812
## 518 T4 East Asia & Pacific (IDA & IBRD countries) 2129.1582
## 519 T4 East Asia & Pacific (IDA & IBRD countries) 1997.7399
## 520 T4 East Asia & Pacific (IDA & IBRD countries) 1897.8298
## 521 T4 East Asia & Pacific (IDA & IBRD countries) 1865.4782
## 522 T4 East Asia & Pacific (IDA & IBRD countries) 1758.6768
## 523 T4 East Asia & Pacific (IDA & IBRD countries) 1632.3014
## 524 T4 East Asia & Pacific (IDA & IBRD countries) 1504.3641
## 525 T4 East Asia & Pacific (IDA & IBRD countries) 1373.8028
## 526 T4 East Asia & Pacific (IDA & IBRD countries) 1250.8539
## 527 T4 East Asia & Pacific (IDA & IBRD countries) 1140.9556
## 528 T4 East Asia & Pacific (IDA & IBRD countries) 1072.4477
## 529 T4 East Asia & Pacific (IDA & IBRD countries) 1036.2711
## 530 T4 East Asia & Pacific (IDA & IBRD countries) 996.7536
## 531 T4 East Asia & Pacific (IDA & IBRD countries) 924.2850
## 532 T4 East Asia & Pacific (IDA & IBRD countries) 861.8277
## 533 T4 East Asia & Pacific (IDA & IBRD countries) 818.0299
## 534 T4 East Asia & Pacific (IDA & IBRD countries) 770.3685
## 535 T4 East Asia & Pacific (IDA & IBRD countries) 711.7987
## 536 T4 East Asia & Pacific (IDA & IBRD countries) 671.8597
## 537 T4 East Asia & Pacific (IDA & IBRD countries) 642.0231
## 538 T4 East Asia & Pacific (IDA & IBRD countries) 617.4722
## 539 T4 East Asia & Pacific (IDA & IBRD countries) 582.9219
## 540 T4 East Asia & Pacific (IDA & IBRD countries) 552.8913
## 541 T4 East Asia & Pacific (IDA & IBRD countries) 514.0937
## 542 T4 East Asia & Pacific (IDA & IBRD countries) 485.6260
## 543 T4 East Asia & Pacific (IDA & IBRD countries) 480.5773
## 544 T4 East Asia & Pacific (IDA & IBRD countries) 458.5901
## 545 T4 East Asia & Pacific (IDA & IBRD countries) 451.3411
## 546 T4 East Asia & Pacific (IDA & IBRD countries) 426.8064
## 547 T4 East Asia & Pacific (IDA & IBRD countries) 417.0856
## 548 T4 East Asia & Pacific (IDA & IBRD countries) 401.3843
## 549 T4 East Asia & Pacific (IDA & IBRD countries) 363.6808
## 550 T4 East Asia & Pacific (IDA & IBRD countries) 335.3963
## 551 T4 East Asia & Pacific (IDA & IBRD countries) 338.6237
## 552 T4 East Asia & Pacific (IDA & IBRD countries) 352.5840
## 553 T4 East Asia & Pacific (IDA & IBRD countries) 335.4051
## 554 T4 East Asia & Pacific (IDA & IBRD countries) 310.6786
## 555 T4 East Asia & Pacific (IDA & IBRD countries) 287.0641
## 556 T4 East Asia & Pacific (IDA & IBRD countries) 276.7772
## 557 T4 East Asia & Pacific (IDA & IBRD countries) 282.3088
## 558 T4 East Asia & Pacific (IDA & IBRD countries) 326.0240
## 559 XC Euro area 36352.0401
## 560 XC Euro area 34476.0795
## 561 XC Euro area 36879.1354
## 562 XC Euro area 36338.6111
## 563 XC Euro area 35763.6530
## 564 XC Euro area 34927.0355
## 565 XC Euro area 34388.2838
## 566 XC Euro area 33795.5023
## 567 XC Euro area 33442.9868
## 568 XC Euro area 33630.7778
## 569 XC Euro area 33991.3652
## 570 XC Euro area 33344.3449
## 571 XC Euro area 32710.2805
## 572 XC Euro area 34370.4870
## 573 XC Euro area 34395.1647
## 574 XC Euro area 33566.8315
## 575 XC Euro area 32668.7085
## 576 XC Euro area 32295.2429
## 577 XC Euro area 31745.3633
## 578 XC Euro area 31701.6974
## 579 XC Euro area 31560.2675
## 580 XC Euro area 31001.2445
## 581 XC Euro area 29945.9121
## 582 XC Euro area 29159.0812
## 583 XC Euro area 28359.7491
## 584 XC Euro area 27678.2727
## 585 XC Euro area 27288.8841
## 586 XC Euro area 26712.8461
## 587 XC Euro area 26147.3815
## 588 XC Euro area 26429.4159
## 589 XC Euro area 26181.1892
## 590 XC Euro area 25616.8936
## 591 XC Euro area 24839.6593
## 592 XC Euro area 23963.6565
## 593 XC Euro area 23051.2346
## 594 XC Euro area 22543.8471
## 595 XC Euro area 22047.1688
## 596 XC Euro area 21589.6265
## 597 XC Euro area 21123.4408
## 598 XC Euro area 20875.7867
## 599 XC Euro area 20784.8746
## 600 XC Euro area 20755.8929
## 601 XC Euro area 20404.8212
## 602 XC Euro area 19724.7809
## 603 XC Euro area 19204.9914
## 604 XC Euro area 18704.7956
## 605 XC Euro area 17889.3710
## 606 XC Euro area 18122.0766
## 607 XC Euro area 17658.0568
## 608 XC Euro area 16740.7382
## 609 XC Euro area 16067.8921
## 610 XC Euro area 15569.0903
## 611 XC Euro area NA
## 612 XC Euro area NA
## 613 XC Euro area NA
## 614 XC Euro area NA
## 615 XC Euro area NA
## 616 XC Euro area NA
## 617 XC Euro area NA
## 618 XC Euro area NA
## 619 XC Euro area NA
## 620 XC Euro area NA
## 621 Z7 Europe & Central Asia 24207.1530
## 622 Z7 Europe & Central Asia 22898.4757
## 623 Z7 Europe & Central Asia 24298.9131
## 624 Z7 Europe & Central Asia 23936.3777
## 625 Z7 Europe & Central Asia 23514.9524
## 626 Z7 Europe & Central Asia 22964.1917
## 627 Z7 Europe & Central Asia 22624.9154
## 628 Z7 Europe & Central Asia 22261.2351
## 629 Z7 Europe & Central Asia 21955.2861
## 630 Z7 Europe & Central Asia 21864.0755
## 631 Z7 Europe & Central Asia 21875.9119
## 632 Z7 Europe & Central Asia 21424.8153
## 633 Z7 Europe & Central Asia 20951.1607
## 634 Z7 Europe & Central Asia 22002.1758
## 635 Z7 Europe & Central Asia 21871.7648
## 636 Z7 Europe & Central Asia 21186.9703
## 637 Z7 Europe & Central Asia 20456.8968
## 638 Z7 Europe & Central Asia 19988.9128
## 639 Z7 Europe & Central Asia 19430.4928
## 640 Z7 Europe & Central Asia 19141.5496
## 641 Z7 Europe & Central Asia 18867.8591
## 642 Z7 Europe & Central Asia 18487.4008
## 643 Z7 Europe & Central Asia 17751.2098
## 644 Z7 Europe & Central Asia 17276.6525
## 645 Z7 Europe & Central Asia 16862.4846
## 646 Z7 Europe & Central Asia 16384.1012
## 647 Z7 Europe & Central Asia 16125.1492
## 648 Z7 Europe & Central Asia 15813.7046
## 649 Z7 Europe & Central Asia 15659.9363
## 650 Z7 Europe & Central Asia 15833.2621
## 651 Z7 Europe & Central Asia 15981.1818
## 652 Z7 Europe & Central Asia 15985.1687
## 653 Z7 Europe & Central Asia 15697.0886
## 654 Z7 Europe & Central Asia 15250.1467
## 655 Z7 Europe & Central Asia 14717.9148
## 656 Z7 Europe & Central Asia 14364.7521
## 657 Z7 Europe & Central Asia 14064.4395
## 658 Z7 Europe & Central Asia 13762.3765
## 659 Z7 Europe & Central Asia 13486.5935
## 660 Z7 Europe & Central Asia 13300.8859
## 661 Z7 Europe & Central Asia 13254.7371
## 662 Z7 Europe & Central Asia 13279.3776
## 663 Z7 Europe & Central Asia 13193.5509
## 664 Z7 Europe & Central Asia 12800.3731
## 665 Z7 Europe & Central Asia 12483.4332
## 666 Z7 Europe & Central Asia 12221.0644
## 667 Z7 Europe & Central Asia 11757.0669
## 668 Z7 Europe & Central Asia 11907.2615
## 669 Z7 Europe & Central Asia 11744.1736
## 670 Z7 Europe & Central Asia 11165.4307
## 671 Z7 Europe & Central Asia 10748.2441
## 672 Z7 Europe & Central Asia 10445.3979
## 673 Z7 Europe & Central Asia NA
## 674 Z7 Europe & Central Asia NA
## 675 Z7 Europe & Central Asia NA
## 676 Z7 Europe & Central Asia NA
## 677 Z7 Europe & Central Asia NA
## 678 Z7 Europe & Central Asia NA
## 679 Z7 Europe & Central Asia NA
## 680 Z7 Europe & Central Asia NA
## 681 Z7 Europe & Central Asia NA
## 682 Z7 Europe & Central Asia NA
## 683 7E Europe & Central Asia (excluding high income) 8546.0983
## 684 7E Europe & Central Asia (excluding high income) 8013.2774
## 685 7E Europe & Central Asia (excluding high income) 8145.3378
## 686 7E Europe & Central Asia (excluding high income) 8004.5650
## 687 7E Europe & Central Asia (excluding high income) 7802.5126
## 688 7E Europe & Central Asia (excluding high income) 7553.9091
## 689 7E Europe & Central Asia (excluding high income) 7485.8269
## 690 7E Europe & Central Asia (excluding high income) 7469.1157
## 691 7E Europe & Central Asia (excluding high income) 7367.9426
## 692 7E Europe & Central Asia (excluding high income) 7129.0538
## 693 7E Europe & Central Asia (excluding high income) 6898.6481
## 694 7E Europe & Central Asia (excluding high income) 6530.5793
## 695 7E Europe & Central Asia (excluding high income) 6217.3878
## 696 7E Europe & Central Asia (excluding high income) 6627.1493
## 697 7E Europe & Central Asia (excluding high income) 6384.0417
## 698 7E Europe & Central Asia (excluding high income) 5938.1925
## 699 7E Europe & Central Asia (excluding high income) 5499.0455
## 700 7E Europe & Central Asia (excluding high income) 5129.7501
## 701 7E Europe & Central Asia (excluding high income) 4743.3361
## 702 7E Europe & Central Asia (excluding high income) 4439.3647
## 703 7E Europe & Central Asia (excluding high income) 4209.2353
## 704 7E Europe & Central Asia (excluding high income) 4101.0467
## 705 7E Europe & Central Asia (excluding high income) 3783.6489
## 706 7E Europe & Central Asia (excluding high income) 3696.5246
## 707 7E Europe & Central Asia (excluding high income) 3758.1096
## 708 7E Europe & Central Asia (excluding high income) 3657.8180
## 709 7E Europe & Central Asia (excluding high income) 3666.1532
## 710 7E Europe & Central Asia (excluding high income) 3739.0698
## 711 7E Europe & Central Asia (excluding high income) 4218.1961
## 712 7E Europe & Central Asia (excluding high income) 4501.6369
## 713 7E Europe & Central Asia (excluding high income) 5065.4872
## 714 7E Europe & Central Asia (excluding high income) 5360.1540
## 715 7E Europe & Central Asia (excluding high income) 5473.9051
## 716 7E Europe & Central Asia (excluding high income) NA
## 717 7E Europe & Central Asia (excluding high income) NA
## 718 7E Europe & Central Asia (excluding high income) NA
## 719 7E Europe & Central Asia (excluding high income) NA
## 720 7E Europe & Central Asia (excluding high income) NA
## 721 7E Europe & Central Asia (excluding high income) NA
## 722 7E Europe & Central Asia (excluding high income) NA
## 723 7E Europe & Central Asia (excluding high income) NA
## 724 7E Europe & Central Asia (excluding high income) NA
## 725 7E Europe & Central Asia (excluding high income) NA
## 726 7E Europe & Central Asia (excluding high income) NA
## 727 7E Europe & Central Asia (excluding high income) NA
## 728 7E Europe & Central Asia (excluding high income) NA
## 729 7E Europe & Central Asia (excluding high income) NA
## 730 7E Europe & Central Asia (excluding high income) NA
## 731 7E Europe & Central Asia (excluding high income) NA
## 732 7E Europe & Central Asia (excluding high income) NA
## 733 7E Europe & Central Asia (excluding high income) NA
## 734 7E Europe & Central Asia (excluding high income) NA
## 735 7E Europe & Central Asia (excluding high income) NA
## 736 7E Europe & Central Asia (excluding high income) NA
## 737 7E Europe & Central Asia (excluding high income) NA
## 738 7E Europe & Central Asia (excluding high income) NA
## 739 7E Europe & Central Asia (excluding high income) NA
## 740 7E Europe & Central Asia (excluding high income) NA
## 741 7E Europe & Central Asia (excluding high income) NA
## 742 7E Europe & Central Asia (excluding high income) NA
## 743 7E Europe & Central Asia (excluding high income) NA
## 744 7E Europe & Central Asia (excluding high income) NA
## 745 T7 Europe & Central Asia (IDA & IBRD countries) 9296.6669
## 746 T7 Europe & Central Asia (IDA & IBRD countries) 8720.4588
## 747 T7 Europe & Central Asia (IDA & IBRD countries) 8893.0674
## 748 T7 Europe & Central Asia (IDA & IBRD countries) 8692.2887
## 749 T7 Europe & Central Asia (IDA & IBRD countries) 8434.3708
## 750 T7 Europe & Central Asia (IDA & IBRD countries) 8133.7903
## 751 T7 Europe & Central Asia (IDA & IBRD countries) 8019.8979
## 752 T7 Europe & Central Asia (IDA & IBRD countries) 7948.6315
## 753 T7 Europe & Central Asia (IDA & IBRD countries) 7815.6078
## 754 T7 Europe & Central Asia (IDA & IBRD countries) 7586.5893
## 755 T7 Europe & Central Asia (IDA & IBRD countries) 7371.7550
## 756 T7 Europe & Central Asia (IDA & IBRD countries) 7005.7115
## 757 T7 Europe & Central Asia (IDA & IBRD countries) 6717.6963
## 758 T7 Europe & Central Asia (IDA & IBRD countries) 7073.7376
## 759 T7 Europe & Central Asia (IDA & IBRD countries) 6790.5529
## 760 T7 Europe & Central Asia (IDA & IBRD countries) 6319.4130
## 761 T7 Europe & Central Asia (IDA & IBRD countries) 5866.6502
## 762 T7 Europe & Central Asia (IDA & IBRD countries) 5506.3289
## 763 T7 Europe & Central Asia (IDA & IBRD countries) 5108.7866
## 764 T7 Europe & Central Asia (IDA & IBRD countries) 4812.9987
## 765 T7 Europe & Central Asia (IDA & IBRD countries) 4579.8028
## 766 T7 Europe & Central Asia (IDA & IBRD countries) 4459.5444
## 767 T7 Europe & Central Asia (IDA & IBRD countries) 4148.9167
## 768 T7 Europe & Central Asia (IDA & IBRD countries) 4048.4968
## 769 T7 Europe & Central Asia (IDA & IBRD countries) 4077.2075
## 770 T7 Europe & Central Asia (IDA & IBRD countries) 3964.4895
## 771 T7 Europe & Central Asia (IDA & IBRD countries) 3926.2169
## 772 T7 Europe & Central Asia (IDA & IBRD countries) 3939.8082
## 773 T7 Europe & Central Asia (IDA & IBRD countries) 4319.9529
## 774 T7 Europe & Central Asia (IDA & IBRD countries) 4544.6735
## 775 T7 Europe & Central Asia (IDA & IBRD countries) 5037.3285
## 776 T7 Europe & Central Asia (IDA & IBRD countries) 5357.6680
## 777 T7 Europe & Central Asia (IDA & IBRD countries) 5468.5728
## 778 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 779 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 780 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 781 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 782 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 783 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 784 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 785 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 786 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 787 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 788 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 789 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 790 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 791 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 792 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 793 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 794 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 795 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 796 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 797 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 798 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 799 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 800 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 801 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 802 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 803 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 804 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 805 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 806 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 807 EU European Union 32755.3794
## 808 EU European Union 31046.0337
## 809 EU European Union 33032.9640
## 810 EU European Union 32460.5403
## 811 EU European Union 31855.0679
## 812 EU European Union 31031.1789
## 813 EU European Union 30485.0288
## 814 EU European Union 29861.4807
## 815 EU European Union 29471.8257
## 816 EU European Union 29552.9600
## 817 EU European Union 29807.1297
## 818 EU European Union 29211.4265
## 819 EU European Union 28608.6469
## 820 EU European Union 29979.9053
## 821 EU European Union 29884.6316
## 822 EU European Union 29068.1499
## 823 EU European Union 28178.2628
## 824 EU European Union 27744.5207
## 825 EU European Union 27145.2524
## 826 EU European Union 26996.8549
## 827 EU European Union 26761.8509
## 828 EU European Union 26226.7402
## 829 EU European Union 25272.5354
## 830 EU European Union 24589.2538
## 831 EU European Union 23902.5885
## 832 EU European Union 23319.8573
## 833 EU European Union 22926.6368
## 834 EU European Union 22374.3041
## 835 EU European Union 21850.5957
## 836 EU European Union 22048.2910
## 837 EU European Union 21859.1170
## 838 EU European Union 21524.0178
## 839 EU European Union 20889.6590
## 840 EU European Union 20170.4137
## 841 EU European Union 19427.2547
## 842 EU European Union 19005.6424
## 843 EU European Union 18578.0772
## 844 EU European Union 18194.6727
## 845 EU European Union 17792.7989
## 846 EU European Union 17584.7121
## 847 EU European Union 17500.2361
## 848 EU European Union 17482.6785
## 849 EU European Union 17204.1978
## 850 EU European Union 16635.7805
## 851 EU European Union 16217.4926
## 852 EU European Union 15841.2407
## 853 EU European Union 15184.1470
## 854 EU European Union 15376.7814
## 855 EU European Union 15006.9608
## 856 EU European Union 14247.8814
## 857 EU European Union 13691.6958
## 858 EU European Union 13282.2725
## 859 EU European Union NA
## 860 EU European Union NA
## 861 EU European Union NA
## 862 EU European Union NA
## 863 EU European Union NA
## 864 EU European Union NA
## 865 EU European Union NA
## 866 EU European Union NA
## 867 EU European Union NA
## 868 EU European Union NA
## 869 F1 Fragile and conflict affected situations 1815.2959
## 870 F1 Fragile and conflict affected situations 1812.5131
## 871 F1 Fragile and conflict affected situations 1935.0124
## 872 F1 Fragile and conflict affected situations 1933.5802
## 873 F1 Fragile and conflict affected situations 1924.5006
## 874 F1 Fragile and conflict affected situations 1917.8167
## 875 F1 Fragile and conflict affected situations 1913.6920
## 876 F1 Fragile and conflict affected situations 1939.0353
## 877 F1 Fragile and conflict affected situations 1942.0006
## 878 F1 Fragile and conflict affected situations 1922.1301
## 879 F1 Fragile and conflict affected situations 1877.1147
## 880 F1 Fragile and conflict affected situations 1921.6761
## 881 F1 Fragile and conflict affected situations 1839.4548
## 882 F1 Fragile and conflict affected situations 1830.0499
## 883 F1 Fragile and conflict affected situations 1783.0873
## 884 F1 Fragile and conflict affected situations 1721.3801
## 885 F1 Fragile and conflict affected situations 1664.2992
## 886 F1 Fragile and conflict affected situations 1609.7767
## 887 F1 Fragile and conflict affected situations 1483.9707
## 888 F1 Fragile and conflict affected situations 1501.0717
## 889 F1 Fragile and conflict affected situations 1468.5657
## 890 F1 Fragile and conflict affected situations 1439.9057
## 891 F1 Fragile and conflict affected situations 1395.7912
## 892 F1 Fragile and conflict affected situations 1379.6510
## 893 F1 Fragile and conflict affected situations 1332.0805
## 894 F1 Fragile and conflict affected situations 1297.0249
## 895 F1 Fragile and conflict affected situations 1280.3204
## 896 F1 Fragile and conflict affected situations 1310.3751
## 897 F1 Fragile and conflict affected situations 1396.9246
## 898 F1 Fragile and conflict affected situations 1456.8728
## 899 F1 Fragile and conflict affected situations 1486.5173
## 900 F1 Fragile and conflict affected situations 1649.0855
## 901 F1 Fragile and conflict affected situations 1615.2551
## 902 F1 Fragile and conflict affected situations 1643.8154
## 903 F1 Fragile and conflict affected situations 1628.2016
## 904 F1 Fragile and conflict affected situations 1595.3863
## 905 F1 Fragile and conflict affected situations 1597.7332
## 906 F1 Fragile and conflict affected situations 1582.3223
## 907 F1 Fragile and conflict affected situations 1628.0168
## 908 F1 Fragile and conflict affected situations 1746.1440
## 909 F1 Fragile and conflict affected situations 1805.1941
## 910 F1 Fragile and conflict affected situations 1922.7516
## 911 F1 Fragile and conflict affected situations 1853.4487
## 912 F1 Fragile and conflict affected situations 1794.9867
## 913 F1 Fragile and conflict affected situations 1859.5769
## 914 F1 Fragile and conflict affected situations 1825.4970
## 915 F1 Fragile and conflict affected situations 1739.8729
## 916 F1 Fragile and conflict affected situations 1786.7166
## 917 F1 Fragile and conflict affected situations 1666.7791
## 918 F1 Fragile and conflict affected situations 1637.6216
## 919 F1 Fragile and conflict affected situations 1630.5186
## 920 F1 Fragile and conflict affected situations 1522.7099
## 921 F1 Fragile and conflict affected situations 1371.8526
## 922 F1 Fragile and conflict affected situations 1238.6107
## 923 F1 Fragile and conflict affected situations NA
## 924 F1 Fragile and conflict affected situations NA
## 925 F1 Fragile and conflict affected situations NA
## 926 F1 Fragile and conflict affected situations NA
## 927 F1 Fragile and conflict affected situations NA
## 928 F1 Fragile and conflict affected situations NA
## 929 F1 Fragile and conflict affected situations NA
## 930 F1 Fragile and conflict affected situations NA
## 931 XE Heavily indebted poor countries (HIPC) 1018.7591
## 932 XE Heavily indebted poor countries (HIPC) 1000.0809
## 933 XE Heavily indebted poor countries (HIPC) 1025.1313
## 934 XE Heavily indebted poor countries (HIPC) 1011.4675
## 935 XE Heavily indebted poor countries (HIPC) 999.4030
## 936 XE Heavily indebted poor countries (HIPC) 980.3914
## 937 XE Heavily indebted poor countries (HIPC) 965.7696
## 938 XE Heavily indebted poor countries (HIPC) 949.0909
## 939 XE Heavily indebted poor countries (HIPC) 922.9762
## 940 XE Heavily indebted poor countries (HIPC) 899.4398
## 941 XE Heavily indebted poor countries (HIPC) 901.6465
## 942 XE Heavily indebted poor countries (HIPC) 892.2563
## 943 XE Heavily indebted poor countries (HIPC) 866.0973
## 944 XE Heavily indebted poor countries (HIPC) 862.6087
## 945 XE Heavily indebted poor countries (HIPC) 840.4681
## 946 XE Heavily indebted poor countries (HIPC) 819.1581
## 947 XE Heavily indebted poor countries (HIPC) 795.2636
## 948 XE Heavily indebted poor countries (HIPC) 774.6222
## 949 XE Heavily indebted poor countries (HIPC) 754.5644
## 950 XE Heavily indebted poor countries (HIPC) 746.5019
## 951 XE Heavily indebted poor countries (HIPC) 741.8275
## 952 XE Heavily indebted poor countries (HIPC) 733.0701
## 953 XE Heavily indebted poor countries (HIPC) 731.6240
## 954 XE Heavily indebted poor countries (HIPC) 729.8865
## 955 XE Heavily indebted poor countries (HIPC) 724.9143
## 956 XE Heavily indebted poor countries (HIPC) 701.4969
## 957 XE Heavily indebted poor countries (HIPC) 686.2501
## 958 XE Heavily indebted poor countries (HIPC) 672.6318
## 959 XE Heavily indebted poor countries (HIPC) 692.3382
## 960 XE Heavily indebted poor countries (HIPC) 708.0220
## 961 XE Heavily indebted poor countries (HIPC) 732.7599
## 962 XE Heavily indebted poor countries (HIPC) 748.5897
## 963 XE Heavily indebted poor countries (HIPC) 776.0838
## 964 XE Heavily indebted poor countries (HIPC) 779.9353
## 965 XE Heavily indebted poor countries (HIPC) 794.3944
## 966 XE Heavily indebted poor countries (HIPC) 786.3533
## 967 XE Heavily indebted poor countries (HIPC) 781.9316
## 968 XE Heavily indebted poor countries (HIPC) 794.5459
## 969 XE Heavily indebted poor countries (HIPC) 809.1624
## 970 XE Heavily indebted poor countries (HIPC) 825.0785
## 971 XE Heavily indebted poor countries (HIPC) 838.4897
## 972 XE Heavily indebted poor countries (HIPC) 831.6657
## 973 XE Heavily indebted poor countries (HIPC) 851.0115
## 974 XE Heavily indebted poor countries (HIPC) 871.3469
## 975 XE Heavily indebted poor countries (HIPC) 878.8060
## 976 XE Heavily indebted poor countries (HIPC) 867.2998
## 977 XE Heavily indebted poor countries (HIPC) 849.9151
## 978 XE Heavily indebted poor countries (HIPC) 849.9323
## 979 XE Heavily indebted poor countries (HIPC) 824.7286
## 980 XE Heavily indebted poor countries (HIPC) 820.6510
## 981 XE Heavily indebted poor countries (HIPC) 832.6809
## 982 XE Heavily indebted poor countries (HIPC) 819.3569
## 983 XE Heavily indebted poor countries (HIPC) 804.6511
## 984 XE Heavily indebted poor countries (HIPC) 789.5880
## 985 XE Heavily indebted poor countries (HIPC) 776.7326
## 986 XE Heavily indebted poor countries (HIPC) 782.8393
## 987 XE Heavily indebted poor countries (HIPC) 784.1130
## 988 XE Heavily indebted poor countries (HIPC) 773.3322
## 989 XE Heavily indebted poor countries (HIPC) 769.9954
## 990 XE Heavily indebted poor countries (HIPC) 767.7229
## 991 XE Heavily indebted poor countries (HIPC) 731.8533
## 992 XE Heavily indebted poor countries (HIPC) 751.8500
## 993 XD High income 42372.6209
## 994 XD High income 40335.8277
## 995 XD High income 42435.1603
## 996 XD High income 41862.3391
## 997 XD High income 41095.2810
## 998 XD High income 40344.5196
## 999 XD High income 39847.2618
## 1000 XD High income 39147.5681
## 1001 XD High income 38578.1652
## 1002 XD High income 38221.5705
## 1003 XD High income 37907.4391
## 1004 XD High income 37354.8322
## 1005 XD High income 36495.1783
## 1006 XD High income 37983.6073
## 1007 XD High income 38078.8477
## 1008 XD High income 37309.7128
## 1009 XD High income 36437.8386
## 1010 XD High income 35640.6575
## 1011 XD High income 34683.2794
## 1012 XD High income 34137.9524
## 1013 XD High income 33816.3374
## 1014 XD High income 33533.7123
## 1015 XD High income 32412.2598
## 1016 XD High income 31527.2899
## 1017 XD High income 30847.1168
## 1018 XD High income 29995.0706
## 1019 XD High income 29292.6461
## 1020 XD High income 28711.2086
## 1021 XD High income 27995.1067
## 1022 XD High income 27833.7991
## 1023 XD High income 27399.4848
## 1024 XD High income 27231.0953
## 1025 XD High income 26613.4424
## 1026 XD High income 25795.8032
## 1027 XD High income 24793.1082
## 1028 XD High income 24125.3447
## 1029 XD High income 23511.8227
## 1030 XD High income 22860.6969
## 1031 XD High income 21987.7641
## 1032 XD High income 21536.2279
## 1033 XD High income 21731.3452
## 1034 XD High income 21499.7940
## 1035 XD High income 21408.8990
## 1036 XD High income 20738.9041
## 1037 XD High income 20057.7060
## 1038 XD High income 19445.7337
## 1039 XD High income 18653.2758
## 1040 XD High income 18846.5350
## 1041 XD High income 18837.0696
## 1042 XD High income 17893.4260
## 1043 XD High income 17127.6416
## 1044 XD High income 16681.6754
## 1045 XD High income 16346.9710
## 1046 XD High income 15671.4861
## 1047 XD High income 14934.8799
## 1048 XD High income 14459.3943
## 1049 XD High income 13803.1404
## 1050 XD High income 13238.8854
## 1051 XD High income 12601.8264
## 1052 XD High income 12118.5405
## 1053 XD High income 11616.0336
## 1054 XD High income 11271.7224
## 1055 XF IBRD only 6693.3678
## 1056 XF IBRD only 6290.0348
## 1057 XF IBRD only 6430.4811
## 1058 XF IBRD only 6233.5842
## 1059 XF IBRD only 5993.3074
## 1060 XF IBRD only 5748.9428
## 1061 XF IBRD only 5547.6796
## 1062 XF IBRD only 5363.8177
## 1063 XF IBRD only 5170.3282
## 1064 XF IBRD only 4962.2867
## 1065 XF IBRD only 4754.3509
## 1066 XF IBRD only 4514.5164
## 1067 XF IBRD only 4227.4189
## 1068 XF IBRD only 4149.8644
## 1069 XF IBRD only 3956.5521
## 1070 XF IBRD only 3666.5665
## 1071 XF IBRD only 3421.0927
## 1072 XF IBRD only 3224.2169
## 1073 XF IBRD only 3026.0614
## 1074 XF IBRD only 2886.0547
## 1075 XF IBRD only 2789.4805
## 1076 XF IBRD only 2722.4421
## 1077 XF IBRD only 2601.2688
## 1078 XF IBRD only 2537.9818
## 1079 XF IBRD only 2505.7872
## 1080 XF IBRD only 2410.7774
## 1081 XF IBRD only 2315.3534
## 1082 XF IBRD only 2256.1577
## 1083 XF IBRD only 2207.1313
## 1084 XF IBRD only 2158.7299
## 1085 XF IBRD only 2155.2671
## 1086 XF IBRD only 2163.6612
## 1087 XF IBRD only 2158.5993
## 1088 XF IBRD only 2128.5321
## 1089 XF IBRD only 2083.6767
## 1090 XF IBRD only 2020.5657
## 1091 XF IBRD only 1974.8673
## 1092 XF IBRD only 1925.0238
## 1093 XF IBRD only 1866.4900
## 1094 XF IBRD only 1864.3875
## 1095 XF IBRD only 1847.4798
## 1096 XF IBRD only 1838.1999
## 1097 XF IBRD only 1779.4770
## 1098 XF IBRD only 1730.9390
## 1099 XF IBRD only 1693.8375
## 1100 XF IBRD only 1649.4569
## 1101 XF IBRD only 1585.2868
## 1102 XF IBRD only 1544.5399
## 1103 XF IBRD only 1494.3638
## 1104 XF IBRD only 1425.7665
## 1105 XF IBRD only 1368.2852
## 1106 XF IBRD only 1317.1347
## 1107 XF IBRD only 1251.2663
## 1108 XF IBRD only 1187.1781
## 1109 XF IBRD only 1146.4588
## 1110 XF IBRD only 1126.3736
## 1111 XF IBRD only 1092.5565
## 1112 XF IBRD only 1054.1649
## 1113 XF IBRD only 998.3664
## 1114 XF IBRD only 976.5391
## 1115 XF IBRD only 963.9137
## 1116 XF IBRD only 963.8455
## 1117 ZT IDA & IBRD total 5305.5315
## 1118 ZT IDA & IBRD total 5016.5681
## 1119 ZT IDA & IBRD total 5143.8774
## 1120 ZT IDA & IBRD total 5004.5554
## 1121 ZT IDA & IBRD total 4830.4323
## 1122 ZT IDA & IBRD total 4653.3694
## 1123 ZT IDA & IBRD total 4509.5899
## 1124 ZT IDA & IBRD total 4377.2594
## 1125 ZT IDA & IBRD total 4229.6641
## 1126 ZT IDA & IBRD total 4071.2615
## 1127 ZT IDA & IBRD total 3919.4407
## 1128 ZT IDA & IBRD total 3739.6927
## 1129 ZT IDA & IBRD total 3517.1146
## 1130 ZT IDA & IBRD total 3457.9702
## 1131 ZT IDA & IBRD total 3309.3130
## 1132 ZT IDA & IBRD total 3082.8537
## 1133 ZT IDA & IBRD total 2889.9050
## 1134 ZT IDA & IBRD total 2733.9846
## 1135 ZT IDA & IBRD total 2575.4146
## 1136 ZT IDA & IBRD total 2465.3162
## 1137 ZT IDA & IBRD total 2388.0428
## 1138 ZT IDA & IBRD total 2335.6111
## 1139 ZT IDA & IBRD total 2241.2331
## 1140 ZT IDA & IBRD total 2193.8955
## 1141 ZT IDA & IBRD total 2169.9982
## 1142 ZT IDA & IBRD total 2095.1531
## 1143 ZT IDA & IBRD total 2018.2058
## 1144 ZT IDA & IBRD total 1972.2931
## 1145 ZT IDA & IBRD total 1938.6960
## 1146 ZT IDA & IBRD total 1905.4522
## 1147 ZT IDA & IBRD total 1906.1401
## 1148 ZT IDA & IBRD total 1916.6057
## 1149 ZT IDA & IBRD total 1912.8860
## 1150 ZT IDA & IBRD total 1891.3953
## 1151 ZT IDA & IBRD total 1853.6879
## 1152 ZT IDA & IBRD total 1802.8170
## 1153 ZT IDA & IBRD total 1767.1932
## 1154 ZT IDA & IBRD total 1726.4795
## 1155 ZT IDA & IBRD total 1683.3556
## 1156 ZT IDA & IBRD total 1689.7012
## 1157 ZT IDA & IBRD total 1682.4181
## 1158 ZT IDA & IBRD total 1682.3332
## 1159 ZT IDA & IBRD total 1634.3240
## 1160 ZT IDA & IBRD total 1594.2882
## 1161 ZT IDA & IBRD total 1568.6317
## 1162 ZT IDA & IBRD total 1530.1040
## 1163 ZT IDA & IBRD total 1472.3747
## 1164 ZT IDA & IBRD total 1445.0128
## 1165 ZT IDA & IBRD total 1395.2999
## 1166 ZT IDA & IBRD total 1336.7057
## 1167 ZT IDA & IBRD total 1291.4231
## 1168 ZT IDA & IBRD total 1243.2109
## 1169 ZT IDA & IBRD total 1177.1859
## 1170 ZT IDA & IBRD total 1115.3924
## 1171 ZT IDA & IBRD total 1080.7695
## 1172 ZT IDA & IBRD total 1072.7784
## 1173 ZT IDA & IBRD total 1047.6507
## 1174 ZT IDA & IBRD total 1013.6025
## 1175 ZT IDA & IBRD total 964.5551
## 1176 ZT IDA & IBRD total 943.7174
## 1177 ZT IDA & IBRD total 928.6909
## 1178 ZT IDA & IBRD total 930.6281
## 1179 XH IDA blend 1981.0253
## 1180 XH IDA blend 1930.2333
## 1181 XH IDA blend 2001.4610
## 1182 XH IDA blend 1992.2044
## 1183 XH IDA blend 1964.5470
## 1184 XH IDA blend 1959.8828
## 1185 XH IDA blend 1972.1472
## 1186 XH IDA blend 1944.0713
## 1187 XH IDA blend 1879.9321
## 1188 XH IDA blend 1823.3660
## 1189 XH IDA blend 1784.8959
## 1190 XH IDA blend 1746.8467
## 1191 XH IDA blend 1687.0397
## 1192 XH IDA blend 1631.5942
## 1193 XH IDA blend 1605.2564
## 1194 XH IDA blend 1554.0141
## 1195 XH IDA blend 1503.7644
## 1196 XH IDA blend 1452.6858
## 1197 XH IDA blend 1382.8635
## 1198 XH IDA blend 1346.5683
## 1199 XH IDA blend 1287.3879
## 1200 XH IDA blend 1263.2345
## 1201 XH IDA blend 1248.4157
## 1202 XH IDA blend 1253.0659
## 1203 XH IDA blend 1251.3097
## 1204 XH IDA blend 1258.5356
## 1205 XH IDA blend 1234.3214
## 1206 XH IDA blend 1242.4225
## 1207 XH IDA blend 1264.4419
## 1208 XH IDA blend 1301.5644
## 1209 XH IDA blend 1299.0263
## 1210 XH IDA blend 1309.5038
## 1211 XH IDA blend 1265.1553
## 1212 XH IDA blend 1263.2893
## 1213 XH IDA blend 1222.6071
## 1214 XH IDA blend 1213.3448
## 1215 XH IDA blend 1215.1402
## 1216 XH IDA blend 1179.8431
## 1217 XH IDA blend 1196.5571
## 1218 XH IDA blend 1272.6710
## 1219 XH IDA blend 1327.5752
## 1220 XH IDA blend 1430.7105
## 1221 XH IDA blend 1398.4610
## 1222 XH IDA blend 1360.8410
## 1223 XH IDA blend 1412.1772
## 1224 XH IDA blend 1383.0148
## 1225 XH IDA blend 1339.2129
## 1226 XH IDA blend 1408.2500
## 1227 XH IDA blend 1332.8347
## 1228 XH IDA blend 1295.7154
## 1229 XH IDA blend 1277.8148
## 1230 XH IDA blend 1184.1462
## 1231 XH IDA blend 1029.6253
## 1232 XH IDA blend 911.3056
## 1233 XH IDA blend 914.9327
## 1234 XH IDA blend 1021.1429
## 1235 XH IDA blend 1050.8792
## 1236 XH IDA blend 1020.1588
## 1237 XH IDA blend 994.6295
## 1238 XH IDA blend 944.4149
## 1239 XH IDA blend 927.1140
## 1240 XH IDA blend 937.2515
## 1241 XI IDA only 1131.2787
## 1242 XI IDA only 1119.8064
## 1243 XI IDA only 1135.8185
## 1244 XI IDA only 1103.7064
## 1245 XI IDA only 1076.1033
## 1246 XI IDA only 1048.2020
## 1247 XI IDA only 1024.8861
## 1248 XI IDA only 1019.2490
## 1249 XI IDA only 989.8935
## 1250 XI IDA only 963.9853
## 1251 XI IDA only 974.7026
## 1252 XI IDA only 965.3978
## 1253 XI IDA only 929.4612
## 1254 XI IDA only 914.5519
## 1255 XI IDA only 884.4401
## 1256 XI IDA only 852.4801
## 1257 XI IDA only 821.5065
## 1258 XI IDA only 792.4248
## 1259 XI IDA only 766.8408
## 1260 XI IDA only 749.9570
## 1261 XI IDA only 739.8510
## 1262 XI IDA only 725.6269
## 1263 XI IDA only 715.3369
## 1264 XI IDA only 708.3667
## 1265 XI IDA only 697.6028
## 1266 XI IDA only 675.4868
## 1267 XI IDA only 658.7061
## 1268 XI IDA only 642.9643
## 1269 XI IDA only 654.2577
## 1270 XI IDA only 658.6215
## 1271 XI IDA only 668.4916
## 1272 XI IDA only 674.7290
## 1273 XI IDA only 686.6009
## 1274 XI IDA only 693.5609
## 1275 XI IDA only 693.3818
## 1276 XI IDA only 685.7534
## 1277 XI IDA only 682.7063
## 1278 XI IDA only 688.5906
## 1279 XI IDA only 700.6105
## 1280 XI IDA only 711.5471
## 1281 XI IDA only 723.1435
## 1282 XI IDA only 715.0741
## 1283 XI IDA only 725.7077
## 1284 XI IDA only 738.2890
## 1285 XI IDA only 740.3991
## 1286 XI IDA only 733.9922
## 1287 XI IDA only 711.5668
## 1288 XI IDA only 718.7282
## 1289 XI IDA only 688.3161
## 1290 XI IDA only 688.5564
## 1291 XI IDA only 713.9127
## 1292 XI IDA only 714.6167
## 1293 XI IDA only 701.2915
## 1294 XI IDA only 690.0530
## 1295 XI IDA only 675.7210
## 1296 XI IDA only 685.1556
## 1297 XI IDA only 689.2870
## 1298 XI IDA only 684.5921
## 1299 XI IDA only 670.6633
## 1300 XI IDA only 674.9987
## 1301 XI IDA only 643.7154
## 1302 XI IDA only NA
## 1303 XG IDA total 1416.7406
## 1304 XG IDA total 1392.0336
## 1305 XG IDA total 1426.7880
## 1306 XG IDA total 1402.3783
## 1307 XG IDA total 1374.7249
## 1308 XG IDA total 1354.5385
## 1309 XG IDA total 1342.9994
## 1310 XG IDA total 1329.5763
## 1311 XG IDA total 1288.2513
## 1312 XG IDA total 1251.7460
## 1313 XG IDA total 1245.6374
## 1314 XG IDA total 1226.3049
## 1315 XG IDA total 1182.0481
## 1316 XG IDA total 1153.3978
## 1317 XG IDA total 1124.5861
## 1318 XG IDA total 1086.1781
## 1319 XG IDA total 1048.8380
## 1320 XG IDA total 1012.5300
## 1321 XG IDA total 972.1992
## 1322 XG IDA total 948.9815
## 1323 XG IDA total 922.2742
## 1324 XG IDA total 904.8416
## 1325 XG IDA total 893.0771
## 1326 XG IDA total 890.0963
## 1327 XG IDA total 882.3854
## 1328 XG IDA total 870.4142
## 1329 XG IDA total 851.1798
## 1330 XG IDA total 843.8365
## 1331 XG IDA total 858.8502
## 1332 XG IDA total 874.6615
## 1333 XG IDA total 880.2012
## 1334 XG IDA total 887.8559
## 1335 XG IDA total 879.0106
## 1336 XG IDA total 882.3549
## 1337 XG IDA total 866.9492
## 1338 XG IDA total 858.4493
## 1339 XG IDA total 856.6755
## 1340 XG IDA total 847.2327
## 1341 XG IDA total 860.0547
## 1342 XG IDA total 893.2199
## 1343 XG IDA total 919.2033
## 1344 XG IDA total 951.0127
## 1345 XG IDA total 944.4015
## 1346 XG IDA total 937.0503
## 1347 XG IDA total 955.9017
## 1348 XG IDA total 940.4241
## 1349 XG IDA total 910.1850
## 1350 XG IDA total 938.4420
## 1351 XG IDA total 892.2916
## 1352 XG IDA total 878.5290
## 1353 XG IDA total 886.9640
## 1354 XG IDA total 853.6657
## 1355 XG IDA total 790.3488
## 1356 XG IDA total 741.3453
## 1357 XG IDA total 733.9959
## 1358 XG IDA total 777.8377
## 1359 XG IDA total 791.0463
## 1360 XG IDA total 777.2049
## 1361 XG IDA total 759.6817
## 1362 XG IDA total 744.2229
## 1363 XG IDA total 719.2671
## 1364 XG IDA total 728.5889
## 1365 V3 Late-demographic dividend 10386.4743
## 1366 V3 Late-demographic dividend 9711.4562
## 1367 V3 Late-demographic dividend 9737.8284
## 1368 V3 Late-demographic dividend 9343.4406
## 1369 V3 Late-demographic dividend 8912.6676
## 1370 V3 Late-demographic dividend 8518.8648
## 1371 V3 Late-demographic dividend 8208.0519
## 1372 V3 Late-demographic dividend 7892.2508
## 1373 V3 Late-demographic dividend 7553.5769
## 1374 V3 Late-demographic dividend 7200.0383
## 1375 V3 Late-demographic dividend 6849.7601
## 1376 V3 Late-demographic dividend 6432.7197
## 1377 V3 Late-demographic dividend 5988.8622
## 1378 V3 Late-demographic dividend 5810.5065
## 1379 V3 Late-demographic dividend 5467.8837
## 1380 V3 Late-demographic dividend 4991.0269
## 1381 V3 Late-demographic dividend 4595.7964
## 1382 V3 Late-demographic dividend 4292.6243
## 1383 V3 Late-demographic dividend 3993.3661
## 1384 V3 Late-demographic dividend 3762.7201
## 1385 V3 Late-demographic dividend 3573.8186
## 1386 V3 Late-demographic dividend 3421.8373
## 1387 V3 Late-demographic dividend 3223.1182
## 1388 V3 Late-demographic dividend 3106.4966
## 1389 V3 Late-demographic dividend 3049.9474
## 1390 V3 Late-demographic dividend 2918.2939
## 1391 V3 Late-demographic dividend 2804.6936
## 1392 V3 Late-demographic dividend 2683.5897
## 1393 V3 Late-demographic dividend 2595.8097
## 1394 V3 Late-demographic dividend 2514.3569
## 1395 V3 Late-demographic dividend 2523.7161
## 1396 V3 Late-demographic dividend 2529.9034
## 1397 V3 Late-demographic dividend 2552.7927
## 1398 V3 Late-demographic dividend 2480.0903
## 1399 V3 Late-demographic dividend 2389.5107
## 1400 V3 Late-demographic dividend 2279.7522
## 1401 V3 Late-demographic dividend 2187.5568
## 1402 V3 Late-demographic dividend 2062.9908
## 1403 V3 Late-demographic dividend 1938.4821
## 1404 V3 Late-demographic dividend 1934.7870
## 1405 V3 Late-demographic dividend 1920.3317
## 1406 V3 Late-demographic dividend 1935.7486
## 1407 V3 Late-demographic dividend 1812.4621
## 1408 V3 Late-demographic dividend 1709.6230
## 1409 V3 Late-demographic dividend 1626.7386
## 1410 V3 Late-demographic dividend 1546.0991
## 1411 V3 Late-demographic dividend 1474.4327
## 1412 V3 Late-demographic dividend 1429.2715
## 1413 V3 Late-demographic dividend 1381.1180
## 1414 V3 Late-demographic dividend 1291.9742
## 1415 V3 Late-demographic dividend 1227.7633
## 1416 V3 Late-demographic dividend 1162.1758
## 1417 V3 Late-demographic dividend 1069.2229
## 1418 V3 Late-demographic dividend 992.9653
## 1419 V3 Late-demographic dividend 966.5163
## 1420 V3 Late-demographic dividend 972.7632
## 1421 V3 Late-demographic dividend 922.2467
## 1422 V3 Late-demographic dividend 881.5853
## 1423 V3 Late-demographic dividend 838.0568
## 1424 V3 Late-demographic dividend 822.7643
## 1425 V3 Late-demographic dividend 809.2828
## 1426 V3 Late-demographic dividend 847.0214
## 1427 ZJ Latin America & Caribbean 8466.1491
## 1428 ZJ Latin America & Caribbean 8000.2270
## 1429 ZJ Latin America & Caribbean 8650.8735
## 1430 ZJ Latin America & Caribbean 8668.3402
## 1431 ZJ Latin America & Caribbean 8608.6465
## 1432 ZJ Latin America & Caribbean 8530.4635
## 1433 ZJ Latin America & Caribbean 8629.0096
## 1434 ZJ Latin America & Caribbean 8670.7751
## 1435 ZJ Latin America & Caribbean 8643.7687
## 1436 ZJ Latin America & Caribbean 8495.2504
## 1437 ZJ Latin America & Caribbean 8375.5623
## 1438 ZJ Latin America & Caribbean 8108.5640
## 1439 ZJ Latin America & Caribbean 7703.7427
## 1440 ZJ Latin America & Caribbean 7950.8700
## 1441 ZJ Latin America & Caribbean 7754.8663
## 1442 ZJ Latin America & Caribbean 7453.6995
## 1443 ZJ Latin America & Caribbean 7181.8247
## 1444 ZJ Latin America & Caribbean 6991.7733
## 1445 ZJ Latin America & Caribbean 6707.1526
## 1446 ZJ Latin America & Caribbean 6627.2142
## 1447 ZJ Latin America & Caribbean 6682.6481
## 1448 ZJ Latin America & Caribbean 6744.3908
## 1449 ZJ Latin America & Caribbean 6608.1024
## 1450 ZJ Latin America & Caribbean 6665.5707
## 1451 ZJ Latin America & Caribbean 6595.5403
## 1452 ZJ Latin America & Caribbean 6365.0306
## 1453 ZJ Latin America & Caribbean 6217.4524
## 1454 ZJ Latin America & Caribbean 6268.9138
## 1455 ZJ Latin America & Caribbean 6051.0873
## 1456 ZJ Latin America & Caribbean 5910.6028
## 1457 ZJ Latin America & Caribbean 5867.4556
## 1458 ZJ Latin America & Caribbean 5801.5717
## 1459 ZJ Latin America & Caribbean 5938.9548
## 1460 ZJ Latin America & Caribbean 5946.1634
## 1461 ZJ Latin America & Caribbean 6025.3109
## 1462 ZJ Latin America & Caribbean 5953.6016
## 1463 ZJ Latin America & Caribbean 5851.1941
## 1464 ZJ Latin America & Caribbean 5786.9666
## 1465 ZJ Latin America & Caribbean 5690.2476
## 1466 ZJ Latin America & Caribbean 5927.7382
## 1467 ZJ Latin America & Caribbean 6075.8790
## 1468 ZJ Latin America & Caribbean 6160.8680
## 1469 ZJ Latin America & Caribbean 5902.7597
## 1470 ZJ Latin America & Caribbean 5622.7894
## 1471 ZJ Latin America & Caribbean 5505.3912
## 1472 ZJ Latin America & Caribbean 5368.7266
## 1473 ZJ Latin America & Caribbean 5208.8963
## 1474 ZJ Latin America & Caribbean 5148.1528
## 1475 ZJ Latin America & Caribbean 4958.8084
## 1476 ZJ Latin America & Caribbean 4700.6987
## 1477 ZJ Latin America & Caribbean 4492.8869
## 1478 ZJ Latin America & Caribbean 4304.5957
## 1479 ZJ Latin America & Caribbean 4142.1110
## 1480 ZJ Latin America & Caribbean 3973.0528
## 1481 ZJ Latin America & Caribbean 3806.0310
## 1482 ZJ Latin America & Caribbean 3743.7925
## 1483 ZJ Latin America & Caribbean 3662.4850
## 1484 ZJ Latin America & Caribbean 3560.2300
## 1485 ZJ Latin America & Caribbean 3412.0338
## 1486 ZJ Latin America & Caribbean 3437.5354
## 1487 ZJ Latin America & Caribbean 3387.0883
## 1488 ZJ Latin America & Caribbean 3279.0104
## 1489 XJ Latin America & Caribbean (excluding high income) 7985.0715
## 1490 XJ Latin America & Caribbean (excluding high income) 7569.6557
## 1491 XJ Latin America & Caribbean (excluding high income) 8178.0614
## 1492 XJ Latin America & Caribbean (excluding high income) 8206.8951
## 1493 XJ Latin America & Caribbean (excluding high income) 8162.8703
## 1494 XJ Latin America & Caribbean (excluding high income) 8090.1985
## 1495 XJ Latin America & Caribbean (excluding high income) 8203.0039
## 1496 XJ Latin America & Caribbean (excluding high income) 8257.5835
## 1497 XJ Latin America & Caribbean (excluding high income) 8234.9478
## 1498 XJ Latin America & Caribbean (excluding high income) 8091.5637
## 1499 XJ Latin America & Caribbean (excluding high income) 7989.7912
## 1500 XJ Latin America & Caribbean (excluding high income) 7732.1624
## 1501 XJ Latin America & Caribbean (excluding high income) 7326.0163
## 1502 XJ Latin America & Caribbean (excluding high income) 7568.0281
## 1503 XJ Latin America & Caribbean (excluding high income) 7373.9229
## 1504 XJ Latin America & Caribbean (excluding high income) 7076.4804
## 1505 XJ Latin America & Caribbean (excluding high income) 6811.1198
## 1506 XJ Latin America & Caribbean (excluding high income) 6626.8828
## 1507 XJ Latin America & Caribbean (excluding high income) 6366.3217
## 1508 XJ Latin America & Caribbean (excluding high income) 6293.2560
## 1509 XJ Latin America & Caribbean (excluding high income) 6352.3715
## 1510 XJ Latin America & Caribbean (excluding high income) 6429.4451
## 1511 XJ Latin America & Caribbean (excluding high income) 6300.1905
## 1512 XJ Latin America & Caribbean (excluding high income) 6366.0911
## 1513 XJ Latin America & Caribbean (excluding high income) 6312.1614
## 1514 XJ Latin America & Caribbean (excluding high income) 6099.4697
## 1515 XJ Latin America & Caribbean (excluding high income) 5962.8341
## 1516 XJ Latin America & Caribbean (excluding high income) 6037.1055
## 1517 XJ Latin America & Caribbean (excluding high income) 5823.8804
## 1518 XJ Latin America & Caribbean (excluding high income) 5691.8825
## 1519 XJ Latin America & Caribbean (excluding high income) 5674.4334
## 1520 XJ Latin America & Caribbean (excluding high income) 5618.4476
## 1521 XJ Latin America & Caribbean (excluding high income) 5757.4816
## 1522 XJ Latin America & Caribbean (excluding high income) 5782.8356
## 1523 XJ Latin America & Caribbean (excluding high income) 5875.2790
## 1524 XJ Latin America & Caribbean (excluding high income) 5814.0709
## 1525 XJ Latin America & Caribbean (excluding high income) 5719.5981
## 1526 XJ Latin America & Caribbean (excluding high income) 5656.9893
## 1527 XJ Latin America & Caribbean (excluding high income) 5563.4123
## 1528 XJ Latin America & Caribbean (excluding high income) 5784.1815
## 1529 XJ Latin America & Caribbean (excluding high income) 5907.1233
## 1530 XJ Latin America & Caribbean (excluding high income) 6004.0261
## 1531 XJ Latin America & Caribbean (excluding high income) 5754.4517
## 1532 XJ Latin America & Caribbean (excluding high income) 5485.6870
## 1533 XJ Latin America & Caribbean (excluding high income) 5385.2676
## 1534 XJ Latin America & Caribbean (excluding high income) 5259.6813
## 1535 XJ Latin America & Caribbean (excluding high income) 5101.7962
## 1536 XJ Latin America & Caribbean (excluding high income) 5011.6056
## 1537 XJ Latin America & Caribbean (excluding high income) 4811.3263
## 1538 XJ Latin America & Caribbean (excluding high income) 4533.8164
## 1539 XJ Latin America & Caribbean (excluding high income) 4313.9015
## 1540 XJ Latin America & Caribbean (excluding high income) 4131.5224
## 1541 XJ Latin America & Caribbean (excluding high income) 3966.4846
## 1542 XJ Latin America & Caribbean (excluding high income) 3803.6942
## 1543 XJ Latin America & Caribbean (excluding high income) 3634.9347
## 1544 XJ Latin America & Caribbean (excluding high income) 3573.6824
## 1545 XJ Latin America & Caribbean (excluding high income) 3508.6113
## 1546 XJ Latin America & Caribbean (excluding high income) 3405.4018
## 1547 XJ Latin America & Caribbean (excluding high income) 3254.6848
## 1548 XJ Latin America & Caribbean (excluding high income) 3292.8183
## 1549 XJ Latin America & Caribbean (excluding high income) 3244.5970
## 1550 XJ Latin America & Caribbean (excluding high income) 3141.1801
## 1551 T2 Latin America & the Caribbean (IDA & IBRD countries) 8330.9321
## 1552 T2 Latin America & the Caribbean (IDA & IBRD countries) 7875.0756
## 1553 T2 Latin America & the Caribbean (IDA & IBRD countries) 8508.2175
## 1554 T2 Latin America & the Caribbean (IDA & IBRD countries) 8527.4806
## 1555 T2 Latin America & the Caribbean (IDA & IBRD countries) 8463.5814
## 1556 T2 Latin America & the Caribbean (IDA & IBRD countries) 8381.2287
## 1557 T2 Latin America & the Caribbean (IDA & IBRD countries) 8480.6258
## 1558 T2 Latin America & the Caribbean (IDA & IBRD countries) 8527.9219
## 1559 T2 Latin America & the Caribbean (IDA & IBRD countries) 8498.7001
## 1560 T2 Latin America & the Caribbean (IDA & IBRD countries) 8346.8728
## 1561 T2 Latin America & the Caribbean (IDA & IBRD countries) 8225.8372
## 1562 T2 Latin America & the Caribbean (IDA & IBRD countries) 7952.3942
## 1563 T2 Latin America & the Caribbean (IDA & IBRD countries) 7536.1511
## 1564 T2 Latin America & the Caribbean (IDA & IBRD countries) 7783.3847
## 1565 T2 Latin America & the Caribbean (IDA & IBRD countries) 7581.1369
## 1566 T2 Latin America & the Caribbean (IDA & IBRD countries) 7276.9306
## 1567 T2 Latin America & the Caribbean (IDA & IBRD countries) 7006.9795
## 1568 T2 Latin America & the Caribbean (IDA & IBRD countries) 6817.1726
## 1569 T2 Latin America & the Caribbean (IDA & IBRD countries) 6546.5559
## 1570 T2 Latin America & the Caribbean (IDA & IBRD countries) 6465.1197
## 1571 T2 Latin America & the Caribbean (IDA & IBRD countries) 6523.4149
## 1572 T2 Latin America & the Caribbean (IDA & IBRD countries) 6600.8246
## 1573 T2 Latin America & the Caribbean (IDA & IBRD countries) 6471.6030
## 1574 T2 Latin America & the Caribbean (IDA & IBRD countries) 6546.4467
## 1575 T2 Latin America & the Caribbean (IDA & IBRD countries) 6481.6957
## 1576 T2 Latin America & the Caribbean (IDA & IBRD countries) 6254.7329
## 1577 T2 Latin America & the Caribbean (IDA & IBRD countries) 6111.5010
## 1578 T2 Latin America & the Caribbean (IDA & IBRD countries) 6172.9161
## 1579 T2 Latin America & the Caribbean (IDA & IBRD countries) 5954.4641
## 1580 T2 Latin America & the Caribbean (IDA & IBRD countries) 5800.2696
## 1581 T2 Latin America & the Caribbean (IDA & IBRD countries) 5745.8916
## 1582 T2 Latin America & the Caribbean (IDA & IBRD countries) 5663.1975
## 1583 T2 Latin America & the Caribbean (IDA & IBRD countries) 5791.4062
## 1584 T2 Latin America & the Caribbean (IDA & IBRD countries) 5804.5008
## 1585 T2 Latin America & the Caribbean (IDA & IBRD countries) 5897.4304
## 1586 T2 Latin America & the Caribbean (IDA & IBRD countries) 5825.5939
## 1587 T2 Latin America & the Caribbean (IDA & IBRD countries) 5723.9101
## 1588 T2 Latin America & the Caribbean (IDA & IBRD countries) 5661.4482
## 1589 T2 Latin America & the Caribbean (IDA & IBRD countries) 5579.9113
## 1590 T2 Latin America & the Caribbean (IDA & IBRD countries) 5826.8581
## 1591 T2 Latin America & the Caribbean (IDA & IBRD countries) 5986.4548
## 1592 T2 Latin America & the Caribbean (IDA & IBRD countries) 6092.2679
## 1593 T2 Latin America & the Caribbean (IDA & IBRD countries) 5824.0280
## 1594 T2 Latin America & the Caribbean (IDA & IBRD countries) 5547.6410
## 1595 T2 Latin America & the Caribbean (IDA & IBRD countries) 5441.7205
## 1596 T2 Latin America & the Caribbean (IDA & IBRD countries) 5314.9719
## 1597 T2 Latin America & the Caribbean (IDA & IBRD countries) 5159.8432
## 1598 T2 Latin America & the Caribbean (IDA & IBRD countries) 5098.3497
## 1599 T2 Latin America & the Caribbean (IDA & IBRD countries) 4899.1671
## 1600 T2 Latin America & the Caribbean (IDA & IBRD countries) 4639.1202
## 1601 T2 Latin America & the Caribbean (IDA & IBRD countries) 4431.2997
## 1602 T2 Latin America & the Caribbean (IDA & IBRD countries) 4246.6118
## 1603 T2 Latin America & the Caribbean (IDA & IBRD countries) 4087.5068
## 1604 T2 Latin America & the Caribbean (IDA & IBRD countries) 3925.1805
## 1605 T2 Latin America & the Caribbean (IDA & IBRD countries) 3760.2609
## 1606 T2 Latin America & the Caribbean (IDA & IBRD countries) 3703.1150
## 1607 T2 Latin America & the Caribbean (IDA & IBRD countries) 3627.1012
## 1608 T2 Latin America & the Caribbean (IDA & IBRD countries) 3530.7537
## 1609 T2 Latin America & the Caribbean (IDA & IBRD countries) 3385.0134
## 1610 T2 Latin America & the Caribbean (IDA & IBRD countries) 3417.6019
## 1611 T2 Latin America & the Caribbean (IDA & IBRD countries) 3372.1389
## 1612 T2 Latin America & the Caribbean (IDA & IBRD countries) 3266.8026
## 1613 XL Least developed countries: UN classification 1073.8926
## 1614 XL Least developed countries: UN classification 1073.9870
## 1615 XL Least developed countries: UN classification 1091.9387
## 1616 XL Least developed countries: UN classification 1065.6793
## 1617 XL Least developed countries: UN classification 1045.1031
## 1618 XL Least developed countries: UN classification 1025.5356
## 1619 XL Least developed countries: UN classification 1009.4246
## 1620 XL Least developed countries: UN classification 1008.6266
## 1621 XL Least developed countries: UN classification 978.1639
## 1622 XL Least developed countries: UN classification 948.3494
## 1623 XL Least developed countries: UN classification 950.4975
## 1624 XL Least developed countries: UN classification 944.6993
## 1625 XL Least developed countries: UN classification 910.4903
## 1626 XL Least developed countries: UN classification 896.9042
## 1627 XL Least developed countries: UN classification 863.2649
## 1628 XL Least developed countries: UN classification 824.1578
## 1629 XL Least developed countries: UN classification 789.7029
## 1630 XL Least developed countries: UN classification 753.6752
## 1631 XL Least developed countries: UN classification 726.5513
## 1632 XL Least developed countries: UN classification 709.2148
## 1633 XL Least developed countries: UN classification 692.6250
## 1634 XL Least developed countries: UN classification 674.6813
## 1635 XL Least developed countries: UN classification 663.2670
## 1636 XL Least developed countries: UN classification 654.0293
## 1637 XL Least developed countries: UN classification 644.9368
## 1638 XL Least developed countries: UN classification 624.4411
## 1639 XL Least developed countries: UN classification 606.8495
## 1640 XL Least developed countries: UN classification 588.8969
## 1641 XL Least developed countries: UN classification 599.2523
## 1642 XL Least developed countries: UN classification 615.1301
## 1643 XL Least developed countries: UN classification 627.0575
## 1644 XL Least developed countries: UN classification 631.6880
## 1645 XL Least developed countries: UN classification 646.4718
## 1646 XL Least developed countries: UN classification 648.7037
## 1647 XL Least developed countries: UN classification 650.8639
## 1648 XL Least developed countries: UN classification 639.2532
## 1649 XL Least developed countries: UN classification 632.8818
## 1650 XL Least developed countries: UN classification 641.7206
## 1651 XL Least developed countries: UN classification 646.2984
## 1652 XL Least developed countries: UN classification 649.7502
## 1653 XL Least developed countries: UN classification 656.1576
## 1654 XL Least developed countries: UN classification 652.4251
## 1655 XL Least developed countries: UN classification NA
## 1656 XL Least developed countries: UN classification NA
## 1657 XL Least developed countries: UN classification NA
## 1658 XL Least developed countries: UN classification NA
## 1659 XL Least developed countries: UN classification NA
## 1660 XL Least developed countries: UN classification NA
## 1661 XL Least developed countries: UN classification NA
## 1662 XL Least developed countries: UN classification NA
## 1663 XL Least developed countries: UN classification NA
## 1664 XL Least developed countries: UN classification NA
## 1665 XL Least developed countries: UN classification NA
## 1666 XL Least developed countries: UN classification NA
## 1667 XL Least developed countries: UN classification NA
## 1668 XL Least developed countries: UN classification NA
## 1669 XL Least developed countries: UN classification NA
## 1670 XL Least developed countries: UN classification NA
## 1671 XL Least developed countries: UN classification NA
## 1672 XL Least developed countries: UN classification NA
## 1673 XL Least developed countries: UN classification NA
## 1674 XL Least developed countries: UN classification NA
## 1675 XO Low & middle income 5139.9234
## 1676 XO Low & middle income 4861.6103
## 1677 XO Low & middle income 4980.6632
## 1678 XO Low & middle income 4846.2192
## 1679 XO Low & middle income 4678.2395
## 1680 XO Low & middle income 4506.6430
## 1681 XO Low & middle income 4366.0511
## 1682 XO Low & middle income 4236.9027
## 1683 XO Low & middle income 4091.9664
## 1684 XO Low & middle income 3934.9808
## 1685 XO Low & middle income 3785.0033
## 1686 XO Low & middle income 3609.5738
## 1687 XO Low & middle income 3388.5627
## 1688 XO Low & middle income 3326.6472
## 1689 XO Low & middle income 3183.3530
## 1690 XO Low & middle income 2963.3195
## 1691 XO Low & middle income 2775.9637
## 1692 XO Low & middle income 2622.9469
## 1693 XO Low & middle income 2469.6915
## 1694 XO Low & middle income 2362.0966
## 1695 XO Low & middle income 2286.7500
## 1696 XO Low & middle income 2235.4396
## 1697 XO Low & middle income 2143.5940
## 1698 XO Low & middle income 2096.4282
## 1699 XO Low & middle income 2074.7782
## 1700 XO Low & middle income 2002.9410
## 1701 XO Low & middle income 1929.9053
## 1702 XO Low & middle income 1888.8425
## 1703 XO Low & middle income 1858.6326
## 1704 XO Low & middle income 1829.0584
## 1705 XO Low & middle income 1831.9631
## 1706 XO Low & middle income 1837.8234
## 1707 XO Low & middle income 1836.4309
## 1708 XO Low & middle income 1817.5582
## 1709 XO Low & middle income 1781.2573
## 1710 XO Low & middle income 1733.8827
## 1711 XO Low & middle income 1700.9316
## 1712 XO Low & middle income 1662.0483
## 1713 XO Low & middle income 1619.3866
## 1714 XO Low & middle income 1622.2703
## 1715 XO Low & middle income 1610.8481
## 1716 XO Low & middle income 1609.9243
## 1717 XO Low & middle income 1566.6816
## 1718 XO Low & middle income 1529.8294
## 1719 XO Low & middle income 1506.2619
## 1720 XO Low & middle income 1469.5905
## 1721 XO Low & middle income 1413.7991
## 1722 XO Low & middle income 1384.1184
## 1723 XO Low & middle income 1336.3812
## 1724 XO Low & middle income 1278.1293
## 1725 XO Low & middle income 1233.3715
## 1726 XO Low & middle income 1187.5393
## 1727 XO Low & middle income 1123.1313
## 1728 XO Low & middle income 1063.4886
## 1729 XO Low & middle income 1030.1251
## 1730 XO Low & middle income 1022.3803
## 1731 XO Low & middle income 999.7408
## 1732 XO Low & middle income 966.2423
## 1733 XO Low & middle income 918.3631
## 1734 XO Low & middle income 898.6556
## 1735 XO Low & middle income 884.1654
## 1736 XO Low & middle income 887.3202
## 1737 XM Low income 787.3897
## 1738 XM Low income 784.9217
## 1739 XM Low income 805.0665
## 1740 XM Low income 796.0232
## 1741 XM Low income 792.3638
## 1742 XM Low income 789.7676
## 1743 XM Low income 791.7100
## 1744 XM Low income 813.7089
## 1745 XM Low income 799.9783
## 1746 XM Low income 794.8452
## 1747 XM Low income 850.5921
## 1748 XM Low income 868.0695
## 1749 XM Low income 835.2948
## 1750 XM Low income 829.3381
## 1751 XM Low income 809.2852
## 1752 XM Low income 784.2492
## 1753 XM Low income 761.5741
## 1754 XM Low income 735.9324
## 1755 XM Low income 714.4465
## 1756 XM Low income 700.4542
## 1757 XM Low income 690.4933
## 1758 XM Low income 676.9143
## 1759 XM Low income 673.5746
## 1760 XM Low income 675.0093
## 1761 XM Low income 668.4969
## 1762 XM Low income 642.5651
## 1763 XM Low income 624.9740
## 1764 XM Low income 612.3745
## 1765 XM Low income 620.9192
## 1766 XM Low income 627.8548
## 1767 XM Low income 639.3498
## 1768 XM Low income 646.3433
## 1769 XM Low income 676.5478
## 1770 XM Low income 685.4960
## 1771 XM Low income 679.4879
## 1772 XM Low income 658.5865
## 1773 XM Low income 655.9215
## 1774 XM Low income 672.3615
## 1775 XM Low income 698.3127
## 1776 XM Low income 703.0468
## 1777 XM Low income 709.0316
## 1778 XM Low income NA
## 1779 XM Low income NA
## 1780 XM Low income NA
## 1781 XM Low income NA
## 1782 XM Low income NA
## 1783 XM Low income NA
## 1784 XM Low income NA
## 1785 XM Low income NA
## 1786 XM Low income NA
## 1787 XM Low income NA
## 1788 XM Low income NA
## 1789 XM Low income NA
## 1790 XM Low income NA
## 1791 XM Low income NA
## 1792 XM Low income NA
## 1793 XM Low income NA
## 1794 XM Low income NA
## 1795 XM Low income NA
## 1796 XM Low income NA
## 1797 XM Low income NA
## 1798 XM Low income NA
## 1799 XN Lower middle income 2393.2792
## 1800 XN Lower middle income 2296.9496
## 1801 XN Lower middle income 2408.2931
## 1802 XN Lower middle income 2352.7083
## 1803 XN Lower middle income 2276.1811
## 1804 XN Lower middle income 2197.6941
## 1805 XN Lower middle income 2109.3345
## 1806 XN Lower middle income 2038.3001
## 1807 XN Lower middle income 1959.9142
## 1808 XN Lower middle income 1895.2707
## 1809 XN Lower middle income 1841.7544
## 1810 XN Lower middle income 1785.1286
## 1811 XN Lower middle income 1700.8716
## 1812 XN Lower middle income 1650.8599
## 1813 XN Lower middle income 1608.9631
## 1814 XN Lower middle income 1529.6790
## 1815 XN Lower middle income 1460.5182
## 1816 XN Lower middle income 1399.4154
## 1817 XN Lower middle income 1335.2168
## 1818 XN Lower middle income 1279.0303
## 1819 XN Lower middle income 1241.0825
## 1820 XN Lower middle income 1212.9593
## 1821 XN Lower middle income 1182.3139
## 1822 XN Lower middle income 1154.8992
## 1823 XN Lower middle income 1160.6203
## 1824 XN Lower middle income 1141.5947
## 1825 XN Lower middle income 1098.0520
## 1826 XN Lower middle income 1069.8093
## 1827 XN Lower middle income 1064.8069
## 1828 XN Lower middle income 1071.7140
## 1829 XN Lower middle income 1063.0388
## 1830 XN Lower middle income 1058.1863
## 1831 XN Lower middle income 1031.6077
## 1832 XN Lower middle income 1009.9449
## 1833 XN Lower middle income 987.2369
## 1834 XN Lower middle income 979.9747
## 1835 XN Lower middle income 981.4433
## 1836 XN Lower middle income 971.0557
## 1837 XN Lower middle income 975.7915
## 1838 XN Lower middle income 962.5563
## 1839 XN Lower middle income 942.7322
## 1840 XN Lower middle income 949.9545
## 1841 XN Lower middle income 962.2821
## 1842 XN Lower middle income 986.7852
## 1843 XN Lower middle income 1001.4106
## 1844 XN Lower middle income 983.3628
## 1845 XN Lower middle income 929.4172
## 1846 XN Lower middle income 923.8551
## 1847 XN Lower middle income 897.5761
## 1848 XN Lower middle income 871.2053
## 1849 XN Lower middle income 845.9399
## 1850 XN Lower middle income 817.4446
## 1851 XN Lower middle income 769.2240
## 1852 XN Lower middle income 721.5149
## 1853 XN Lower middle income 694.8979
## 1854 XN Lower middle income 689.4460
## 1855 XN Lower middle income 687.8723
## 1856 XN Lower middle income 678.8416
## 1857 XN Lower middle income 651.9976
## 1858 XN Lower middle income 627.2294
## 1859 XN Lower middle income 622.4115
## 1860 XN Lower middle income 615.1277
## 1861 ZQ Middle East & North Africa 7303.8277
## 1862 ZQ Middle East & North Africa 7120.4760
## 1863 ZQ Middle East & North Africa 7540.4350
## 1864 ZQ Middle East & North Africa 7556.0519
## 1865 ZQ Middle East & North Africa 7534.9934
## 1866 ZQ Middle East & North Africa 7533.9749
## 1867 ZQ Middle East & North Africa 7375.4648
## 1868 ZQ Middle East & North Africa 7338.3475
## 1869 ZQ Middle East & North Africa 7276.3686
## 1870 ZQ Middle East & North Africa 7259.3970
## 1871 ZQ Middle East & North Africa 7102.3572
## 1872 ZQ Middle East & North Africa 6998.9993
## 1873 ZQ Middle East & North Africa 6805.2661
## 1874 ZQ Middle East & North Africa 6906.3523
## 1875 ZQ Middle East & North Africa 6745.5946
## 1876 ZQ Middle East & North Africa 6548.6658
## 1877 ZQ Middle East & North Africa 6317.1408
## 1878 ZQ Middle East & North Africa 6137.0779
## 1879 ZQ Middle East & North Africa 5800.2374
## 1880 ZQ Middle East & North Africa 5627.8733
## 1881 ZQ Middle East & North Africa 5650.4474
## 1882 ZQ Middle East & North Africa 5673.7126
## 1883 ZQ Middle East & North Africa 5416.2347
## 1884 ZQ Middle East & North Africa 5411.7472
## 1885 ZQ Middle East & North Africa 5273.8611
## 1886 ZQ Middle East & North Africa 5187.5985
## 1887 ZQ Middle East & North Africa 5039.9339
## 1888 ZQ Middle East & North Africa 5037.6292
## 1889 ZQ Middle East & North Africa 5029.3517
## 1890 ZQ Middle East & North Africa 5039.5487
## 1891 ZQ Middle East & North Africa 4895.2281
## 1892 ZQ Middle East & North Africa 4824.8624
## 1893 ZQ Middle East & North Africa 4418.2472
## 1894 ZQ Middle East & North Africa 4428.7397
## 1895 ZQ Middle East & North Africa 4402.4937
## 1896 ZQ Middle East & North Africa 4567.5397
## 1897 ZQ Middle East & North Africa 4659.7119
## 1898 ZQ Middle East & North Africa 4861.2934
## 1899 ZQ Middle East & North Africa 5047.9195
## 1900 ZQ Middle East & North Africa 5374.5166
## 1901 ZQ Middle East & North Africa 5762.4232
## 1902 ZQ Middle East & North Africa 5855.9934
## 1903 ZQ Middle East & North Africa 5917.4384
## 1904 ZQ Middle East & North Africa 5803.4041
## 1905 ZQ Middle East & North Africa 6235.7452
## 1906 ZQ Middle East & North Africa 6136.7331
## 1907 ZQ Middle East & North Africa 5417.7189
## 1908 ZQ Middle East & North Africa NA
## 1909 ZQ Middle East & North Africa NA
## 1910 ZQ Middle East & North Africa NA
## 1911 ZQ Middle East & North Africa NA
## 1912 ZQ Middle East & North Africa NA
## 1913 ZQ Middle East & North Africa NA
## 1914 ZQ Middle East & North Africa NA
## 1915 ZQ Middle East & North Africa NA
## 1916 ZQ Middle East & North Africa NA
## 1917 ZQ Middle East & North Africa NA
## 1918 ZQ Middle East & North Africa NA
## 1919 ZQ Middle East & North Africa NA
## 1920 ZQ Middle East & North Africa NA
## 1921 ZQ Middle East & North Africa NA
## 1922 ZQ Middle East & North Africa NA
## 1923 XQ Middle East & North Africa (excluding high income) 4002.8946
## 1924 XQ Middle East & North Africa (excluding high income) 3907.6539
## 1925 XQ Middle East & North Africa (excluding high income) 4113.8845
## 1926 XQ Middle East & North Africa (excluding high income) 4126.4252
## 1927 XQ Middle East & North Africa (excluding high income) 4127.5320
## 1928 XQ Middle East & North Africa (excluding high income) 4073.6259
## 1929 XQ Middle East & North Africa (excluding high income) 3931.5563
## 1930 XQ Middle East & North Africa (excluding high income) 3971.9186
## 1931 XQ Middle East & North Africa (excluding high income) 3974.4193
## 1932 XQ Middle East & North Africa (excluding high income) 4029.9413
## 1933 XQ Middle East & North Africa (excluding high income) 3959.5209
## 1934 XQ Middle East & North Africa (excluding high income) 4074.4862
## 1935 XQ Middle East & North Africa (excluding high income) 3940.0776
## 1936 XQ Middle East & North Africa (excluding high income) 3907.1799
## 1937 XQ Middle East & North Africa (excluding high income) 3833.6010
## 1938 XQ Middle East & North Africa (excluding high income) 3676.3402
## 1939 XQ Middle East & North Africa (excluding high income) 3557.8935
## 1940 XQ Middle East & North Africa (excluding high income) 3463.3526
## 1941 XQ Middle East & North Africa (excluding high income) 3269.4143
## 1942 XQ Middle East & North Africa (excluding high income) 3253.0830
## 1943 XQ Middle East & North Africa (excluding high income) 3211.2102
## 1944 XQ Middle East & North Africa (excluding high income) 3181.8803
## 1945 XQ Middle East & North Africa (excluding high income) 3054.6428
## 1946 XQ Middle East & North Africa (excluding high income) 2974.7141
## 1947 XQ Middle East & North Africa (excluding high income) 2838.8159
## 1948 XQ Middle East & North Africa (excluding high income) 2785.1325
## 1949 XQ Middle East & North Africa (excluding high income) 2667.8528
## 1950 XQ Middle East & North Africa (excluding high income) 2644.9274
## 1951 XQ Middle East & North Africa (excluding high income) 2649.6563
## 1952 XQ Middle East & North Africa (excluding high income) 2656.6194
## 1953 XQ Middle East & North Africa (excluding high income) 2585.2335
## 1954 XQ Middle East & North Africa (excluding high income) 2673.5526
## 1955 XQ Middle East & North Africa (excluding high income) 2474.4307
## 1956 XQ Middle East & North Africa (excluding high income) 2495.9170
## 1957 XQ Middle East & North Africa (excluding high income) 2564.7371
## 1958 XQ Middle East & North Africa (excluding high income) 2597.1822
## 1959 XQ Middle East & North Africa (excluding high income) 2733.8181
## 1960 XQ Middle East & North Africa (excluding high income) 2727.4451
## 1961 XQ Middle East & North Africa (excluding high income) 2819.0324
## 1962 XQ Middle East & North Africa (excluding high income) 2761.1740
## 1963 XQ Middle East & North Africa (excluding high income) 2521.6368
## 1964 XQ Middle East & North Africa (excluding high income) 2597.2412
## 1965 XQ Middle East & North Africa (excluding high income) 2843.4275
## 1966 XQ Middle East & North Africa (excluding high income) 3005.3724
## 1967 XQ Middle East & North Africa (excluding high income) 3214.4533
## 1968 XQ Middle East & North Africa (excluding high income) 3288.0528
## 1969 XQ Middle East & North Africa (excluding high income) 2921.2686
## 1970 XQ Middle East & North Africa (excluding high income) 2916.0667
## 1971 XQ Middle East & North Africa (excluding high income) 2813.3361
## 1972 XQ Middle East & North Africa (excluding high income) 2731.5274
## 1973 XQ Middle East & North Africa (excluding high income) 2467.6620
## 1974 XQ Middle East & North Africa (excluding high income) 2344.6195
## 1975 XQ Middle East & North Africa (excluding high income) 2212.0698
## 1976 XQ Middle East & North Africa (excluding high income) 2034.2738
## 1977 XQ Middle East & North Africa (excluding high income) 1891.4649
## 1978 XQ Middle East & North Africa (excluding high income) 1789.8997
## 1979 XQ Middle East & North Africa (excluding high income) 1724.9281
## 1980 XQ Middle East & North Africa (excluding high income) NA
## 1981 XQ Middle East & North Africa (excluding high income) NA
## 1982 XQ Middle East & North Africa (excluding high income) NA
## 1983 XQ Middle East & North Africa (excluding high income) NA
## 1984 XQ Middle East & North Africa (excluding high income) NA
## 1985 T3 Middle East & North Africa (IDA & IBRD countries) 4014.6703
## 1986 T3 Middle East & North Africa (IDA & IBRD countries) 3919.7814
## 1987 T3 Middle East & North Africa (IDA & IBRD countries) 4122.8400
## 1988 T3 Middle East & North Africa (IDA & IBRD countries) 4134.9820
## 1989 T3 Middle East & North Africa (IDA & IBRD countries) 4135.4873
## 1990 T3 Middle East & North Africa (IDA & IBRD countries) 4080.6735
## 1991 T3 Middle East & North Africa (IDA & IBRD countries) 3939.3841
## 1992 T3 Middle East & North Africa (IDA & IBRD countries) 3980.7041
## 1993 T3 Middle East & North Africa (IDA & IBRD countries) 3982.2247
## 1994 T3 Middle East & North Africa (IDA & IBRD countries) 4039.1874
## 1995 T3 Middle East & North Africa (IDA & IBRD countries) 3969.1636
## 1996 T3 Middle East & North Africa (IDA & IBRD countries) 4087.7003
## 1997 T3 Middle East & North Africa (IDA & IBRD countries) 3952.6428
## 1998 T3 Middle East & North Africa (IDA & IBRD countries) 3921.0042
## 1999 T3 Middle East & North Africa (IDA & IBRD countries) 3847.7636
## 2000 T3 Middle East & North Africa (IDA & IBRD countries) 3688.9695
## 2001 T3 Middle East & North Africa (IDA & IBRD countries) 3568.0986
## 2002 T3 Middle East & North Africa (IDA & IBRD countries) 3474.6920
## 2003 T3 Middle East & North Africa (IDA & IBRD countries) 3282.7325
## 2004 T3 Middle East & North Africa (IDA & IBRD countries) 3268.3189
## 2005 T3 Middle East & North Africa (IDA & IBRD countries) 3222.4974
## 2006 T3 Middle East & North Africa (IDA & IBRD countries) 3189.7752
## 2007 T3 Middle East & North Africa (IDA & IBRD countries) 3058.0203
## 2008 T3 Middle East & North Africa (IDA & IBRD countries) 2978.8002
## 2009 T3 Middle East & North Africa (IDA & IBRD countries) 2844.3406
## 2010 T3 Middle East & North Africa (IDA & IBRD countries) 2792.1990
## 2011 T3 Middle East & North Africa (IDA & IBRD countries) 2672.8160
## 2012 T3 Middle East & North Africa (IDA & IBRD countries) 2650.1156
## 2013 T3 Middle East & North Africa (IDA & IBRD countries) 2654.2853
## 2014 T3 Middle East & North Africa (IDA & IBRD countries) 2660.7295
## 2015 T3 Middle East & North Africa (IDA & IBRD countries) 2588.7531
## 2016 T3 Middle East & North Africa (IDA & IBRD countries) 2676.7326
## 2017 T3 Middle East & North Africa (IDA & IBRD countries) 2455.7135
## 2018 T3 Middle East & North Africa (IDA & IBRD countries) 2477.0373
## 2019 T3 Middle East & North Africa (IDA & IBRD countries) 2545.3368
## 2020 T3 Middle East & North Africa (IDA & IBRD countries) 2577.5365
## 2021 T3 Middle East & North Africa (IDA & IBRD countries) 2713.1389
## 2022 T3 Middle East & North Africa (IDA & IBRD countries) 2706.8141
## 2023 T3 Middle East & North Africa (IDA & IBRD countries) 2797.7086
## 2024 T3 Middle East & North Africa (IDA & IBRD countries) 2740.2878
## 2025 T3 Middle East & North Africa (IDA & IBRD countries) 2502.5625
## 2026 T3 Middle East & North Africa (IDA & IBRD countries) 2577.5950
## 2027 T3 Middle East & North Africa (IDA & IBRD countries) 2821.9192
## 2028 T3 Middle East & North Africa (IDA & IBRD countries) 2982.6391
## 2029 T3 Middle East & North Africa (IDA & IBRD countries) 3190.1384
## 2030 T3 Middle East & North Africa (IDA & IBRD countries) 3263.1812
## 2031 T3 Middle East & North Africa (IDA & IBRD countries) 2899.1714
## 2032 T3 Middle East & North Africa (IDA & IBRD countries) 2894.0089
## 2033 T3 Middle East & North Africa (IDA & IBRD countries) 2792.0554
## 2034 T3 Middle East & North Africa (IDA & IBRD countries) 2710.8654
## 2035 T3 Middle East & North Africa (IDA & IBRD countries) 2448.9961
## 2036 T3 Middle East & North Africa (IDA & IBRD countries) 2326.8842
## 2037 T3 Middle East & North Africa (IDA & IBRD countries) 2195.3372
## 2038 T3 Middle East & North Africa (IDA & IBRD countries) 2018.8861
## 2039 T3 Middle East & North Africa (IDA & IBRD countries) 1877.1574
## 2040 T3 Middle East & North Africa (IDA & IBRD countries) 1776.3605
## 2041 T3 Middle East & North Africa (IDA & IBRD countries) 1711.8804
## 2042 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2043 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2044 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2045 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2046 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2047 XP Middle income 5660.8768
## 2048 XP Middle income 5341.4794
## 2049 XP Middle income 5463.9939
## 2050 XP Middle income 5307.6598
## 2051 XP Middle income 5114.3425
## 2052 XP Middle income 4917.8443
## 2053 XP Middle income 4755.9356
## 2054 XP Middle income 4605.2638
## 2055 XP Middle income 4441.4448
## 2056 XP Middle income 4263.9754
## 2057 XP Middle income 4088.6596
## 2058 XP Middle income 3889.4378
## 2059 XP Middle income 3645.3078
## 2060 XP Middle income 3573.8054
## 2061 XP Middle income 3414.5555
## 2062 XP Middle income 3172.2393
## 2063 XP Middle income 2966.0938
## 2064 XP Middle income 2798.2222
## 2065 XP Middle income 2630.1994
## 2066 XP Middle income 2511.6938
## 2067 XP Middle income 2428.2685
## 2068 XP Middle income 2371.4826
## 2069 XP Middle income 2270.3068
## 2070 XP Middle income 2217.4399
## 2071 XP Middle income 2192.9368
## 2072 XP Middle income 2115.7323
## 2073 XP Middle income 2036.7250
## 2074 XP Middle income 1991.8974
## 2075 XP Middle income 1957.3420
## 2076 XP Middle income 1923.6882
## 2077 XP Middle income 1924.7866
## 2078 XP Middle income 1929.5221
## 2079 XP Middle income 1925.3513
## 2080 XP Middle income 1903.7211
## 2081 XP Middle income 1864.5654
## 2082 XP Middle income 1814.6707
## 2083 XP Middle income 1779.0398
## 2084 XP Middle income 1735.8028
## 2085 XP Middle income 1687.9363
## 2086 XP Middle income 1690.4182
## 2087 XP Middle income 1677.5237
## 2088 XP Middle income 1676.6810
## 2089 XP Middle income 1630.2855
## 2090 XP Middle income 1589.4594
## 2091 XP Middle income 1562.2944
## 2092 XP Middle income 1522.8483
## 2093 XP Middle income 1464.1179
## 2094 XP Middle income 1432.7155
## 2095 XP Middle income 1383.3314
## 2096 XP Middle income 1320.6895
## 2097 XP Middle income 1272.3539
## 2098 XP Middle income 1224.0518
## 2099 XP Middle income 1155.5844
## 2100 XP Middle income 1093.0746
## 2101 XP Middle income 1057.6965
## 2102 XP Middle income 1049.2571
## 2103 XP Middle income 1024.6356
## 2104 XP Middle income 989.7712
## 2105 XP Middle income 938.2176
## 2106 XP Middle income 916.7851
## 2107 XP Middle income 904.3638
## 2108 XP Middle income 905.7384
## 2109 XU North America 59496.4700
## 2110 XU North America 56441.3104
## 2111 XU North America 59094.8904
## 2112 XU North America 58113.1052
## 2113 XU North America 56820.7868
## 2114 XU North America 55918.0029
## 2115 XU North America 55452.4214
## 2116 XU North America 54478.1176
## 2117 XU North America 53643.0016
## 2118 XU North America 53038.5091
## 2119 XU North America 52278.6153
## 2120 XU North America 51806.0878
## 2121 XU North America 50860.3629
## 2122 XU North America 52706.2352
## 2123 XU North America 53113.1897
## 2124 XU North America 52378.2199
## 2125 XU North America 51404.4742
## 2126 XU North America 50082.3743
## 2127 XU North America 48671.4569
## 2128 XU North America 47724.0524
## 2129 XU North America 47316.6937
## 2130 XU North America 47323.7930
## 2131 XU North America 45943.4577
## 2132 XU North America 44358.0652
## 2133 XU North America 42988.8684
## 2134 XU North America 41648.2678
## 2135 XU North America 40599.2592
## 2136 XU North America 40005.0564
## 2137 XU North America 38925.7567
## 2138 XU North America 38377.6612
## 2139 XU North America 37582.4333
## 2140 XU North America 38126.2596
## 2141 XU North America 37860.2441
## 2142 XU North America 36897.2367
## 2143 XU North America 35754.5825
## 2144 XU North America 34883.8537
## 2145 XU North America 34031.1777
## 2146 XU North America 32961.7622
## 2147 XU North America 31008.2473
## 2148 XU North America 29924.1263
## 2149 XU North America 30773.2158
## 2150 XU North America 30315.0499
## 2151 XU North America 30694.5283
## 2152 XU North America 30079.4838
## 2153 XU North America 28804.2809
## 2154 XU North America 27813.6920
## 2155 XU North America 26652.5200
## 2156 XU North America 26983.6379
## 2157 XU North America 27391.6817
## 2158 XU North America 26183.7568
## 2159 XU North America 25145.8689
## 2160 XU North America 24693.1632
## 2161 XU North America 25058.1307
## 2162 XU North America 24552.1823
## 2163 XU North America 23676.7420
## 2164 XU North America 23366.3169
## 2165 XU North America 22208.7828
## 2166 XU North America 21146.5788
## 2167 XU North America 20275.6415
## 2168 XU North America 19710.5723
## 2169 XU North America 18870.9635
## 2170 XU North America 18760.6723
## 2171 XY Not classified NA
## 2172 XY Not classified NA
## 2173 XY Not classified NA
## 2174 XY Not classified NA
## 2175 XY Not classified NA
## 2176 XY Not classified NA
## 2177 XY Not classified NA
## 2178 XY Not classified NA
## 2179 XY Not classified NA
## 2180 XY Not classified NA
## 2181 XY Not classified NA
## 2182 XY Not classified NA
## 2183 XY Not classified NA
## 2184 XY Not classified NA
## 2185 XY Not classified NA
## 2186 XY Not classified NA
## 2187 XY Not classified NA
## 2188 XY Not classified NA
## 2189 XY Not classified NA
## 2190 XY Not classified NA
## 2191 XY Not classified NA
## 2192 XY Not classified NA
## 2193 XY Not classified NA
## 2194 XY Not classified NA
## 2195 XY Not classified NA
## 2196 XY Not classified NA
## 2197 XY Not classified NA
## 2198 XY Not classified NA
## 2199 XY Not classified NA
## 2200 XY Not classified NA
## 2201 XY Not classified NA
## 2202 XY Not classified NA
## 2203 XY Not classified NA
## 2204 XY Not classified NA
## 2205 XY Not classified NA
## 2206 XY Not classified NA
## 2207 XY Not classified NA
## 2208 XY Not classified NA
## 2209 XY Not classified NA
## 2210 XY Not classified NA
## 2211 XY Not classified NA
## 2212 XY Not classified NA
## 2213 XY Not classified NA
## 2214 XY Not classified NA
## 2215 XY Not classified NA
## 2216 XY Not classified NA
## 2217 XY Not classified NA
## 2218 XY Not classified NA
## 2219 XY Not classified NA
## 2220 XY Not classified NA
## 2221 XY Not classified NA
## 2222 XY Not classified NA
## 2223 XY Not classified NA
## 2224 XY Not classified NA
## 2225 XY Not classified NA
## 2226 XY Not classified NA
## 2227 XY Not classified NA
## 2228 XY Not classified NA
## 2229 XY Not classified NA
## 2230 XY Not classified NA
## 2231 XY Not classified NA
## 2232 XY Not classified NA
## 2233 OE OECD members 37667.8809
## 2234 OE OECD members 35869.3485
## 2235 OE OECD members 37758.5688
## 2236 OE OECD members 37301.2244
## 2237 OE OECD members 36662.9599
## 2238 OE OECD members 36000.9242
## 2239 OE OECD members 35590.7317
## 2240 OE OECD members 34969.3821
## 2241 OE OECD members 34487.1074
## 2242 OE OECD members 34186.7669
## 2243 OE OECD members 33928.7685
## 2244 OE OECD members 33468.5822
## 2245 OE OECD members 32716.7387
## 2246 OE OECD members 34092.5705
## 2247 OE OECD members 34225.5263
## 2248 OE OECD members 33567.2419
## 2249 OE OECD members 32809.5001
## 2250 OE OECD members 32124.8085
## 2251 OE OECD members 31328.0567
## 2252 OE OECD members 30912.6671
## 2253 OE OECD members 30661.0376
## 2254 OE OECD members 30471.1834
## 2255 OE OECD members 29498.9100
## 2256 OE OECD members 28742.7048
## 2257 OE OECD members 28123.5034
## 2258 OE OECD members 27354.8891
## 2259 OE OECD members 26726.3546
## 2260 OE OECD members 26242.3947
## 2261 OE OECD members 25643.1322
## 2262 OE OECD members 25528.3705
## 2263 OE OECD members 25218.5484
## 2264 OE OECD members 25127.2581
## 2265 OE OECD members 24602.9195
## 2266 OE OECD members 23886.5316
## 2267 OE OECD members 23027.0564
## 2268 OE OECD members 22426.2768
## 2269 OE OECD members 21928.8540
## 2270 OE OECD members 21314.9740
## 2271 OE OECD members 20519.0871
## 2272 OE OECD members 20098.4141
## 2273 OE OECD members 20224.5707
## 2274 OE OECD members 20003.3144
## 2275 OE OECD members 19961.7695
## 2276 OE OECD members 19390.2071
## 2277 OE OECD members 18733.9336
## 2278 OE OECD members 18218.5927
## 2279 OE OECD members 17543.6844
## 2280 OE OECD members 17691.7481
## 2281 OE OECD members 17720.7539
## 2282 OE OECD members 16892.4182
## 2283 OE OECD members 16213.0332
## 2284 OE OECD members 15836.7774
## 2285 OE OECD members 15588.8997
## 2286 OE OECD members 14979.3970
## 2287 OE OECD members 14287.2383
## 2288 OE OECD members 13851.6279
## 2289 OE OECD members 13235.3155
## 2290 OE OECD members 12714.8421
## 2291 OE OECD members 12107.6224
## 2292 OE OECD members 11651.9007
## 2293 OE OECD members 11185.5362
## 2294 OE OECD members 10870.7659
## 2295 S4 Other small states 12202.6497
## 2296 S4 Other small states 11981.0415
## 2297 S4 Other small states 12856.5071
## 2298 S4 Other small states 12827.6798
## 2299 S4 Other small states 12803.9885
## 2300 S4 Other small states 12895.6995
## 2301 S4 Other small states 12780.7264
## 2302 S4 Other small states 12653.2201
## 2303 S4 Other small states 12441.2147
## 2304 S4 Other small states 12245.6350
## 2305 S4 Other small states 12080.2044
## 2306 S4 Other small states 11491.7046
## 2307 S4 Other small states 10840.8229
## 2308 S4 Other small states 10920.3674
## 2309 S4 Other small states 10439.4273
## 2310 S4 Other small states 9741.6128
## 2311 S4 Other small states 9000.5353
## 2312 S4 Other small states 8695.0494
## 2313 S4 Other small states 8125.3038
## 2314 S4 Other small states 7912.2972
## 2315 S4 Other small states 7698.6157
## 2316 S4 Other small states 7519.5821
## 2317 S4 Other small states NA
## 2318 S4 Other small states NA
## 2319 S4 Other small states NA
## 2320 S4 Other small states NA
## 2321 S4 Other small states NA
## 2322 S4 Other small states NA
## 2323 S4 Other small states NA
## 2324 S4 Other small states NA
## 2325 S4 Other small states NA
## 2326 S4 Other small states NA
## 2327 S4 Other small states NA
## 2328 S4 Other small states NA
## 2329 S4 Other small states NA
## 2330 S4 Other small states NA
## 2331 S4 Other small states NA
## 2332 S4 Other small states NA
## 2333 S4 Other small states NA
## 2334 S4 Other small states NA
## 2335 S4 Other small states NA
## 2336 S4 Other small states NA
## 2337 S4 Other small states NA
## 2338 S4 Other small states NA
## 2339 S4 Other small states NA
## 2340 S4 Other small states NA
## 2341 S4 Other small states NA
## 2342 S4 Other small states NA
## 2343 S4 Other small states NA
## 2344 S4 Other small states NA
## 2345 S4 Other small states NA
## 2346 S4 Other small states NA
## 2347 S4 Other small states NA
## 2348 S4 Other small states NA
## 2349 S4 Other small states NA
## 2350 S4 Other small states NA
## 2351 S4 Other small states NA
## 2352 S4 Other small states NA
## 2353 S4 Other small states NA
## 2354 S4 Other small states NA
## 2355 S4 Other small states NA
## 2356 S4 Other small states NA
## 2357 S2 Pacific island small states 3445.7606
## 2358 S2 Pacific island small states 3621.3178
## 2359 S2 Pacific island small states 4060.3582
## 2360 S2 Pacific island small states 4088.4657
## 2361 S2 Pacific island small states 4030.1184
## 2362 S2 Pacific island small states 3918.2437
## 2363 S2 Pacific island small states 3832.5512
## 2364 S2 Pacific island small states 3744.9427
## 2365 S2 Pacific island small states 3658.1330
## 2366 S2 Pacific island small states 3583.5737
## 2367 S2 Pacific island small states 3598.4808
## 2368 S2 Pacific island small states 3507.9697
## 2369 S2 Pacific island small states 3438.5889
## 2370 S2 Pacific island small states 3502.6702
## 2371 S2 Pacific island small states 3482.5586
## 2372 S2 Pacific island small states 3513.9788
## 2373 S2 Pacific island small states 3474.3474
## 2374 S2 Pacific island small states 3433.8241
## 2375 S2 Pacific island small states 3339.1036
## 2376 S2 Pacific island small states 3305.9641
## 2377 S2 Pacific island small states 3272.9918
## 2378 S2 Pacific island small states 3275.0716
## 2379 S2 Pacific island small states 3371.4217
## 2380 S2 Pacific island small states 3251.5531
## 2381 S2 Pacific island small states 3239.8995
## 2382 S2 Pacific island small states 3323.6153
## 2383 S2 Pacific island small states 3270.3774
## 2384 S2 Pacific island small states 3181.3678
## 2385 S2 Pacific island small states 3085.8004
## 2386 S2 Pacific island small states 3050.7135
## 2387 S2 Pacific island small states 2938.3610
## 2388 S2 Pacific island small states 2982.5166
## 2389 S2 Pacific island small states 2908.4612
## 2390 S2 Pacific island small states 2804.0807
## 2391 S2 Pacific island small states 2813.8854
## 2392 S2 Pacific island small states 2926.2896
## 2393 S2 Pacific island small states 2815.6083
## 2394 S2 Pacific island small states 2944.7858
## 2395 S2 Pacific island small states 2837.5361
## 2396 S2 Pacific island small states 2935.6083
## 2397 S2 Pacific island small states 3112.3152
## 2398 S2 Pacific island small states 3048.8620
## 2399 S2 Pacific island small states NA
## 2400 S2 Pacific island small states NA
## 2401 S2 Pacific island small states NA
## 2402 S2 Pacific island small states NA
## 2403 S2 Pacific island small states NA
## 2404 S2 Pacific island small states NA
## 2405 S2 Pacific island small states NA
## 2406 S2 Pacific island small states NA
## 2407 S2 Pacific island small states NA
## 2408 S2 Pacific island small states NA
## 2409 S2 Pacific island small states NA
## 2410 S2 Pacific island small states NA
## 2411 S2 Pacific island small states NA
## 2412 S2 Pacific island small states NA
## 2413 S2 Pacific island small states NA
## 2414 S2 Pacific island small states NA
## 2415 S2 Pacific island small states NA
## 2416 S2 Pacific island small states NA
## 2417 S2 Pacific island small states NA
## 2418 S2 Pacific island small states NA
## 2419 V4 Post-demographic dividend 43303.8428
## 2420 V4 Post-demographic dividend 41227.0558
## 2421 V4 Post-demographic dividend 43408.2216
## 2422 V4 Post-demographic dividend 42800.3069
## 2423 V4 Post-demographic dividend 42004.2202
## 2424 V4 Post-demographic dividend 41196.0959
## 2425 V4 Post-demographic dividend 40669.0421
## 2426 V4 Post-demographic dividend 39989.9804
## 2427 V4 Post-demographic dividend 39422.1771
## 2428 V4 Post-demographic dividend 39046.8025
## 2429 V4 Post-demographic dividend 38725.9924
## 2430 V4 Post-demographic dividend 38189.9254
## 2431 V4 Post-demographic dividend 37284.2989
## 2432 V4 Post-demographic dividend 38784.0486
## 2433 V4 Post-demographic dividend 38880.0134
## 2434 V4 Post-demographic dividend 38079.1069
## 2435 V4 Post-demographic dividend 37178.0521
## 2436 V4 Post-demographic dividend 36344.2043
## 2437 V4 Post-demographic dividend 35388.5055
## 2438 V4 Post-demographic dividend 34843.1776
## 2439 V4 Post-demographic dividend 34480.6933
## 2440 V4 Post-demographic dividend 34139.4892
## 2441 V4 Post-demographic dividend 32996.1166
## 2442 V4 Post-demographic dividend 32036.9535
## 2443 V4 Post-demographic dividend 31319.6248
## 2444 V4 Post-demographic dividend 30444.2536
## 2445 V4 Post-demographic dividend 29727.6306
## 2446 V4 Post-demographic dividend 29101.5104
## 2447 V4 Post-demographic dividend 28390.5414
## 2448 V4 Post-demographic dividend 28258.6175
## 2449 V4 Post-demographic dividend 27904.0717
## 2450 V4 Post-demographic dividend 27759.0589
## 2451 V4 Post-demographic dividend 27170.8453
## 2452 V4 Post-demographic dividend 26321.9103
## 2453 V4 Post-demographic dividend 25287.3801
## 2454 V4 Post-demographic dividend 24566.9642
## 2455 V4 Post-demographic dividend 23928.8598
## 2456 V4 Post-demographic dividend 23193.2908
## 2457 V4 Post-demographic dividend 22253.8522
## 2458 V4 Post-demographic dividend 21686.8335
## 2459 V4 Post-demographic dividend 21750.0682
## 2460 V4 Post-demographic dividend 21489.0944
## 2461 V4 Post-demographic dividend 21427.4806
## 2462 V4 Post-demographic dividend 20780.9994
## 2463 V4 Post-demographic dividend 20042.9458
## 2464 V4 Post-demographic dividend 19437.4027
## 2465 V4 Post-demographic dividend 18668.1729
## 2466 V4 Post-demographic dividend 18808.4610
## 2467 V4 Post-demographic dividend 18827.1749
## 2468 V4 Post-demographic dividend 17898.8049
## 2469 V4 Post-demographic dividend 17148.5018
## 2470 V4 Post-demographic dividend 16721.7177
## 2471 V4 Post-demographic dividend 16438.5871
## 2472 V4 Post-demographic dividend 15749.3400
## 2473 V4 Post-demographic dividend 14998.7654
## 2474 V4 Post-demographic dividend 14514.3381
## 2475 V4 Post-demographic dividend 13850.8770
## 2476 V4 Post-demographic dividend 13276.8547
## 2477 V4 Post-demographic dividend 12628.8396
## 2478 V4 Post-demographic dividend 12138.7840
## 2479 V4 Post-demographic dividend 11628.6883
## 2480 V4 Post-demographic dividend 11280.1369
## 2481 V1 Pre-demographic dividend 1474.3011
## 2482 V1 Pre-demographic dividend 1463.2346
## 2483 V1 Pre-demographic dividend 1540.9839
## 2484 V1 Pre-demographic dividend 1534.6586
## 2485 V1 Pre-demographic dividend 1538.4675
## 2486 V1 Pre-demographic dividend 1557.2947
## 2487 V1 Pre-demographic dividend 1563.7312
## 2488 V1 Pre-demographic dividend 1558.9842
## 2489 V1 Pre-demographic dividend 1527.2159
## 2490 V1 Pre-demographic dividend 1486.1144
## 2491 V1 Pre-demographic dividend 1478.0224
## 2492 V1 Pre-demographic dividend 1462.6265
## 2493 V1 Pre-demographic dividend 1413.3357
## 2494 V1 Pre-demographic dividend 1389.8117
## 2495 V1 Pre-demographic dividend 1345.0293
## 2496 V1 Pre-demographic dividend 1304.7125
## 2497 V1 Pre-demographic dividend 1263.4703
## 2498 V1 Pre-demographic dividend 1227.0996
## 2499 V1 Pre-demographic dividend 1130.3021
## 2500 V1 Pre-demographic dividend 1169.9144
## 2501 V1 Pre-demographic dividend 1139.4180
## 2502 V1 Pre-demographic dividend 1120.7683
## 2503 V1 Pre-demographic dividend 1091.6666
## 2504 V1 Pre-demographic dividend 1075.7670
## 2505 V1 Pre-demographic dividend 1033.8367
## 2506 V1 Pre-demographic dividend 995.3928
## 2507 V1 Pre-demographic dividend 968.9957
## 2508 V1 Pre-demographic dividend 966.5685
## 2509 V1 Pre-demographic dividend 994.0625
## 2510 V1 Pre-demographic dividend 1026.1673
## 2511 V1 Pre-demographic dividend 1028.9472
## 2512 V1 Pre-demographic dividend 1151.7183
## 2513 V1 Pre-demographic dividend 1092.7409
## 2514 V1 Pre-demographic dividend 1102.4842
## 2515 V1 Pre-demographic dividend 1093.1219
## 2516 V1 Pre-demographic dividend 1077.0810
## 2517 V1 Pre-demographic dividend 1077.1060
## 2518 V1 Pre-demographic dividend 1069.1674
## 2519 V1 Pre-demographic dividend 1094.0501
## 2520 V1 Pre-demographic dividend 1178.9557
## 2521 V1 Pre-demographic dividend 1223.2983
## 2522 V1 Pre-demographic dividend 1307.5977
## 2523 V1 Pre-demographic dividend 1289.2120
## 2524 V1 Pre-demographic dividend 1256.8645
## 2525 V1 Pre-demographic dividend 1303.1927
## 2526 V1 Pre-demographic dividend 1279.3422
## 2527 V1 Pre-demographic dividend 1225.8718
## 2528 V1 Pre-demographic dividend 1262.5718
## 2529 V1 Pre-demographic dividend 1192.6281
## 2530 V1 Pre-demographic dividend 1175.9930
## 2531 V1 Pre-demographic dividend 1172.4162
## 2532 V1 Pre-demographic dividend 1098.8274
## 2533 V1 Pre-demographic dividend 1004.1242
## 2534 V1 Pre-demographic dividend 922.0059
## 2535 V1 Pre-demographic dividend 923.1743
## 2536 V1 Pre-demographic dividend 1011.5778
## 2537 V1 Pre-demographic dividend 1037.3444
## 2538 V1 Pre-demographic dividend 1020.1646
## 2539 V1 Pre-demographic dividend 1005.3268
## 2540 V1 Pre-demographic dividend 973.8110
## 2541 V1 Pre-demographic dividend 938.2531
## 2542 V1 Pre-demographic dividend 967.5629
## 2543 S1 Small states 11196.9262
## 2544 S1 Small states 10960.1744
## 2545 S1 Small states 11824.4002
## 2546 S1 Small states 11788.3116
## 2547 S1 Small states 11744.5974
## 2548 S1 Small states 11802.9003
## 2549 S1 Small states 11746.8397
## 2550 S1 Small states 11630.3405
## 2551 S1 Small states 11459.3853
## 2552 S1 Small states 11300.9281
## 2553 S1 Small states 11158.4543
## 2554 S1 Small states 10701.7784
## 2555 S1 Small states 10197.9933
## 2556 S1 Small states 10343.0155
## 2557 S1 Small states 9972.5145
## 2558 S1 Small states 9409.2900
## 2559 S1 Small states 8746.5797
## 2560 S1 Small states 8465.2036
## 2561 S1 Small states 7987.2439
## 2562 S1 Small states 7741.8767
## 2563 S1 Small states 7534.7305
## 2564 S1 Small states 7383.5578
## 2565 S1 Small states NA
## 2566 S1 Small states NA
## 2567 S1 Small states NA
## 2568 S1 Small states NA
## 2569 S1 Small states NA
## 2570 S1 Small states NA
## 2571 S1 Small states NA
## 2572 S1 Small states NA
## 2573 S1 Small states NA
## 2574 S1 Small states NA
## 2575 S1 Small states NA
## 2576 S1 Small states NA
## 2577 S1 Small states NA
## 2578 S1 Small states NA
## 2579 S1 Small states NA
## 2580 S1 Small states NA
## 2581 S1 Small states NA
## 2582 S1 Small states NA
## 2583 S1 Small states NA
## 2584 S1 Small states NA
## 2585 S1 Small states NA
## 2586 S1 Small states NA
## 2587 S1 Small states NA
## 2588 S1 Small states NA
## 2589 S1 Small states NA
## 2590 S1 Small states NA
## 2591 S1 Small states NA
## 2592 S1 Small states NA
## 2593 S1 Small states NA
## 2594 S1 Small states NA
## 2595 S1 Small states NA
## 2596 S1 Small states NA
## 2597 S1 Small states NA
## 2598 S1 Small states NA
## 2599 S1 Small states NA
## 2600 S1 Small states NA
## 2601 S1 Small states NA
## 2602 S1 Small states NA
## 2603 S1 Small states NA
## 2604 S1 Small states NA
## 2605 8S South Asia 1869.2833
## 2606 8S South Asia 1745.1997
## 2607 8S South Asia 1862.8755
## 2608 8S South Asia 1813.7778
## 2609 8S South Asia 1725.6227
## 2610 8S South Asia 1641.0013
## 2611 8S South Asia 1543.0481
## 2612 8S South Asia 1455.2711
## 2613 8S South Asia 1378.8330
## 2614 8S South Asia 1317.6022
## 2615 8S South Asia 1265.8857
## 2616 8S South Asia 1221.1817
## 2617 8S South Asia 1152.6504
## 2618 8S South Asia 1093.9391
## 2619 8S South Asia 1075.6207
## 2620 8S South Asia 1018.9303
## 2621 8S South Asia 962.1547
## 2622 8S South Asia 909.9139
## 2623 8S South Asia 860.9965
## 2624 8S South Asia 817.0586
## 2625 8S South Asia 803.0253
## 2626 8S South Asia 783.1514
## 2627 8S South Asia 766.5137
## 2628 8S South Asia 726.2874
## 2629 8S South Asia 702.0304
## 2630 8S South Asia 690.3611
## 2631 8S South Asia 660.0185
## 2632 8S South Asia 630.6661
## 2633 8S South Asia 607.9453
## 2634 8S South Asia 595.3963
## 2635 8S South Asia 575.2684
## 2636 8S South Asia 576.1945
## 2637 8S South Asia 558.9289
## 2638 8S South Asia 542.2914
## 2639 8S South Asia 511.6726
## 2640 8S South Asia 502.1702
## 2641 8S South Asia 490.2006
## 2642 8S South Asia 475.8533
## 2643 8S South Asia 467.4143
## 2644 8S South Asia 448.6709
## 2645 8S South Asia 442.5133
## 2646 8S South Asia 425.8022
## 2647 8S South Asia 409.5658
## 2648 8S South Asia 430.7695
## 2649 8S South Asia 415.6778
## 2650 8S South Asia 400.5309
## 2651 8S South Asia 399.7486
## 2652 8S South Asia 382.6115
## 2653 8S South Asia 382.1238
## 2654 8S South Asia 376.5119
## 2655 8S South Asia 392.2305
## 2656 8S South Asia 398.7820
## 2657 8S South Asia 385.4159
## 2658 8S South Asia 372.6987
## 2659 8S South Asia 364.5386
## 2660 8S South Asia 351.3007
## 2661 8S South Asia 354.9886
## 2662 8S South Asia 365.3080
## 2663 8S South Asia 346.4460
## 2664 8S South Asia 336.2955
## 2665 8S South Asia 332.2302
## 2666 8S South Asia 325.5888
## 2667 T5 South Asia (IDA & IBRD) 1869.2833
## 2668 T5 South Asia (IDA & IBRD) 1745.1997
## 2669 T5 South Asia (IDA & IBRD) 1862.8755
## 2670 T5 South Asia (IDA & IBRD) 1813.7778
## 2671 T5 South Asia (IDA & IBRD) 1725.6227
## 2672 T5 South Asia (IDA & IBRD) 1641.0013
## 2673 T5 South Asia (IDA & IBRD) 1543.0481
## 2674 T5 South Asia (IDA & IBRD) 1455.2711
## 2675 T5 South Asia (IDA & IBRD) 1378.8330
## 2676 T5 South Asia (IDA & IBRD) 1317.6022
## 2677 T5 South Asia (IDA & IBRD) 1265.8857
## 2678 T5 South Asia (IDA & IBRD) 1221.1817
## 2679 T5 South Asia (IDA & IBRD) 1152.6504
## 2680 T5 South Asia (IDA & IBRD) 1093.9391
## 2681 T5 South Asia (IDA & IBRD) 1075.6207
## 2682 T5 South Asia (IDA & IBRD) 1018.9303
## 2683 T5 South Asia (IDA & IBRD) 962.1547
## 2684 T5 South Asia (IDA & IBRD) 909.9139
## 2685 T5 South Asia (IDA & IBRD) 860.9965
## 2686 T5 South Asia (IDA & IBRD) 817.0586
## 2687 T5 South Asia (IDA & IBRD) 803.0253
## 2688 T5 South Asia (IDA & IBRD) 783.1514
## 2689 T5 South Asia (IDA & IBRD) 766.5137
## 2690 T5 South Asia (IDA & IBRD) 726.2874
## 2691 T5 South Asia (IDA & IBRD) 702.0304
## 2692 T5 South Asia (IDA & IBRD) 690.3611
## 2693 T5 South Asia (IDA & IBRD) 660.0185
## 2694 T5 South Asia (IDA & IBRD) 630.6661
## 2695 T5 South Asia (IDA & IBRD) 607.9453
## 2696 T5 South Asia (IDA & IBRD) 595.3963
## 2697 T5 South Asia (IDA & IBRD) 575.2684
## 2698 T5 South Asia (IDA & IBRD) 576.1945
## 2699 T5 South Asia (IDA & IBRD) 558.9289
## 2700 T5 South Asia (IDA & IBRD) 542.2914
## 2701 T5 South Asia (IDA & IBRD) 511.6726
## 2702 T5 South Asia (IDA & IBRD) 502.1702
## 2703 T5 South Asia (IDA & IBRD) 490.2006
## 2704 T5 South Asia (IDA & IBRD) 475.8533
## 2705 T5 South Asia (IDA & IBRD) 467.4143
## 2706 T5 South Asia (IDA & IBRD) 448.6709
## 2707 T5 South Asia (IDA & IBRD) 442.5133
## 2708 T5 South Asia (IDA & IBRD) 425.8022
## 2709 T5 South Asia (IDA & IBRD) 409.5658
## 2710 T5 South Asia (IDA & IBRD) 430.7695
## 2711 T5 South Asia (IDA & IBRD) 415.6778
## 2712 T5 South Asia (IDA & IBRD) 400.5309
## 2713 T5 South Asia (IDA & IBRD) 399.7486
## 2714 T5 South Asia (IDA & IBRD) 382.6115
## 2715 T5 South Asia (IDA & IBRD) 382.1238
## 2716 T5 South Asia (IDA & IBRD) 376.5119
## 2717 T5 South Asia (IDA & IBRD) 392.2305
## 2718 T5 South Asia (IDA & IBRD) 398.7820
## 2719 T5 South Asia (IDA & IBRD) 385.4159
## 2720 T5 South Asia (IDA & IBRD) 372.6987
## 2721 T5 South Asia (IDA & IBRD) 364.5386
## 2722 T5 South Asia (IDA & IBRD) 351.3007
## 2723 T5 South Asia (IDA & IBRD) 354.9886
## 2724 T5 South Asia (IDA & IBRD) 365.3080
## 2725 T5 South Asia (IDA & IBRD) 346.4460
## 2726 T5 South Asia (IDA & IBRD) 336.2955
## 2727 T5 South Asia (IDA & IBRD) 332.2302
## 2728 T5 South Asia (IDA & IBRD) 325.5888
## 2729 ZG Sub-Saharan Africa 1612.0585
## 2730 ZG Sub-Saharan Africa 1588.3935
## 2731 ZG Sub-Saharan Africa 1663.2647
## 2732 ZG Sub-Saharan Africa 1664.9522
## 2733 ZG Sub-Saharan Africa 1664.7540
## 2734 ZG Sub-Saharan Africa 1668.8508
## 2735 ZG Sub-Saharan Africa 1692.6743
## 2736 ZG Sub-Saharan Africa 1690.6272
## 2737 ZG Sub-Saharan Africa 1656.6833
## 2738 ZG Sub-Saharan Africa 1620.6056
## 2739 ZG Sub-Saharan Africa 1620.7438
## 2740 ZG Sub-Saharan Africa 1598.6486
## 2741 ZG Sub-Saharan Africa 1550.9627
## 2742 ZG Sub-Saharan Africa 1546.6716
## 2743 ZG Sub-Saharan Africa 1511.3988
## 2744 ZG Sub-Saharan Africa 1462.7478
## 2745 ZG Sub-Saharan Africa 1416.7190
## 2746 ZG Sub-Saharan Africa 1372.5485
## 2747 ZG Sub-Saharan Africa 1322.6375
## 2748 ZG Sub-Saharan Africa 1304.5708
## 2749 ZG Sub-Saharan Africa 1260.0411
## 2750 ZG Sub-Saharan Africa 1240.4518
## 2751 ZG Sub-Saharan Africa 1230.2591
## 2752 ZG Sub-Saharan Africa 1236.2200
## 2753 ZG Sub-Saharan Africa 1238.1788
## 2754 ZG Sub-Saharan Africa 1218.2272
## 2755 ZG Sub-Saharan Africa 1189.9917
## 2756 ZG Sub-Saharan Africa 1182.5134
## 2757 ZG Sub-Saharan Africa 1201.6308
## 2758 ZG Sub-Saharan Africa 1243.3630
## 2759 ZG Sub-Saharan Africa 1279.5435
## 2760 ZG Sub-Saharan Africa 1308.8006
## 2761 ZG Sub-Saharan Africa 1313.6942
## 2762 ZG Sub-Saharan Africa 1316.3495
## 2763 ZG Sub-Saharan Africa 1298.3030
## 2764 ZG Sub-Saharan Africa 1295.3092
## 2765 ZG Sub-Saharan Africa 1307.5110
## 2766 ZG Sub-Saharan Africa 1321.5635
## 2767 ZG Sub-Saharan Africa 1332.2541
## 2768 ZG Sub-Saharan Africa 1406.0833
## 2769 ZG Sub-Saharan Africa 1462.5341
## 2770 ZG Sub-Saharan Africa 1515.6671
## 2771 ZG Sub-Saharan Africa 1502.8638
## 2772 ZG Sub-Saharan Africa 1487.5170
## 2773 ZG Sub-Saharan Africa 1538.4495
## 2774 ZG Sub-Saharan Africa 1538.0302
## 2775 ZG Sub-Saharan Africa 1499.1609
## 2776 ZG Sub-Saharan Africa 1542.9951
## 2777 ZG Sub-Saharan Africa 1469.6070
## 2778 ZG Sub-Saharan Africa 1447.1971
## 2779 ZG Sub-Saharan Africa 1448.5731
## 2780 ZG Sub-Saharan Africa 1379.4974
## 2781 ZG Sub-Saharan Africa 1284.2355
## 2782 ZG Sub-Saharan Africa 1204.9749
## 2783 ZG Sub-Saharan Africa 1199.8165
## 2784 ZG Sub-Saharan Africa 1244.9355
## 2785 ZG Sub-Saharan Africa 1259.0017
## 2786 ZG Sub-Saharan Africa 1231.6689
## 2787 ZG Sub-Saharan Africa 1202.3810
## 2788 ZG Sub-Saharan Africa 1160.6861
## 2789 ZG Sub-Saharan Africa 1120.4620
## 2790 ZG Sub-Saharan Africa 1135.8406
## 2791 ZF Sub-Saharan Africa (excluding high income) 1610.8583
## 2792 ZF Sub-Saharan Africa (excluding high income) 1587.1839
## 2793 ZF Sub-Saharan Africa (excluding high income) 1661.9129
## 2794 ZF Sub-Saharan Africa (excluding high income) 1663.6094
## 2795 ZF Sub-Saharan Africa (excluding high income) 1663.4211
## 2796 ZF Sub-Saharan Africa (excluding high income) 1667.5463
## 2797 ZF Sub-Saharan Africa (excluding high income) 1691.4106
## 2798 ZF Sub-Saharan Africa (excluding high income) 1689.4031
## 2799 ZF Sub-Saharan Africa (excluding high income) 1655.4810
## 2800 ZF Sub-Saharan Africa (excluding high income) 1619.4432
## 2801 ZF Sub-Saharan Africa (excluding high income) 1619.5645
## 2802 ZF Sub-Saharan Africa (excluding high income) 1597.5394
## 2803 ZF Sub-Saharan Africa (excluding high income) 1549.8868
## 2804 ZF Sub-Saharan Africa (excluding high income) 1545.5506
## 2805 ZF Sub-Saharan Africa (excluding high income) 1510.2088
## 2806 ZF Sub-Saharan Africa (excluding high income) 1461.6509
## 2807 ZF Sub-Saharan Africa (excluding high income) 1415.6955
## 2808 ZF Sub-Saharan Africa (excluding high income) 1371.5922
## 2809 ZF Sub-Saharan Africa (excluding high income) 1321.6151
## 2810 ZF Sub-Saharan Africa (excluding high income) 1303.4432
## 2811 ZF Sub-Saharan Africa (excluding high income) 1258.8882
## 2812 ZF Sub-Saharan Africa (excluding high income) 1239.2335
## 2813 ZF Sub-Saharan Africa (excluding high income) 1229.0264
## 2814 ZF Sub-Saharan Africa (excluding high income) 1234.9783
## 2815 ZF Sub-Saharan Africa (excluding high income) 1237.0136
## 2816 ZF Sub-Saharan Africa (excluding high income) 1217.1730
## 2817 ZF Sub-Saharan Africa (excluding high income) 1188.9614
## 2818 ZF Sub-Saharan Africa (excluding high income) 1181.4410
## 2819 ZF Sub-Saharan Africa (excluding high income) 1200.5169
## 2820 ZF Sub-Saharan Africa (excluding high income) 1242.2985
## 2821 ZF Sub-Saharan Africa (excluding high income) 1278.5397
## 2822 ZF Sub-Saharan Africa (excluding high income) 1307.8034
## 2823 ZF Sub-Saharan Africa (excluding high income) 1312.7487
## 2824 ZF Sub-Saharan Africa (excluding high income) 1315.4952
## 2825 ZF Sub-Saharan Africa (excluding high income) 1297.4760
## 2826 ZF Sub-Saharan Africa (excluding high income) 1294.4943
## 2827 ZF Sub-Saharan Africa (excluding high income) 1306.6701
## 2828 ZF Sub-Saharan Africa (excluding high income) 1320.8098
## 2829 ZF Sub-Saharan Africa (excluding high income) 1331.5226
## 2830 ZF Sub-Saharan Africa (excluding high income) 1405.3264
## 2831 ZF Sub-Saharan Africa (excluding high income) 1461.7517
## 2832 ZF Sub-Saharan Africa (excluding high income) 1514.7659
## 2833 ZF Sub-Saharan Africa (excluding high income) 1501.8655
## 2834 ZF Sub-Saharan Africa (excluding high income) 1486.6775
## 2835 ZF Sub-Saharan Africa (excluding high income) 1537.8205
## 2836 ZF Sub-Saharan Africa (excluding high income) 1537.2998
## 2837 ZF Sub-Saharan Africa (excluding high income) 1498.5574
## 2838 ZF Sub-Saharan Africa (excluding high income) 1542.4095
## 2839 ZF Sub-Saharan Africa (excluding high income) 1468.9871
## 2840 ZF Sub-Saharan Africa (excluding high income) 1446.6347
## 2841 ZF Sub-Saharan Africa (excluding high income) 1448.0454
## 2842 ZF Sub-Saharan Africa (excluding high income) 1379.0598
## 2843 ZF Sub-Saharan Africa (excluding high income) 1283.8188
## 2844 ZF Sub-Saharan Africa (excluding high income) 1204.5139
## 2845 ZF Sub-Saharan Africa (excluding high income) 1199.3925
## 2846 ZF Sub-Saharan Africa (excluding high income) 1244.5096
## 2847 ZF Sub-Saharan Africa (excluding high income) 1258.6609
## 2848 ZF Sub-Saharan Africa (excluding high income) 1231.2936
## 2849 ZF Sub-Saharan Africa (excluding high income) 1202.0212
## 2850 ZF Sub-Saharan Africa (excluding high income) 1160.3642
## 2851 ZF Sub-Saharan Africa (excluding high income) 1120.1648
## 2852 ZF Sub-Saharan Africa (excluding high income) 1135.4982
## 2853 T6 Sub-Saharan Africa (IDA & IBRD countries) 1612.0585
## 2854 T6 Sub-Saharan Africa (IDA & IBRD countries) 1588.3935
## 2855 T6 Sub-Saharan Africa (IDA & IBRD countries) 1663.2647
## 2856 T6 Sub-Saharan Africa (IDA & IBRD countries) 1664.9522
## 2857 T6 Sub-Saharan Africa (IDA & IBRD countries) 1664.7540
## 2858 T6 Sub-Saharan Africa (IDA & IBRD countries) 1668.8508
## 2859 T6 Sub-Saharan Africa (IDA & IBRD countries) 1692.6743
## 2860 T6 Sub-Saharan Africa (IDA & IBRD countries) 1690.6272
## 2861 T6 Sub-Saharan Africa (IDA & IBRD countries) 1656.6833
## 2862 T6 Sub-Saharan Africa (IDA & IBRD countries) 1620.6056
## 2863 T6 Sub-Saharan Africa (IDA & IBRD countries) 1620.7438
## 2864 T6 Sub-Saharan Africa (IDA & IBRD countries) 1598.6486
## 2865 T6 Sub-Saharan Africa (IDA & IBRD countries) 1550.9627
## 2866 T6 Sub-Saharan Africa (IDA & IBRD countries) 1546.6716
## 2867 T6 Sub-Saharan Africa (IDA & IBRD countries) 1511.3988
## 2868 T6 Sub-Saharan Africa (IDA & IBRD countries) 1462.7478
## 2869 T6 Sub-Saharan Africa (IDA & IBRD countries) 1416.7190
## 2870 T6 Sub-Saharan Africa (IDA & IBRD countries) 1372.5485
## 2871 T6 Sub-Saharan Africa (IDA & IBRD countries) 1322.6375
## 2872 T6 Sub-Saharan Africa (IDA & IBRD countries) 1304.5708
## 2873 T6 Sub-Saharan Africa (IDA & IBRD countries) 1260.0411
## 2874 T6 Sub-Saharan Africa (IDA & IBRD countries) 1240.4518
## 2875 T6 Sub-Saharan Africa (IDA & IBRD countries) 1230.2591
## 2876 T6 Sub-Saharan Africa (IDA & IBRD countries) 1236.2200
## 2877 T6 Sub-Saharan Africa (IDA & IBRD countries) 1238.1788
## 2878 T6 Sub-Saharan Africa (IDA & IBRD countries) 1218.2272
## 2879 T6 Sub-Saharan Africa (IDA & IBRD countries) 1189.9917
## 2880 T6 Sub-Saharan Africa (IDA & IBRD countries) 1182.5134
## 2881 T6 Sub-Saharan Africa (IDA & IBRD countries) 1201.6308
## 2882 T6 Sub-Saharan Africa (IDA & IBRD countries) 1243.3630
## 2883 T6 Sub-Saharan Africa (IDA & IBRD countries) 1279.5435
## 2884 T6 Sub-Saharan Africa (IDA & IBRD countries) 1308.8006
## 2885 T6 Sub-Saharan Africa (IDA & IBRD countries) 1313.6942
## 2886 T6 Sub-Saharan Africa (IDA & IBRD countries) 1316.3495
## 2887 T6 Sub-Saharan Africa (IDA & IBRD countries) 1298.3030
## 2888 T6 Sub-Saharan Africa (IDA & IBRD countries) 1295.3092
## 2889 T6 Sub-Saharan Africa (IDA & IBRD countries) 1307.5110
## 2890 T6 Sub-Saharan Africa (IDA & IBRD countries) 1321.5635
## 2891 T6 Sub-Saharan Africa (IDA & IBRD countries) 1332.2541
## 2892 T6 Sub-Saharan Africa (IDA & IBRD countries) 1406.0833
## 2893 T6 Sub-Saharan Africa (IDA & IBRD countries) 1462.5341
## 2894 T6 Sub-Saharan Africa (IDA & IBRD countries) 1515.6671
## 2895 T6 Sub-Saharan Africa (IDA & IBRD countries) 1502.8638
## 2896 T6 Sub-Saharan Africa (IDA & IBRD countries) 1487.5170
## 2897 T6 Sub-Saharan Africa (IDA & IBRD countries) 1538.4495
## 2898 T6 Sub-Saharan Africa (IDA & IBRD countries) 1538.0302
## 2899 T6 Sub-Saharan Africa (IDA & IBRD countries) 1499.1609
## 2900 T6 Sub-Saharan Africa (IDA & IBRD countries) 1542.9951
## 2901 T6 Sub-Saharan Africa (IDA & IBRD countries) 1469.6070
## 2902 T6 Sub-Saharan Africa (IDA & IBRD countries) 1447.1971
## 2903 T6 Sub-Saharan Africa (IDA & IBRD countries) 1448.5731
## 2904 T6 Sub-Saharan Africa (IDA & IBRD countries) 1379.4974
## 2905 T6 Sub-Saharan Africa (IDA & IBRD countries) 1284.2355
## 2906 T6 Sub-Saharan Africa (IDA & IBRD countries) 1204.9749
## 2907 T6 Sub-Saharan Africa (IDA & IBRD countries) 1199.8165
## 2908 T6 Sub-Saharan Africa (IDA & IBRD countries) 1244.9355
## 2909 T6 Sub-Saharan Africa (IDA & IBRD countries) 1259.0017
## 2910 T6 Sub-Saharan Africa (IDA & IBRD countries) 1231.6689
## 2911 T6 Sub-Saharan Africa (IDA & IBRD countries) 1202.3810
## 2912 T6 Sub-Saharan Africa (IDA & IBRD countries) 1160.6861
## 2913 T6 Sub-Saharan Africa (IDA & IBRD countries) 1120.4620
## 2914 T6 Sub-Saharan Africa (IDA & IBRD countries) 1135.8406
## 2915 XT Upper middle income 10054.5569
## 2916 XT Upper middle income 9395.1386
## 2917 XT Upper middle income 9496.8875
## 2918 XT Upper middle income 9176.5555
## 2919 XT Upper middle income 8803.0639
## 2920 XT Upper middle income 8430.0008
## 2921 XT Upper middle income 8149.7518
## 2922 XT Upper middle income 7874.2038
## 2923 XT Upper middle income 7580.4136
## 2924 XT Upper middle income 7240.2179
## 2925 XT Upper middle income 6892.7471
## 2926 XT Upper middle income 6494.7252
## 2927 XT Upper middle income 6031.8975
## 2928 XT Upper middle income 5913.8127
## 2929 XT Upper middle income 5592.6371
## 2930 XT Upper middle income 5135.8985
## 2931 XT Upper middle income 4749.8242
## 2932 XT Upper middle income 4440.5549
## 2933 XT Upper middle income 4136.7363
## 2934 XT Upper middle income 3932.5639
## 2935 XT Upper middle income 3784.2269
## 2936 XT Upper middle income 3682.8705
## 2937 XT Upper middle income 3491.0632
## 2938 XT Upper middle income 3399.5029
## 2939 XT Upper middle income 3331.8496
## 2940 XT Upper middle income 3181.6468
## 2941 XT Upper middle income 3055.4674
## 2942 XT Upper middle income 2984.4774
## 2943 XT Upper middle income 2910.1377
## 2944 XT Upper middle income 2825.3466
## 2945 XT Upper middle income 2829.3310
## 2946 XT Upper middle income 2837.2134
## 2947 XT Upper middle income 2849.4937
## 2948 XT Upper middle income 2826.1103
## 2949 XT Upper middle income 2765.5086
## 2950 XT Upper middle income 2662.7773
## 2951 XT Upper middle income 2579.8117
## 2952 XT Upper middle income 2495.0501
## 2953 XT Upper middle income 2384.0683
## 2954 XT Upper middle income 2398.6292
## 2955 XT Upper middle income 2388.8982
## 2956 XT Upper middle income 2373.0670
## 2957 XT Upper middle income 2259.5238
## 2958 XT Upper middle income 2145.6105
## 2959 XT Upper middle income 2071.0948
## 2960 XT Upper middle income 2007.5816
## 2961 XT Upper middle income 1944.3492
## 2962 XT Upper middle income 1885.2193
## 2963 XT Upper middle income 1813.0371
## 2964 XT Upper middle income 1715.2220
## 2965 XT Upper middle income 1645.2012
## 2966 XT Upper middle income 1579.2171
## 2967 XT Upper middle income 1493.8261
## 2968 XT Upper middle income 1419.7785
## 2969 XT Upper middle income 1377.4147
## 2970 XT Upper middle income 1366.3664
## 2971 XT Upper middle income 1319.1487
## 2972 XT Upper middle income 1259.1435
## 2973 XT Upper middle income 1184.5509
## 2974 XT Upper middle income 1167.9740
## 2975 XT Upper middle income 1146.4737
## 2976 XT Upper middle income 1152.3195
## 2977 1W World 11057.4208
## 2978 1W World 10548.9042
## 2979 1W World 11019.3754
## 2980 1W World 10853.1115
## 2981 1W World 10625.2559
## 2982 1W World 10396.4334
## 2983 1W World 10231.7026
## 2984 1W World 10043.2007
## 2985 1W World 9862.6603
## 2986 1W World 9708.8721
## 2987 1W World 9568.3563
## 2988 1W World 9370.3853
## 2989 1W World 9071.9727
## 2990 1W World 9306.1935
## 2991 1W World 9230.9248
## 2992 1W World 8944.5147
## 2993 1W World 8667.7692
## 2994 1W World 8434.8197
## 2995 1W World 8173.3436
## 2996 1W World 8023.6392
## 2997 1W World 7941.1178
## 2998 1W World 7886.6774
## 2999 1W World 7647.8413
## 3000 1W World 7487.4175
## 3001 1W World 7385.2486
## 3002 1W World 7209.1572
## 3003 1W World 7058.3206
## 3004 1W World 6949.8107
## 3005 1W World 6829.6525
## 3006 1W World 6813.3086
## 3007 1W World 6780.1226
## 3008 1W World 6794.0106
## 3009 1W World 6719.2209
## 3010 1W World 6588.7245
## 3011 1W World 6408.0141
## 3012 1W World 6287.6449
## 3013 1W World 6185.8098
## 3014 1W World 6069.4556
## 3015 1W World 5899.6461
## 3016 1W World 5849.8938
## 3017 1W World 5931.8236
## 3018 1W World 5921.9563
## 3019 1W World 5914.4827
## 3020 1W World 5777.5080
## 3021 1W World 5644.9690
## 3022 1W World 5517.5712
## 3023 1W World 5333.7613
## 3024 1W World 5398.3825
## 3025 1W World 5405.5943
## 3026 1W World 5180.8645
## 3027 1W World 5004.8790
## 3028 1W World 4902.1002
## 3029 1W World 4815.4389
## 3030 1W World 4645.7989
## 3031 1W World 4475.4189
## 3032 1W World 4384.8833
## 3033 1W World 4235.3988
## 3034 1W World 4095.1962
## 3035 1W World 3922.0515
## 3036 1W World 3806.4035
## 3037 1W World 3676.5755
## 3038 1W World 3588.3786
## 3039 AF Afghanistan NA
## 3040 AF Afghanistan 529.7412
## 3041 AF Afghanistan 555.1390
## 3042 AF Afghanistan 546.7430
## 3043 AF Afghanistan 553.3551
## 3044 AF Afghanistan 552.9969
## 3045 AF Afghanistan 556.0072
## 3046 AF Afghanistan 565.1793
## 3047 AF Afghanistan 568.9645
## 3048 AF Afghanistan 557.9497
## 3049 AF Afghanistan 511.9985
## 3050 AF Afghanistan 526.1037
## 3051 AF Afghanistan 472.8423
## 3052 AF Afghanistan 398.9711
## 3053 AF Afghanistan 392.7105
## 3054 AF Afghanistan 353.7206
## 3055 AF Afghanistan 345.9258
## 3056 AF Afghanistan 322.6680
## 3057 AF Afghanistan 332.2200
## 3058 AF Afghanistan 319.8471
## 3059 AF Afghanistan NA
## 3060 AF Afghanistan NA
## 3061 AF Afghanistan NA
## 3062 AF Afghanistan NA
## 3063 AF Afghanistan NA
## 3064 AF Afghanistan NA
## 3065 AF Afghanistan NA
## 3066 AF Afghanistan NA
## 3067 AF Afghanistan NA
## 3068 AF Afghanistan NA
## 3069 AF Afghanistan NA
## 3070 AF Afghanistan NA
## 3071 AF Afghanistan NA
## 3072 AF Afghanistan NA
## 3073 AF Afghanistan NA
## 3074 AF Afghanistan NA
## 3075 AF Afghanistan NA
## 3076 AF Afghanistan NA
## 3077 AF Afghanistan NA
## 3078 AF Afghanistan NA
## 3079 AF Afghanistan NA
## 3080 AF Afghanistan NA
## 3081 AF Afghanistan NA
## 3082 AF Afghanistan NA
## 3083 AF Afghanistan NA
## 3084 AF Afghanistan NA
## 3085 AF Afghanistan NA
## 3086 AF Afghanistan NA
## 3087 AF Afghanistan NA
## 3088 AF Afghanistan NA
## 3089 AF Afghanistan NA
## 3090 AF Afghanistan NA
## 3091 AF Afghanistan NA
## 3092 AF Afghanistan NA
## 3093 AF Afghanistan NA
## 3094 AF Afghanistan NA
## 3095 AF Afghanistan NA
## 3096 AF Afghanistan NA
## 3097 AF Afghanistan NA
## 3098 AF Afghanistan NA
## 3099 AF Afghanistan NA
## 3100 AF Afghanistan NA
## 3101 AL Albania 4831.8687
## 3102 AL Albania 4410.4552
## 3103 AL Albania 4543.3865
## 3104 AL Albania 4431.5392
## 3105 AL Albania 4249.8037
## 3106 AL Albania 4090.3717
## 3107 AL Albania 3952.8025
## 3108 AL Albania 3855.7597
## 3109 AL Albania 3780.6982
## 3110 AL Albania 3736.3391
## 3111 AL Albania 3678.0467
## 3112 AL Albania 3577.1134
## 3113 AL Albania 3432.1700
## 3114 AL Albania 3298.4780
## 3115 AL Albania 3044.8958
## 3116 AL Albania 2851.3670
## 3117 AL Albania 2675.5079
## 3118 AL Albania 2522.4487
## 3119 AL Albania 2380.6440
## 3120 AL Albania 2247.4975
## 3121 AL Albania 2143.5263
## 3122 AL Albania 1960.8819
## 3123 AL Albania 1821.8727
## 3124 AL Albania 1603.6472
## 3125 AL Albania 1464.2976
## 3126 AL Albania 1633.5516
## 3127 AL Albania 1488.0205
## 3128 AL Albania 1305.0007
## 3129 AL Albania 1197.5806
## 3130 AL Albania 1086.4385
## 3131 AL Albania 1163.4913
## 3132 AL Albania 1606.2960
## 3133 AL Albania 1808.6456
## 3134 AL Albania 1691.5305
## 3135 AL Albania 1748.5783
## 3136 AL Albania 1798.0146
## 3137 AL Albania 1735.2899
## 3138 AL Albania 1740.3472
## 3139 AL Albania 1799.8781
## 3140 AL Albania 1818.3673
## 3141 AL Albania 1804.0103
## 3142 AL Albania 1740.5054
## 3143 AL Albania NA
## 3144 AL Albania NA
## 3145 AL Albania NA
## 3146 AL Albania NA
## 3147 AL Albania NA
## 3148 AL Albania NA
## 3149 AL Albania NA
## 3150 AL Albania NA
## 3151 AL Albania NA
## 3152 AL Albania NA
## 3153 AL Albania NA
## 3154 AL Albania NA
## 3155 AL Albania NA
## 3156 AL Albania NA
## 3157 AL Albania NA
## 3158 AL Albania NA
## 3159 AL Albania NA
## 3160 AL Albania NA
## 3161 AL Albania NA
## 3162 AL Albania NA
## 3163 DZ Algeria 3913.6529
## 3164 DZ Algeria 3834.4390
## 3165 DZ Algeria 4115.3955
## 3166 DZ Algeria 4154.2190
## 3167 DZ Algeria 4192.3377
## 3168 DZ Algeria 4224.0373
## 3169 DZ Algeria 4177.8895
## 3170 DZ Algeria 4112.0760
## 3171 DZ Algeria 4042.9236
## 3172 DZ Algeria 4012.3615
## 3173 DZ Algeria 3956.8958
## 3174 DZ Algeria 3918.4864
## 3175 DZ Algeria 3851.2138
## 3176 DZ Algeria 3856.4077
## 3177 DZ Algeria 3828.1485
## 3178 DZ Algeria 3760.1554
## 3179 DZ Algeria 3752.0962
## 3180 DZ Algeria 3592.6453
## 3181 DZ Algeria 3490.2232
## 3182 DZ Algeria 3297.6128
## 3183 DZ Algeria 3162.8115
## 3184 DZ Algeria 3111.1762
## 3185 DZ Algeria 3038.2729
## 3186 DZ Algeria 2986.0557
## 3187 DZ Algeria 2884.1202
## 3188 DZ Algeria 2899.1932
## 3189 DZ Algeria 2834.2652
## 3190 DZ Algeria 2783.1550
## 3191 DZ Algeria 2867.1959
## 3192 DZ Algeria 2994.4913
## 3193 DZ Algeria 3011.4999
## 3194 DZ Algeria 3123.9977
## 3195 DZ Algeria 3179.7733
## 3196 DZ Algeria 3128.3375
## 3197 DZ Algeria 3248.8812
## 3198 DZ Algeria 3366.9389
## 3199 DZ Algeria 3453.8216
## 3200 DZ Algeria 3432.8064
## 3201 DZ Algeria 3352.6997
## 3202 DZ Algeria 3281.8609
## 3203 DZ Algeria 3182.2599
## 3204 DZ Algeria 3186.4372
## 3205 DZ Algeria 3258.7312
## 3206 DZ Algeria 3123.3766
## 3207 DZ Algeria 2944.3211
## 3208 DZ Algeria 2878.6100
## 3209 DZ Algeria 2732.3244
## 3210 DZ Algeria 2674.9704
## 3211 DZ Algeria 2558.0302
## 3212 DZ Algeria 2532.3928
## 3213 DZ Algeria 2042.6634
## 3214 DZ Algeria 2368.5747
## 3215 DZ Algeria 2238.1427
## 3216 DZ Algeria 2124.2186
## 3217 DZ Algeria 1973.3474
## 3218 DZ Algeria 1854.9538
## 3219 DZ Algeria 2003.1929
## 3220 DZ Algeria 1936.9280
## 3221 DZ Algeria 1877.5130
## 3222 DZ Algeria 1433.1006
## 3223 DZ Algeria 1828.9728
## 3224 DZ Algeria 2170.3127
## 3225 AS American Samoa NA
## 3226 AS American Samoa 11839.0105
## 3227 AS American Samoa 11368.5696
## 3228 AS American Samoa 11393.6057
## 3229 AS American Samoa 11066.0602
## 3230 AS American Samoa 11871.3595
## 3231 AS American Samoa 12059.6352
## 3232 AS American Samoa 11694.5454
## 3233 AS American Samoa 11507.2257
## 3234 AS American Samoa 11812.4591
## 3235 AS American Samoa 12328.6653
## 3236 AS American Samoa 12256.3429
## 3237 AS American Samoa 12092.2765
## 3238 AS American Samoa 12439.1497
## 3239 AS American Samoa 12586.7160
## 3240 AS American Samoa 12202.7374
## 3241 AS American Samoa 12628.5077
## 3242 AS American Samoa 12653.2818
## 3243 AS American Samoa 12641.6679
## 3244 AS American Samoa 12609.3685
## 3245 AS American Samoa NA
## 3246 AS American Samoa NA
## 3247 AS American Samoa NA
## 3248 AS American Samoa NA
## 3249 AS American Samoa NA
## 3250 AS American Samoa NA
## 3251 AS American Samoa NA
## 3252 AS American Samoa NA
## 3253 AS American Samoa NA
## 3254 AS American Samoa NA
## 3255 AS American Samoa NA
## 3256 AS American Samoa NA
## 3257 AS American Samoa NA
## 3258 AS American Samoa NA
## 3259 AS American Samoa NA
## 3260 AS American Samoa NA
## 3261 AS American Samoa NA
## 3262 AS American Samoa NA
## 3263 AS American Samoa NA
## 3264 AS American Samoa NA
## 3265 AS American Samoa NA
## 3266 AS American Samoa NA
## 3267 AS American Samoa NA
## 3268 AS American Samoa NA
## 3269 AS American Samoa NA
## 3270 AS American Samoa NA
## 3271 AS American Samoa NA
## 3272 AS American Samoa NA
## 3273 AS American Samoa NA
## 3274 AS American Samoa NA
## 3275 AS American Samoa NA
## 3276 AS American Samoa NA
## 3277 AS American Samoa NA
## 3278 AS American Samoa NA
## 3279 AS American Samoa NA
## 3280 AS American Samoa NA
## 3281 AS American Samoa NA
## 3282 AS American Samoa NA
## 3283 AS American Samoa NA
## 3284 AS American Samoa NA
## 3285 AS American Samoa NA
## 3286 AS American Samoa NA
## 3287 AD Andorra 37640.1263
## 3288 AD Andorra 34588.0537
## 3289 AD Andorra 39003.5392
## 3290 AD Andorra 38301.4504
## 3291 AD Andorra 37707.8332
## 3292 AD Andorra 37432.9112
## 3293 AD Andorra 35770.9187
## 3294 AD Andorra 34722.0298
## 3295 AD Andorra 33220.6938
## 3296 AD Andorra 33750.1908
## 3297 AD Andorra 34956.7349
## 3298 AD Andorra 34667.3089
## 3299 AD Andorra 35362.8369
## 3300 AD Andorra 37610.7102
## 3301 AD Andorra 40392.0317
## 3302 AD Andorra 40602.6987
## 3303 AD Andorra 39783.0866
## 3304 AD Andorra 39043.1137
## 3305 AD Andorra 37620.3548
## 3306 AD Andorra 36158.7299
## 3307 AD Andorra 35975.0224
## 3308 AD Andorra 34267.7182
## 3309 AD Andorra 33625.3772
## 3310 AD Andorra 32416.1429
## 3311 AD Andorra 31325.6417
## 3312 AD Andorra 28701.2086
## 3313 AD Andorra 27641.9961
## 3314 AD Andorra 27408.3889
## 3315 AD Andorra 27517.6580
## 3316 AD Andorra 28792.3124
## 3317 AD Andorra 29642.8291
## 3318 AD Andorra 30051.2970
## 3319 AD Andorra 30091.3687
## 3320 AD Andorra 29854.9187
## 3321 AD Andorra 29564.9384
## 3322 AD Andorra 29178.6586
## 3323 AD Andorra 29480.4634
## 3324 AD Andorra 30084.6863
## 3325 AD Andorra 30897.0741
## 3326 AD Andorra 31709.4219
## 3327 AD Andorra 32669.5914
## 3328 AD Andorra 34014.6234
## 3329 AD Andorra 34462.6295
## 3330 AD Andorra 35551.8767
## 3331 AD Andorra 36081.8008
## 3332 AD Andorra 36175.4646
## 3333 AD Andorra 36246.8271
## 3334 AD Andorra 37504.8905
## 3335 AD Andorra 37123.4096
## 3336 AD Andorra 36166.5570
## 3337 AD Andorra 35159.6061
## 3338 AD Andorra 35391.2140
## 3339 AD Andorra NA
## 3340 AD Andorra NA
## 3341 AD Andorra NA
## 3342 AD Andorra NA
## 3343 AD Andorra NA
## 3344 AD Andorra NA
## 3345 AD Andorra NA
## 3346 AD Andorra NA
## 3347 AD Andorra NA
## 3348 AD Andorra NA
## 3349 AO Angola 2331.4954
## 3350 AO Angola 2390.4781
## 3351 AO Angola 2612.3470
## 3352 AO Angola 2717.4741
## 3353 AO Angola 2845.4317
## 3354 AO Angola 2945.9681
## 3355 AO Angola 3127.8906
## 3356 AO Angola 3207.1781
## 3357 AO Angola 3168.6053
## 3358 AO Angola 3128.3247
## 3359 AO Angola 2987.7679
## 3360 AO Angola 2994.4380
## 3361 AO Angola 2962.4468
## 3362 AO Angola 3048.0156
## 3363 AO Angola 2845.4064
## 3364 AO Angola 2589.3217
## 3365 AO Angola 2406.7783
## 3366 AO Angola 2167.6472
## 3367 AO Angola 2022.3551
## 3368 AO Angola 2031.1233
## 3369 AO Angola 1847.4202
## 3370 AO Angola 1832.3557
## 3371 AO Angola 1837.2788
## 3372 AO Angola 1857.4376
## 3373 AO Angola 1832.4296
## 3374 AO Angola 1764.0233
## 3375 AO Angola 1604.3461
## 3376 AO Angola 1440.6904
## 3377 AO Angola 1468.2628
## 3378 AO Angola 1995.2414
## 3379 AO Angola 2189.6118
## 3380 AO Angola 2241.4077
## 3381 AO Angola 2401.2716
## 3382 AO Angola 2484.1414
## 3383 AO Angola 2423.6323
## 3384 AO Angola 2411.8512
## 3385 AO Angola 2428.1386
## 3386 AO Angola 2430.7545
## 3387 AO Angola 2376.3710
## 3388 AO Angola 2363.4074
## 3389 AO Angola 2448.8828
## 3390 AO Angola 2653.4729
## 3391 AO Angola NA
## 3392 AO Angola NA
## 3393 AO Angola NA
## 3394 AO Angola NA
## 3395 AO Angola NA
## 3396 AO Angola NA
## 3397 AO Angola NA
## 3398 AO Angola NA
## 3399 AO Angola NA
## 3400 AO Angola NA
## 3401 AO Angola NA
## 3402 AO Angola NA
## 3403 AO Angola NA
## 3404 AO Angola NA
## 3405 AO Angola NA
## 3406 AO Angola NA
## 3407 AO Angola NA
## 3408 AO Angola NA
## 3409 AO Angola NA
## 3410 AO Angola NA
## 3411 AG Antigua and Barbuda 13872.5822
## 3412 AG Antigua and Barbuda 13285.6447
## 3413 AG Antigua and Barbuda 16786.4474
## 3414 AG Antigua and Barbuda 16146.5927
## 3415 AG Antigua and Barbuda 15242.3731
## 3416 AG Antigua and Barbuda 14919.2060
## 3417 AG Antigua and Barbuda 14285.3298
## 3418 AG Antigua and Barbuda 13908.9916
## 3419 AG Antigua and Barbuda 13554.4014
## 3420 AG Antigua and Barbuda 13802.7075
## 3421 AG Antigua and Barbuda 13525.4449
## 3422 AG Antigua and Barbuda 13986.8409
## 3423 AG Antigua and Barbuda 15401.9686
## 3424 AG Antigua and Barbuda 17771.1932
## 3425 AG Antigua and Barbuda 18062.4657
## 3426 AG Antigua and Barbuda 16785.7470
## 3427 AG Antigua and Barbuda 15122.1856
## 3428 AG Antigua and Barbuda 14399.8207
## 3429 AG Antigua and Barbuda 13792.5009
## 3430 AG Antigua and Barbuda 13170.6260
## 3431 AG Antigua and Barbuda 13220.0448
## 3432 AG Antigua and Barbuda 14069.5148
## 3433 AG Antigua and Barbuda 13484.1865
## 3434 AG Antigua and Barbuda 13260.4943
## 3435 AG Antigua and Barbuda 12928.4418
## 3436 AG Antigua and Barbuda 12525.1679
## 3437 AG Antigua and Barbuda 12006.5186
## 3438 AG Antigua and Barbuda 12828.6104
## 3439 AG Antigua and Barbuda 12286.0333
## 3440 AG Antigua and Barbuda 11908.4932
## 3441 AG Antigua and Barbuda 11975.7403
## 3442 AG Antigua and Barbuda 11876.1994
## 3443 AG Antigua and Barbuda 11626.7788
## 3444 AG Antigua and Barbuda 11091.1203
## 3445 AG Antigua and Barbuda 10549.2467
## 3446 AG Antigua and Barbuda 9887.0879
## 3447 AG Antigua and Barbuda 8863.3849
## 3448 AG Antigua and Barbuda 8234.1286
## 3449 AG Antigua and Barbuda 7474.9651
## 3450 AG Antigua and Barbuda 7094.3045
## 3451 AG Antigua and Barbuda 7099.2353
## 3452 AG Antigua and Barbuda 6830.3986
## 3453 AG Antigua and Barbuda 6306.1351
## 3454 AG Antigua and Barbuda 5826.2412
## 3455 AG Antigua and Barbuda 5570.4320
## 3456 AG Antigua and Barbuda NA
## 3457 AG Antigua and Barbuda NA
## 3458 AG Antigua and Barbuda NA
## 3459 AG Antigua and Barbuda NA
## 3460 AG Antigua and Barbuda NA
## 3461 AG Antigua and Barbuda NA
## 3462 AG Antigua and Barbuda NA
## 3463 AG Antigua and Barbuda NA
## 3464 AG Antigua and Barbuda NA
## 3465 AG Antigua and Barbuda NA
## 3466 AG Antigua and Barbuda NA
## 3467 AG Antigua and Barbuda NA
## 3468 AG Antigua and Barbuda NA
## 3469 AG Antigua and Barbuda NA
## 3470 AG Antigua and Barbuda NA
## 3471 AG Antigua and Barbuda NA
## 3472 AG Antigua and Barbuda NA
## 3473 AR Argentina 12390.8087
## 3474 AR Argentina 11344.4057
## 3475 AR Argentina 12712.9707
## 3476 AR Argentina 13105.3972
## 3477 AR Argentina 13595.0374
## 3478 AR Argentina 13360.2118
## 3479 AR Argentina 13789.0604
## 3480 AR Argentina 13567.9484
## 3481 AR Argentina 14071.5087
## 3482 AR Argentina 13895.6337
## 3483 AR Argentina 14200.2699
## 3484 AR Argentina 13551.3392
## 3485 AR Argentina 12398.2836
## 3486 AR Argentina 13310.6237
## 3487 AR Argentina 12919.2354
## 3488 AR Argentina 11970.6554
## 3489 AR Argentina 11192.1796
## 3490 AR Argentina 10389.1513
## 3491 AR Argentina 9629.8441
## 3492 AR Argentina 8943.3080
## 3493 AR Argentina 10146.1068
## 3494 AR Argentina 10730.6082
## 3495 AR Argentina 10935.6446
## 3496 AR Argentina 11445.5649
## 3497 AR Argentina 11146.7210
## 3498 AR Argentina 10430.6825
## 3499 AR Argentina 10003.0917
## 3500 AR Argentina 10423.3789
## 3501 AR Argentina 9974.0044
## 3502 AR Argentina 9338.6995
## 3503 AR Argentina 8769.7504
## 3504 AR Argentina 8149.2406
## 3505 AR Argentina 8477.6729
## 3506 AR Argentina 9269.3558
## 3507 AR Argentina 9517.1086
## 3508 AR Argentina 9412.9948
## 3509 AR Argentina 9009.0017
## 3510 AR Argentina 9655.1836
## 3511 AR Argentina 9660.1921
## 3512 AR Argentina 9407.8746
## 3513 AR Argentina 9630.1152
## 3514 AR Argentina 10318.1830
## 3515 AR Argentina 10321.2391
## 3516 AR Argentina 9505.8562
## 3517 AR Argentina 10103.6274
## 3518 AR Argentina 9591.1720
## 3519 AR Argentina 9939.6966
## 3520 AR Argentina 10100.0685
## 3521 AR Argentina 9725.4670
## 3522 AR Argentina 9614.2379
## 3523 AR Argentina 9613.6769
## 3524 AR Argentina 9243.2566
## 3525 AR Argentina 9108.4969
## 3526 AR Argentina 8429.8689
## 3527 AR Argentina 8161.6021
## 3528 AR Argentina 8026.8762
## 3529 AR Argentina 8202.1125
## 3530 AR Argentina 7532.0045
## 3531 AR Argentina 6945.9571
## 3532 AR Argentina 7451.8034
## 3533 AR Argentina 7637.0667
## 3534 AR Argentina 7362.5341
## 3535 AM Armenia 4243.2379
## 3536 AM Armenia 4021.0463
## 3537 AM Armenia 4350.4662
## 3538 AM Armenia 4051.3850
## 3539 AM Armenia 3860.2181
## 3540 AM Armenia 3601.4697
## 3541 AM Armenia 3607.2893
## 3542 AM Armenia 3511.2251
## 3543 AM Armenia 3406.5361
## 3544 AM Armenia 3312.9800
## 3545 AM Armenia 3098.7423
## 3546 AM Armenia 2958.8390
## 3547 AM Armenia 2884.3395
## 3548 AM Armenia 3335.2442
## 3549 AM Armenia 3093.3693
## 3550 AM Armenia 2697.0190
## 3551 AM Armenia 2364.1759
## 3552 AM Armenia 2062.2032
## 3553 AM Armenia 1855.5968
## 3554 AM Armenia 1619.1122
## 3555 AM Armenia 1422.4767
## 3556 AM Armenia 1289.8843
## 3557 AM Armenia 1210.3624
## 3558 AM Armenia 1164.2822
## 3559 AM Armenia 1076.6250
## 3560 AM Armenia 1030.4639
## 3561 AM Armenia 958.5062
## 3562 AM Armenia 878.5302
## 3563 AM Armenia 813.8298
## 3564 AM Armenia 871.6972
## 3565 AM Armenia 1471.0862
## 3566 AM Armenia 1650.5106
## 3567 AM Armenia NA
## 3568 AM Armenia NA
## 3569 AM Armenia NA
## 3570 AM Armenia NA
## 3571 AM Armenia NA
## 3572 AM Armenia NA
## 3573 AM Armenia NA
## 3574 AM Armenia NA
## 3575 AM Armenia NA
## 3576 AM Armenia NA
## 3577 AM Armenia NA
## 3578 AM Armenia NA
## 3579 AM Armenia NA
## 3580 AM Armenia NA
## 3581 AM Armenia NA
## 3582 AM Armenia NA
## 3583 AM Armenia NA
## 3584 AM Armenia NA
## 3585 AM Armenia NA
## 3586 AM Armenia NA
## 3587 AM Armenia NA
## 3588 AM Armenia NA
## 3589 AM Armenia NA
## 3590 AM Armenia NA
## 3591 AM Armenia NA
## 3592 AM Armenia NA
## 3593 AM Armenia NA
## 3594 AM Armenia NA
## 3595 AM Armenia NA
## 3596 AM Armenia NA
## 3597 AW Aruba NA
## 3598 AW Aruba 23026.3329
## 3599 AW Aruba 29769.2939
## 3600 AW Aruba 30536.6672
## 3601 AW Aruba 30293.3515
## 3602 AW Aruba 28854.7133
## 3603 AW Aruba 28399.0501
## 3604 AW Aruba 27575.9303
## 3605 AW Aruba 27744.9321
## 3606 AW Aruba 26221.2595
## 3607 AW Aruba 26629.2995
## 3608 AW Aruba 25859.5109
## 3609 AW Aruba 26641.8166
## 3610 AW Aruba 30193.1098
## 3611 AW Aruba 29689.3416
## 3612 AW Aruba 28910.6607
## 3613 AW Aruba 28814.2916
## 3614 AW Aruba 29301.7636
## 3615 AW Aruba 27799.5774
## 3616 AW Aruba 28077.1931
## 3617 AW Aruba 28989.5852
## 3618 AW Aruba 28442.5161
## 3619 AW Aruba 26980.8907
## 3620 AW Aruba 27178.8908
## 3621 AW Aruba 27218.7610
## 3622 AW Aruba 26111.1313
## 3623 AW Aruba 26732.6236
## 3624 AW Aruba 27298.5555
## 3625 AW Aruba 26693.9204
## 3626 AW Aruba 26427.1629
## 3627 AW Aruba 26355.9613
## 3628 AW Aruba 25382.6194
## 3629 AW Aruba 24863.0671
## 3630 AW Aruba 22159.3018
## 3631 AW Aruba 18445.0562
## 3632 AW Aruba 15685.4677
## 3633 AW Aruba NA
## 3634 AW Aruba NA
## 3635 AW Aruba NA
## 3636 AW Aruba NA
## 3637 AW Aruba NA
## 3638 AW Aruba NA
## 3639 AW Aruba NA
## 3640 AW Aruba NA
## 3641 AW Aruba NA
## 3642 AW Aruba NA
## 3643 AW Aruba NA
## 3644 AW Aruba NA
## 3645 AW Aruba NA
## 3646 AW Aruba NA
## 3647 AW Aruba NA
## 3648 AW Aruba NA
## 3649 AW Aruba NA
## 3650 AW Aruba NA
## 3651 AW Aruba NA
## 3652 AW Aruba NA
## 3653 AW Aruba NA
## 3654 AW Aruba NA
## 3655 AW Aruba NA
## 3656 AW Aruba NA
## 3657 AW Aruba NA
## 3658 AW Aruba NA
## 3659 AU Australia 58780.3331
## 3660 AU Australia 58029.5155
## 3661 AU Australia 58781.0467
## 3662 AU Australia 58447.2527
## 3663 AU Australia 57695.5713
## 3664 AU Australia 57358.7828
## 3665 AU Australia 56707.0221
## 3666 AU Australia 56305.9791
## 3667 AU Australia 55723.9482
## 3668 AU Australia 55254.6062
## 3669 AU Australia 54108.1111
## 3670 AU Australia 53542.8337
## 3671 AU Australia 53225.9510
## 3672 AU Australia 53338.6028
## 3673 AU Australia 52538.9756
## 3674 AU Australia 50948.2250
## 3675 AU Australia 50332.8748
## 3676 AU Australia 49439.1223
## 3677 AU Australia 47997.1371
## 3678 AU Australia 47127.2781
## 3679 AU Australia 45864.7680
## 3680 AU Australia 45558.7531
## 3681 AU Australia 44369.2728
## 3682 AU Australia 42767.7940
## 3683 AU Australia 41309.8260
## 3684 AU Australia 40203.3023
## 3685 AU Australia 39223.1608
## 3686 AU Australia 38234.0299
## 3687 AU Australia 37161.6791
## 3688 AU Australia 36072.0398
## 3689 AU Australia 36361.9423
## 3690 AU Australia 36974.4509
## 3691 AU Australia 36231.0162
## 3692 AU Australia 35478.4268
## 3693 AU Australia 34104.8306
## 3694 AU Australia 33767.1612
## 3695 AU Australia 32995.1381
## 3696 AU Australia 31780.2585
## 3697 AU Australia 30729.8076
## 3698 AU Australia 31823.6227
## 3699 AU Australia 31318.0837
## 3700 AU Australia 30790.9685
## 3701 AU Australia 30250.3701
## 3702 AU Australia 29388.5744
## 3703 AU Australia 29468.8425
## 3704 AU Australia 28769.1030
## 3705 AU Australia 28325.0161
## 3706 AU Australia 28297.9448
## 3707 AU Australia 27878.8169
## 3708 AU Australia 27585.7828
## 3709 AU Australia 27040.5103
## 3710 AU Australia 26894.5065
## 3711 AU Australia 25593.1264
## 3712 AU Australia 24414.7801
## 3713 AU Australia 23644.6005
## 3714 AU Australia 22525.0520
## 3715 AU Australia 22509.0974
## 3716 AU Australia 21659.1521
## 3717 AU Australia 20647.4859
## 3718 AU Australia 19815.7496
## 3719 AU Australia 20045.8437
## 3720 AU Australia 19953.2063
## 3721 AT Austria 45090.7589
## 3722 AT Austria 43346.4318
## 3723 AT Austria 46669.7512
## 3724 AT Austria 46188.9665
## 3725 AT Austria 45281.7234
## 3726 AT Austria 44590.2516
## 3727 AT Austria 44195.8176
## 3728 AT Austria 44245.1687
## 3729 AT Austria 44299.3782
## 3730 AT Austria 44549.8817
## 3731 AT Austria 44451.0002
## 3732 AT Austria 43334.5090
## 3733 AT Austria 42655.1921
## 3734 AT Austria 44440.0559
## 3735 AT Austria 43937.7129
## 3736 AT Austria 42496.3511
## 3737 AT Austria 41281.2708
## 3738 AT Austria 40651.2266
## 3739 AT Austria 39815.2220
## 3740 AT Austria 39636.4826
## 3741 AT Austria 39184.8086
## 3742 AT Austria 38842.8905
## 3743 AT Austria 37664.9433
## 3744 AT Austria 36442.2882
## 3745 AT Austria 35220.8877
## 3746 AT Austria 34537.7396
## 3747 AT Austria 33790.4850
## 3748 AT Austria 32962.8174
## 3749 AT Austria 32313.7119
## 3750 AT Austria 32410.5398
## 3751 AT Austria 32097.2411
## 3752 AT Austria 31340.6813
## 3753 AT Austria 30265.1932
## 3754 AT Austria 29264.3236
## 3755 AT Austria 28370.7179
## 3756 AT Austria 28008.5546
## 3757 AT Austria 27395.8726
## 3758 AT Austria 26740.5772
## 3759 AT Austria 26725.1907
## 3760 AT Austria 25911.6609
## 3761 AT Austria 25419.0096
## 3762 AT Austria 25520.7406
## 3763 AT Austria 25086.4002
## 3764 AT Austria 23770.3662
## 3765 AT Austria 23801.2675
## 3766 AT Austria 22659.3178
## 3767 AT Austria 21629.0463
## 3768 AT Austria 21650.4868
## 3769 AT Austria 20864.8475
## 3770 AT Austria 20002.5561
## 3771 AT Austria 18943.1811
## 3772 AT Austria 18101.9919
## 3773 AT Austria 17085.3300
## 3774 AT Austria 16132.0095
## 3775 AT Austria 15521.8096
## 3776 AT Austria 15181.5888
## 3777 AT Austria 14471.8213
## 3778 AT Austria 14076.2762
## 3779 AT Austria 13352.6511
## 3780 AT Austria 12904.6699
## 3781 AT Austria 12648.9747
## 3782 AT Austria 12051.1512
## 3783 AZ Azerbaijan 5340.4904
## 3784 AZ Azerbaijan 5083.3816
## 3785 AZ Azerbaijan 5348.2653
## 3786 AZ Azerbaijan 5262.1838
## 3787 AZ Azerbaijan 5229.5261
## 3788 AZ Azerbaijan 5270.5530
## 3789 AZ Azerbaijan 5500.3104
## 3790 AZ Azerbaijan 5505.9882
## 3791 AZ Azerbaijan 5425.9053
## 3792 AZ Azerbaijan 5194.7384
## 3793 AZ Azerbaijan 5152.6575
## 3794 AZ Azerbaijan 5215.0209
## 3795 AZ Azerbaijan 5023.7908
## 3796 AZ Azerbaijan 4692.9122
## 3797 AZ Azerbaijan 4326.9616
## 3798 AZ Azerbaijan 3501.0418
## 3799 AZ Azerbaijan 2631.7590
## 3800 AZ Azerbaijan 2077.8123
## 3801 AZ Azerbaijan 1918.5436
## 3802 AZ Azerbaijan 1754.0736
## 3803 AZ Azerbaijan 1614.7921
## 3804 AZ Azerbaijan 1480.7567
## 3805 AZ Azerbaijan 1343.8087
## 3806 AZ Azerbaijan 1262.2475
## 3807 AZ Azerbaijan 1158.4410
## 3808 AZ Azerbaijan 1105.5484
## 3809 AZ Azerbaijan 1102.4592
## 3810 AZ Azerbaijan 1264.4828
## 3811 AZ Azerbaijan 1596.0766
## 3812 AZ Azerbaijan 2107.2227
## 3813 AZ Azerbaijan 2763.9769
## 3814 AZ Azerbaijan 2820.7410
## 3815 AZ Azerbaijan NA
## 3816 AZ Azerbaijan NA
## 3817 AZ Azerbaijan NA
## 3818 AZ Azerbaijan NA
## 3819 AZ Azerbaijan NA
## 3820 AZ Azerbaijan NA
## 3821 AZ Azerbaijan NA
## 3822 AZ Azerbaijan NA
## 3823 AZ Azerbaijan NA
## 3824 AZ Azerbaijan NA
## 3825 AZ Azerbaijan NA
## 3826 AZ Azerbaijan NA
## 3827 AZ Azerbaijan NA
## 3828 AZ Azerbaijan NA
## 3829 AZ Azerbaijan NA
## 3830 AZ Azerbaijan NA
## 3831 AZ Azerbaijan NA
## 3832 AZ Azerbaijan NA
## 3833 AZ Azerbaijan NA
## 3834 AZ Azerbaijan NA
## 3835 AZ Azerbaijan NA
## 3836 AZ Azerbaijan NA
## 3837 AZ Azerbaijan NA
## 3838 AZ Azerbaijan NA
## 3839 AZ Azerbaijan NA
## 3840 AZ Azerbaijan NA
## 3841 AZ Azerbaijan NA
## 3842 AZ Azerbaijan NA
## 3843 AZ Azerbaijan NA
## 3844 AZ Azerbaijan NA
## 3845 BS Bahamas, The 27445.1408
## 3846 BS Bahamas, The 24359.0036
## 3847 BS Bahamas, The 32285.5424
## 3848 BS Bahamas, The 32001.1557
## 3849 BS Bahamas, The 31745.6450
## 3850 BS Bahamas, The 31117.8857
## 3851 BS Bahamas, The 31699.3586
## 3852 BS Bahamas, The 31689.2478
## 3853 BS Bahamas, The 31407.9349
## 3854 BS Bahamas, The 32652.2081
## 3855 BS Bahamas, The 32026.6263
## 3856 BS Bahamas, The 32248.1300
## 3857 BS Bahamas, The 32244.2966
## 3858 BS Bahamas, The 34229.0539
## 3859 BS Bahamas, The 35696.9205
## 3860 BS Bahamas, The 35863.3661
## 3861 BS Bahamas, The 35648.8530
## 3862 BS Bahamas, The 35122.0730
## 3863 BS Bahamas, The 35456.2898
## 3864 BS Bahamas, The 36548.3894
## 3865 BS Bahamas, The 36178.4613
## 3866 BS Bahamas, The 35793.9117
## 3867 BS Bahamas, The 34833.2935
## 3868 BS Bahamas, The 31416.3742
## 3869 BS Bahamas, The 33268.5450
## 3870 BS Bahamas, The 31499.0727
## 3871 BS Bahamas, The 30632.6214
## 3872 BS Bahamas, The 29808.2328
## 3873 BS Bahamas, The 29408.2737
## 3874 BS Bahamas, The 29873.1414
## 3875 BS Bahamas, The 31658.9511
## 3876 BS Bahamas, The 33657.0237
## 3877 BS Bahamas, The 34812.8973
## 3878 BS Bahamas, The 33183.6451
## 3879 BS Bahamas, The 32992.6219
## 3880 BS Bahamas, The 32605.4554
## 3881 BS Bahamas, The 32636.2613
## 3882 BS Bahamas, The 31764.6310
## 3883 BS Bahamas, The 28417.4513
## 3884 BS Bahamas, The 28042.8252
## 3885 BS Bahamas, The 26875.5435
## 3886 BS Bahamas, The 30272.5096
## 3887 BS Bahamas, The 29060.6614
## 3888 BS Bahamas, The 23554.1310
## 3889 BS Bahamas, The 21087.6653
## 3890 BS Bahamas, The 19739.3474
## 3891 BS Bahamas, The 19164.4666
## 3892 BS Bahamas, The 22954.8992
## 3893 BS Bahamas, The 28119.6085
## 3894 BS Bahamas, The 26678.6834
## 3895 BS Bahamas, The 28276.5296
## 3896 BS Bahamas, The 28566.1574
## 3897 BS Bahamas, The 31218.7235
## 3898 BS Bahamas, The 29660.0685
## 3899 BS Bahamas, The 28436.4900
## 3900 BS Bahamas, The 27052.1940
## 3901 BS Bahamas, The 25921.4976
## 3902 BS Bahamas, The 24589.9026
## 3903 BS Bahamas, The 23365.2899
## 3904 BS Bahamas, The 22231.2435
## 3905 BS Bahamas, The 21171.8460
## 3906 BS Bahamas, The 20106.9500
## 3907 BH Bahrain 19446.6843
## 3908 BH Bahrain 19545.5786
## 3909 BH Bahrain 21317.3365
## 3910 BH Bahrain 21818.7423
## 3911 BH Bahrain 22445.4526
## 3912 BH Bahrain 22552.6846
## 3913 BH Bahrain 22634.0856
## 3914 BH Bahrain 22676.6259
## 3915 BH Bahrain 22078.9905
## 3916 BH Bahrain 21187.5419
## 3917 BH Bahrain 20774.2449
## 3918 BH Bahrain 20982.3405
## 3919 BH Bahrain 21057.4208
## 3920 BH Bahrain 21833.4120
## 3921 BH Bahrain 22111.6801
## 3922 BH Bahrain 22069.2804
## 3923 BH Bahrain 22343.5374
## 3924 BH Bahrain 22422.6899
## 3925 BH Bahrain 22335.9324
## 3926 BH Bahrain 22258.1949
## 3927 BH Bahrain 22697.6169
## 3928 BH Bahrain 23243.5909
## 3929 BH Bahrain 23047.0707
## 3930 BH Bahrain 22919.3940
## 3931 BH Bahrain 22561.7924
## 3932 BH Bahrain 22500.0710
## 3933 BH Bahrain 22185.4956
## 3934 BH Bahrain 21894.5445
## 3935 BH Bahrain 22497.0364
## 3936 BH Bahrain 20432.1239
## 3937 BH Bahrain 19651.3379
## 3938 BH Bahrain 18160.1694
## 3939 BH Bahrain 17925.0720
## 3940 BH Bahrain 18469.8463
## 3941 BH Bahrain 17885.0193
## 3942 BH Bahrain 16779.7366
## 3943 BH Bahrain 17139.0701
## 3944 BH Bahrain 18534.2249
## 3945 BH Bahrain 18131.0725
## 3946 BH Bahrain 17507.8734
## 3947 BH Bahrain 19537.9587
## 3948 BH Bahrain 21450.5528
## 3949 BH Bahrain NA
## 3950 BH Bahrain NA
## 3951 BH Bahrain NA
## 3952 BH Bahrain NA
## 3953 BH Bahrain NA
## 3954 BH Bahrain NA
## 3955 BH Bahrain NA
## 3956 BH Bahrain NA
## 3957 BH Bahrain NA
## 3958 BH Bahrain NA
## 3959 BH Bahrain NA
## 3960 BH Bahrain NA
## 3961 BH Bahrain NA
## 3962 BH Bahrain NA
## 3963 BH Bahrain NA
## 3964 BH Bahrain NA
## 3965 BH Bahrain NA
## 3966 BH Bahrain NA
## 3967 BH Bahrain NA
## 3968 BH Bahrain NA
## 3969 BD Bangladesh 1715.3548
## 3970 BD Bangladesh 1619.7759
## 3971 BD Bangladesh 1581.5675
## 3972 BD Bangladesh 1481.1834
## 3973 BD Bangladesh 1394.7814
## 3974 BD Bangladesh 1322.6948
## 3975 BD Bangladesh 1248.4533
## 3976 BD Bangladesh 1184.8633
## 3977 BD Bangladesh 1129.9935
## 3978 BD Bangladesh 1078.2875
## 3979 BD Bangladesh 1024.0220
## 3980 BD Bangladesh 972.9097
## 3981 BD Bangladesh 931.9865
## 3982 BD Bangladesh 897.1890
## 3983 BD Bangladesh 856.0459
## 3984 BD Bangladesh 809.4736
## 3985 BD Bangladesh 769.1360
## 3986 BD Bangladesh 732.7488
## 3987 BD Bangladesh 707.6051
## 3988 BD Bangladesh 687.3833
## 3989 BD Bangladesh 674.1670
## 3990 BD Bangladesh 653.8086
## 3991 BD Bangladesh 633.1827
## 3992 BD Bangladesh 617.2923
## 3993 BD Bangladesh 599.2275
## 3994 BD Bangladesh 585.7169
## 3995 BD Bangladesh 572.4385
## 3996 BD Bangladesh 556.2989
## 3997 BD Bangladesh 547.0514
## 3998 BD Bangladesh 533.8880
## 3999 BD Bangladesh 517.7637
## 4000 BD Bangladesh 512.0966
## 4001 BD Bangladesh 496.7616
## 4002 BD Bangladesh 495.4038
## 4003 BD Bangladesh 496.4329
## 4004 BD Bangladesh 491.1358
## 4005 BD Bangladesh 484.0480
## 4006 BD Bangladesh 480.8311
## 4007 BD Bangladesh 470.9053
## 4008 BD Bangladesh 465.2501
## 4009 BD Bangladesh 467.5867
## 4010 BD Bangladesh 447.6949
## 4011 BD Bangladesh 456.1454
## 4012 BD Bangladesh 447.2395
## 4013 BD Bangladesh 428.9870
## 4014 BD Bangladesh 428.3799
## 4015 BD Bangladesh 414.6048
## 4016 BD Bangladesh 440.6036
## 4017 BD Bangladesh 408.6063
## 4018 BD Bangladesh 401.4605
## 4019 BD Bangladesh 474.4632
## 4020 BD Bangladesh 512.1212
## 4021 BD Bangladesh 496.8835
## 4022 BD Bangladesh 505.0833
## 4023 BD Bangladesh 476.0313
## 4024 BD Bangladesh 501.0596
## 4025 BD Bangladesh 504.1547
## 4026 BD Bangladesh 511.3578
## 4027 BD Bangladesh 474.4725
## 4028 BD Bangladesh 490.2620
## 4029 BD Bangladesh 477.9952
## 4030 BD Bangladesh 463.3574
## 4031 BB Barbados 14512.7794
## 4032 BB Barbados 14329.1899
## 4033 BB Barbados 16678.5495
## 4034 BB Barbados 16803.2646
## 4035 BB Barbados 17002.0271
## 4036 BB Barbados 16950.3243
## 4037 BB Barbados 16558.8648
## 4038 BB Barbados 16187.7870
## 4039 BB Barbados 16232.1870
## 4040 BB Barbados 16505.1853
## 4041 BB Barbados 16618.5592
## 4042 BB Barbados 16784.4206
## 4043 BB Barbados 17253.6389
## 4044 BB Barbados 18240.4529
## 4045 BB Barbados 18205.4033
## 4046 BB Barbados 17913.6595
## 4047 BB Barbados 16952.2925
## 4048 BB Barbados 16368.6955
## 4049 BB Barbados 16196.8644
## 4050 BB Barbados 15904.6494
## 4051 BB Barbados 15834.1936
## 4052 BB Barbados 16276.5366
## 4053 BB Barbados 15644.3548
## 4054 BB Barbados 15657.0712
## 4055 BB Barbados 15159.0684
## 4056 BB Barbados 14534.5992
## 4057 BB Barbados 14036.1339
## 4058 BB Barbados 13814.1896
## 4059 BB Barbados 13594.4438
## 4060 BB Barbados 13537.7062
## 4061 BB Barbados 14408.4618
## 4062 BB Barbados 15049.4351
## 4063 BB Barbados 15622.4318
## 4064 BB Barbados 15137.2723
## 4065 BB Barbados 14678.9247
## 4066 BB Barbados 14358.0093
## 4067 BB Barbados 13706.4274
## 4068 BB Barbados 13598.2334
## 4069 BB Barbados 13161.8243
## 4070 BB Barbados 13132.9301
## 4071 BB Barbados 13852.3716
## 4072 BB Barbados 14171.4293
## 4073 BB Barbados 13633.9035
## 4074 BB Barbados 12694.4332
## 4075 BB Barbados 12165.8269
## 4076 BB Barbados 11802.1571
## 4077 BB Barbados 11374.5720
## 4078 BB Barbados 11666.6782
## 4079 BB Barbados NA
## 4080 BB Barbados NA
## 4081 BB Barbados NA
## 4082 BB Barbados NA
## 4083 BB Barbados NA
## 4084 BB Barbados NA
## 4085 BB Barbados NA
## 4086 BB Barbados NA
## 4087 BB Barbados NA
## 4088 BB Barbados NA
## 4089 BB Barbados NA
## 4090 BB Barbados NA
## 4091 BB Barbados NA
## 4092 BB Barbados NA
## 4093 BY Belarus 6418.2376
## 4094 BY Belarus 6234.8243
## 4095 BY Belarus 6264.8610
## 4096 BY Belarus 6165.9093
## 4097 BY Belarus 5964.8929
## 4098 BY Belarus 5811.1979
## 4099 BY Belarus 5967.0522
## 4100 BY Belarus 6212.9128
## 4101 BY Belarus 6110.9047
## 4102 BY Belarus 6047.8711
## 4103 BY Belarus 5938.2207
## 4104 BY Belarus 5621.9372
## 4105 BY Belarus 5203.8549
## 4106 BY Belarus 5180.7123
## 4107 BY Belarus 4684.9803
## 4108 BY Belarus 4294.2287
## 4109 BY Belarus 3880.0144
## 4110 BY Belarus 3522.4899
## 4111 BY Belarus 3139.1210
## 4112 BY Belarus 2912.1234
## 4113 BY Belarus 2754.6645
## 4114 BY Belarus 2616.9130
## 4115 BY Belarus 2461.8269
## 4116 BY Belarus 2370.1865
## 4117 BY Belarus 2176.6924
## 4118 BY Belarus 1945.8389
## 4119 BY Belarus 1886.4774
## 4120 BY Belarus 2098.6243
## 4121 BY Belarus 2373.8905
## 4122 BY Belarus 2574.8239
## 4123 BY Belarus 2854.5208
## 4124 BY Belarus 2890.5242
## 4125 BY Belarus NA
## 4126 BY Belarus NA
## 4127 BY Belarus NA
## 4128 BY Belarus NA
## 4129 BY Belarus NA
## 4130 BY Belarus NA
## 4131 BY Belarus NA
## 4132 BY Belarus NA
## 4133 BY Belarus NA
## 4134 BY Belarus NA
## 4135 BY Belarus NA
## 4136 BY Belarus NA
## 4137 BY Belarus NA
## 4138 BY Belarus NA
## 4139 BY Belarus NA
## 4140 BY Belarus NA
## 4141 BY Belarus NA
## 4142 BY Belarus NA
## 4143 BY Belarus NA
## 4144 BY Belarus NA
## 4145 BY Belarus NA
## 4146 BY Belarus NA
## 4147 BY Belarus NA
## 4148 BY Belarus NA
## 4149 BY Belarus NA
## 4150 BY Belarus NA
## 4151 BY Belarus NA
## 4152 BY Belarus NA
## 4153 BY Belarus NA
## 4154 BY Belarus NA
## 4155 BE Belgium 42787.2952
## 4156 BE Belgium 40424.6388
## 4157 BE Belgium 43065.5151
## 4158 BE Belgium 42403.5336
## 4159 BE Belgium 41825.7628
## 4160 BE Belgium 41318.0196
## 4161 BE Belgium 41008.2967
## 4162 BE Belgium 40421.4208
## 4163 BE Belgium 39970.3175
## 4164 BE Belgium 39975.5736
## 4165 BE Belgium 39929.0951
## 4166 BE Belgium 39777.9253
## 4167 BE Belgium 39025.2208
## 4168 BE Belgium 40151.8499
## 4169 BE Belgium 40290.2278
## 4170 BE Belgium 39147.7636
## 4171 BE Belgium 38426.0519
## 4172 BE Belgium 37761.2813
## 4173 BE Belgium 36617.3804
## 4174 BE Belgium 36393.2418
## 4175 BE Belgium 35943.2380
## 4176 BE Belgium 35674.7913
## 4177 BE Belgium 34479.9064
## 4178 BE Belgium 33376.5748
## 4179 BE Belgium 32804.3605
## 4180 BE Belgium 31681.9364
## 4181 BE Belgium 31329.8921
## 4182 BE Belgium 30664.3079
## 4183 BE Belgium 29797.4063
## 4184 BE Belgium 30204.5638
## 4185 BE Belgium 29870.1478
## 4186 BE Belgium 29441.6621
## 4187 BE Belgium 28631.3191
## 4188 BE Belgium 27772.0520
## 4189 BE Belgium 26603.9281
## 4190 BE Belgium 26026.2805
## 4191 BE Belgium 25569.4893
## 4192 BE Belgium 25161.4910
## 4193 BE Belgium 24555.4810
## 4194 BE Belgium 24477.1999
## 4195 BE Belgium 24325.8133
## 4196 BE Belgium 24393.2982
## 4197 BE Belgium 23381.1272
## 4198 BE Belgium 22866.8232
## 4199 BE Belgium 22255.6844
## 4200 BE Belgium 22144.5236
## 4201 BE Belgium 20997.2068
## 4202 BE Belgium 21480.2613
## 4203 BE Belgium 20607.1809
## 4204 BE Belgium 19432.0310
## 4205 BE Belgium 18527.1487
## 4206 BE Belgium 17849.4947
## 4207 BE Belgium 16922.3544
## 4208 BE Belgium 15915.1957
## 4209 BE Belgium 15334.7679
## 4210 BE Belgium 14846.0973
## 4211 BE Belgium 14489.4451
## 4212 BE Belgium 14118.9023
## 4213 BE Belgium 13326.1133
## 4214 BE Belgium 12866.2288
## 4215 BE Belgium 12277.6347
## 4216 BE Belgium 11734.3062
## 4217 BZ Belize 4151.2104
## 4218 BZ Belize 3851.6982
## 4219 BZ Belize 4712.8401
## 4220 BZ Belize 4709.8559
## 4221 BZ Belize 4705.0966
## 4222 BZ Belize 4699.2724
## 4223 BZ Belize 4805.1969
## 4224 BZ Belize 4769.9140
## 4225 BZ Belize 4667.1792
## 4226 BZ Belize 4733.5467
## 4227 BZ Belize 4729.9901
## 4228 BZ Belize 4767.5293
## 4229 BZ Belize 4728.5675
## 4230 BZ Belize 4834.7901
## 4231 BZ Belize 4827.7500
## 4232 BZ Belize 4898.0933
## 4233 BZ Belize 4809.0534
## 4234 BZ Belize 4829.5450
## 4235 BZ Belize 4736.3473
## 4236 BZ Belize 4448.1690
## 4237 BZ Belize 4352.8694
## 4238 BZ Belize 4275.2734
## 4239 BZ Belize 3914.6429
## 4240 BZ Belize 3735.1801
## 4241 BZ Belize 3741.4354
## 4242 BZ Belize 3747.2107
## 4243 BZ Belize 3813.9772
## 4244 BZ Belize 3888.8218
## 4245 BZ Belize 3962.3183
## 4246 BZ Belize 3791.6697
## 4247 BZ Belize 3440.0941
## 4248 BZ Belize 3145.2250
## 4249 BZ Belize 2885.0697
## 4250 BZ Belize 2616.3813
## 4251 BZ Belize 2447.2398
## 4252 BZ Belize 2272.0797
## 4253 BZ Belize 2234.7129
## 4254 BZ Belize 2275.4643
## 4255 BZ Belize 2296.2025
## 4256 BZ Belize 2413.6250
## 4257 BZ Belize 2480.3123
## 4258 BZ Belize 2510.8663
## 4259 BZ Belize 2257.9395
## 4260 BZ Belize 2135.2400
## 4261 BZ Belize 2007.1939
## 4262 BZ Belize 1910.5083
## 4263 BZ Belize 1938.1055
## 4264 BZ Belize 1898.8004
## 4265 BZ Belize 1698.0751
## 4266 BZ Belize 1638.9651
## 4267 BZ Belize 1515.1025
## 4268 BZ Belize 1488.5414
## 4269 BZ Belize 1454.9716
## 4270 BZ Belize 1422.4983
## 4271 BZ Belize 1364.3645
## 4272 BZ Belize 1340.4192
## 4273 BZ Belize 1318.2986
## 4274 BZ Belize 1293.5436
## 4275 BZ Belize 1267.6645
## 4276 BZ Belize 1242.1898
## 4277 BZ Belize 1217.9128
## 4278 BZ Belize 1194.3015
## 4279 BJ Benin 1260.7346
## 4280 BJ Benin 1214.6596
## 4281 BJ Benin 1201.5614
## 4282 BJ Benin 1155.3132
## 4283 BJ Benin 1112.8171
## 4284 BJ Benin 1082.4513
## 4285 BJ Benin 1076.7967
## 4286 BJ Benin 1087.7200
## 4287 BJ Benin 1051.5519
## 4288 BJ Benin 1008.7663
## 4289 BJ Benin 989.7674
## 4290 BJ Benin 988.6108
## 4291 BJ Benin 995.6942
## 4292 BJ Benin 1000.8515
## 4293 BJ Benin 981.4557
## 4294 BJ Benin 952.8312
## 4295 BJ Benin 943.6293
## 4296 BJ Benin 955.5342
## 4297 BJ Benin 942.9186
## 4298 BJ Benin 939.6617
## 4299 BJ Benin 925.7161
## 4300 BJ Benin 905.8263
## 4301 BJ Benin 881.6194
## 4302 BJ Benin 861.9871
## 4303 BJ Benin 854.0429
## 4304 BJ Benin 832.5564
## 4305 BJ Benin 823.5493
## 4306 BJ Benin 802.6062
## 4307 BJ Benin 814.1313
## 4308 BJ Benin 796.6429
## 4309 BJ Benin 801.1509
## 4310 BJ Benin 795.0717
## 4311 BJ Benin 753.5700
## 4312 BJ Benin 800.1418
## 4313 BJ Benin 797.2660
## 4314 BJ Benin 833.4363
## 4315 BJ Benin 839.7489
## 4316 BJ Benin 803.8021
## 4317 BJ Benin 766.2911
## 4318 BJ Benin 824.0122
## 4319 BJ Benin 828.6980
## 4320 BJ Benin 774.5521
## 4321 BJ Benin 745.1334
## 4322 BJ Benin 718.1942
## 4323 BJ Benin 727.9854
## 4324 BJ Benin 711.3009
## 4325 BJ Benin 722.7728
## 4326 BJ Benin 778.5152
## 4327 BJ Benin 771.1977
## 4328 BJ Benin 760.7693
## 4329 BJ Benin 730.9189
## 4330 BJ Benin 758.3926
## 4331 BJ Benin 758.8828
## 4332 BJ Benin 753.2653
## 4333 BJ Benin 740.3185
## 4334 BJ Benin 746.9336
## 4335 BJ Benin 734.7887
## 4336 BJ Benin 710.3672
## 4337 BJ Benin 677.3573
## 4338 BJ Benin 657.0928
## 4339 BJ Benin 690.6246
## 4340 BJ Benin 679.0217
## 4341 BM Bermuda 101617.5573
## 4342 BM Bermuda 99728.6431
## 4343 BM Bermuda 107036.2393
## 4344 BM Bermuda 106697.7375
## 4345 BM Bermuda 107237.0318
## 4346 BM Bermuda 102407.3944
## 4347 BM Bermuda 102005.6256
## 4348 BM Bermuda 101374.4698
## 4349 BM Bermuda 105492.4807
## 4350 BM Bermuda 106119.7950
## 4351 BM Bermuda 112471.3475
## 4352 BM Bermuda 115839.7960
## 4353 BM Bermuda 117886.7380
## 4354 BM Bermuda 125610.0334
## 4355 BM Bermuda 128757.8807
## 4356 BM Bermuda 125294.9594
## 4357 BM Bermuda 119396.4494
## 4358 BM Bermuda 118193.1487
## 4359 BM Bermuda 116268.8169
## 4360 BM Bermuda 113172.1206
## 4361 BM Bermuda 115619.4747
## 4362 BM Bermuda 109001.5860
## 4363 BM Bermuda 100602.9275
## 4364 BM Bermuda 97857.3233
## 4365 BM Bermuda 94878.4922
## 4366 BM Bermuda 91261.1515
## 4367 BM Bermuda 89518.2776
## 4368 BM Bermuda 86361.9528
## 4369 BM Bermuda 86444.6782
## 4370 BM Bermuda 84371.0357
## 4371 BM Bermuda 83812.1328
## 4372 BM Bermuda 86436.2343
## 4373 BM Bermuda 87131.9494
## 4374 BM Bermuda 87481.3788
## 4375 BM Bermuda 84794.9969
## 4376 BM Bermuda 82395.2732
## 4377 BM Bermuda 77902.6542
## 4378 BM Bermuda 80164.5663
## 4379 BM Bermuda 80483.7350
## 4380 BM Bermuda 79583.1340
## 4381 BM Bermuda 84633.1605
## 4382 BM Bermuda 83239.5346
## 4383 BM Bermuda 78360.6870
## 4384 BM Bermuda 76999.1578
## 4385 BM Bermuda 76180.8013
## 4386 BM Bermuda 72208.7316
## 4387 BM Bermuda 66534.0406
## 4388 BM Bermuda 63637.7154
## 4389 BM Bermuda 62615.3153
## 4390 BM Bermuda 61244.5370
## 4391 BM Bermuda 59713.4403
## 4392 BM Bermuda 57309.1584
## 4393 BM Bermuda 54904.6943
## 4394 BM Bermuda 54082.1391
## 4395 BM Bermuda 53985.6405
## 4396 BM Bermuda 48593.3905
## 4397 BM Bermuda 43253.5439
## 4398 BM Bermuda 42301.4324
## 4399 BM Bermuda 39029.4477
## 4400 BM Bermuda 39527.7963
## 4401 BM Bermuda 38751.2332
## 4402 BM Bermuda 37935.8868
## 4403 BT Bhutan NA
## 4404 BT Bhutan 2879.6386
## 4405 BT Bhutan 3238.0605
## 4406 BT Bhutan 3097.1484
## 4407 BT Bhutan 3040.9370
## 4408 BT Bhutan 2940.7000
## 4409 BT Bhutan 2752.6302
## 4410 BT Bhutan 2612.8863
## 4411 BT Bhutan 2500.8645
## 4412 BT Bhutan 2479.1517
## 4413 BT Bhutan 2386.6211
## 4414 BT Bhutan 2235.3227
## 4415 BT Bhutan 2017.9035
## 4416 BT Bhutan 1909.2459
## 4417 BT Bhutan 1840.2716
## 4418 BT Bhutan 1572.4621
## 4419 BT Bhutan 1489.2118
## 4420 BT Bhutan 1409.6480
## 4421 BT Bhutan 1352.9790
## 4422 BT Bhutan 1278.8778
## 4423 BT Bhutan 1175.8568
## 4424 BT Bhutan 1108.4398
## 4425 BT Bhutan 1096.8215
## 4426 BT Bhutan 1040.0369
## 4427 BT Bhutan 1004.5050
## 4428 BT Bhutan 971.3088
## 4429 BT Bhutan 931.8786
## 4430 BT Bhutan 874.7688
## 4431 BT Bhutan 832.4261
## 4432 BT Bhutan 813.2584
## 4433 BT Bhutan 777.3242
## 4434 BT Bhutan 786.1482
## 4435 BT Bhutan 723.9676
## 4436 BT Bhutan 691.0946
## 4437 BT Bhutan 679.9561
## 4438 BT Bhutan 544.0795
## 4439 BT Bhutan 503.6056
## 4440 BT Bhutan 497.8210
## 4441 BT Bhutan 488.7350
## 4442 BT Bhutan 453.8014
## 4443 BT Bhutan 450.0755
## 4444 BT Bhutan 401.7388
## 4445 BT Bhutan NA
## 4446 BT Bhutan NA
## 4447 BT Bhutan NA
## 4448 BT Bhutan NA
## 4449 BT Bhutan NA
## 4450 BT Bhutan NA
## 4451 BT Bhutan NA
## 4452 BT Bhutan NA
## 4453 BT Bhutan NA
## 4454 BT Bhutan NA
## 4455 BT Bhutan NA
## 4456 BT Bhutan NA
## 4457 BT Bhutan NA
## 4458 BT Bhutan NA
## 4459 BT Bhutan NA
## 4460 BT Bhutan NA
## 4461 BT Bhutan NA
## 4462 BT Bhutan NA
## 4463 BT Bhutan NA
## 4464 BT Bhutan NA
## 4465 BO Bolivia 3125.5291
## 4466 BO Bolivia 2986.0244
## 4467 BO Bolivia 3317.3709
## 4468 BO Bolivia 3291.1564
## 4469 BO Bolivia 3203.0044
## 4470 BO Bolivia 3118.9137
## 4471 BO Bolivia 3035.9717
## 4472 BO Bolivia 2939.4775
## 4473 BO Bolivia 2830.6735
## 4474 BO Bolivia 2692.6075
## 4475 BO Bolivia 2602.7185
## 4476 BO Bolivia 2514.4348
## 4477 BO Bolivia 2454.8003
## 4478 BO Bolivia 2414.9734
## 4479 BO Bolivia 2313.8912
## 4480 BO Bolivia 2251.2750
## 4481 BO Bolivia 2186.1867
## 4482 BO Bolivia 2131.3071
## 4483 BO Bolivia 2083.4219
## 4484 BO Bolivia 2066.2417
## 4485 BO Bolivia 2054.3309
## 4486 BO Bolivia 2059.1853
## 4487 BO Bolivia 2048.0265
## 4488 BO Bolivia 2079.6967
## 4489 BO Bolivia 2019.8516
## 4490 BO Bolivia 1963.6408
## 4491 BO Bolivia 1920.3180
## 4492 BO Bolivia 1872.7099
## 4493 BO Bolivia 1826.8656
## 4494 BO Bolivia 1789.2400
## 4495 BO Bolivia 1797.7802
## 4496 BO Bolivia 1744.3120
## 4497 BO Bolivia 1702.6792
## 4498 BO Bolivia 1675.6038
## 4499 BO Bolivia 1662.9779
## 4500 BO Bolivia 1657.3881
## 4501 BO Bolivia 1736.8716
## 4502 BO Bolivia 1803.0550
## 4503 BO Bolivia 1843.6233
## 4504 BO Bolivia 1960.4304
## 4505 BO Bolivia 2082.8125
## 4506 BO Bolivia 2120.7018
## 4507 BO Bolivia 2196.4573
## 4508 BO Bolivia 2241.7400
## 4509 BO Bolivia 2245.6781
## 4510 BO Bolivia 2187.3545
## 4511 BO Bolivia 2137.7110
## 4512 BO Bolivia 2036.5020
## 4513 BO Bolivia 2022.3205
## 4514 BO Bolivia 1954.8409
## 4515 BO Bolivia 1850.3531
## 4516 BO Bolivia 1799.5711
## 4517 BO Bolivia 1747.0329
## 4518 BO Bolivia 1707.9079
## 4519 BO Bolivia 1606.8997
## 4520 BO Bolivia 1543.0107
## 4521 BO Bolivia 1469.5908
## 4522 BO Bolivia 1429.4708
## 4523 BO Bolivia 1402.9152
## 4524 BO Bolivia 1339.9392
## 4525 BO Bolivia 1294.3351
## 4526 BO Bolivia 1292.8056
## 4527 BA Bosnia and Herzegovina 5854.6673
## 4528 BA Bosnia and Herzegovina 5437.5102
## 4529 BA Bosnia and Herzegovina 5578.2665
## 4530 BA Bosnia and Herzegovina 5387.2697
## 4531 BA Bosnia and Herzegovina 5150.2733
## 4532 BA Bosnia and Herzegovina 4940.7599
## 4533 BA Bosnia and Herzegovina 4729.6901
## 4534 BA Bosnia and Herzegovina 4518.4659
## 4535 BA Bosnia and Herzegovina 4390.6489
## 4536 BA Bosnia and Herzegovina 4215.6199
## 4537 BA Bosnia and Herzegovina 4185.3042
## 4538 BA Bosnia and Herzegovina 4095.9609
## 4539 BA Bosnia and Herzegovina 4027.6914
## 4540 BA Bosnia and Herzegovina 4132.1913
## 4541 BA Bosnia and Herzegovina 3909.9716
## 4542 BA Bosnia and Herzegovina 3691.0502
## 4543 BA Bosnia and Herzegovina 3501.5636
## 4544 BA Bosnia and Herzegovina 3371.2390
## 4545 BA Bosnia and Herzegovina 3172.3830
## 4546 BA Bosnia and Herzegovina 3056.5368
## 4547 BA Bosnia and Herzegovina 2913.2296
## 4548 BA Bosnia and Herzegovina 2847.5925
## 4549 BA Bosnia and Herzegovina 2530.5118
## 4550 BA Bosnia and Herzegovina 2314.4349
## 4551 BA Bosnia and Herzegovina 2001.1782
## 4552 BA Bosnia and Herzegovina 1477.8734
## 4553 BA Bosnia and Herzegovina 768.9175
## 4554 BA Bosnia and Herzegovina 619.1424
## 4555 BA Bosnia and Herzegovina NA
## 4556 BA Bosnia and Herzegovina NA
## 4557 BA Bosnia and Herzegovina NA
## 4558 BA Bosnia and Herzegovina NA
## 4559 BA Bosnia and Herzegovina NA
## 4560 BA Bosnia and Herzegovina NA
## 4561 BA Bosnia and Herzegovina NA
## 4562 BA Bosnia and Herzegovina NA
## 4563 BA Bosnia and Herzegovina NA
## 4564 BA Bosnia and Herzegovina NA
## 4565 BA Bosnia and Herzegovina NA
## 4566 BA Bosnia and Herzegovina NA
## 4567 BA Bosnia and Herzegovina NA
## 4568 BA Bosnia and Herzegovina NA
## 4569 BA Bosnia and Herzegovina NA
## 4570 BA Bosnia and Herzegovina NA
## 4571 BA Bosnia and Herzegovina NA
## 4572 BA Bosnia and Herzegovina NA
## 4573 BA Bosnia and Herzegovina NA
## 4574 BA Bosnia and Herzegovina NA
## 4575 BA Bosnia and Herzegovina NA
## 4576 BA Bosnia and Herzegovina NA
## 4577 BA Bosnia and Herzegovina NA
## 4578 BA Bosnia and Herzegovina NA
## 4579 BA Bosnia and Herzegovina NA
## 4580 BA Bosnia and Herzegovina NA
## 4581 BA Bosnia and Herzegovina NA
## 4582 BA Bosnia and Herzegovina NA
## 4583 BA Bosnia and Herzegovina NA
## 4584 BA Bosnia and Herzegovina NA
## 4585 BA Bosnia and Herzegovina NA
## 4586 BA Bosnia and Herzegovina NA
## 4587 BA Bosnia and Herzegovina NA
## 4588 BA Bosnia and Herzegovina NA
## 4589 BW Botswana 6887.7522
## 4590 BW Botswana 6304.8623
## 4591 BW Botswana 7051.3465
## 4592 BW Botswana 6973.0988
## 4593 BW Botswana 6855.1603
## 4594 BW Botswana 6729.0656
## 4595 BW Botswana 6402.9102
## 4596 BW Botswana 6895.5744
## 4597 BW Botswana 6704.5368
## 4598 BW Botswana 6089.3991
## 4599 BW Botswana 5899.4628
## 4600 BW Botswana 5642.2200
## 4601 BW Botswana 5286.5749
## 4602 BW Botswana 5837.7793
## 4603 BW Botswana 5612.3278
## 4604 BW Botswana 5294.9697
## 4605 BW Botswana 4986.3280
## 4606 BW Botswana 4859.6290
## 4607 BW Botswana 4816.5700
## 4608 BW Botswana 4683.9559
## 4609 BW Botswana 4494.9388
## 4610 BW Botswana 4569.2152
## 4611 BW Botswana 4572.1809
## 4612 BW Botswana 4260.2389
## 4613 BW Botswana 4338.9003
## 4614 BW Botswana 4100.4435
## 4615 BW Botswana 3968.3207
## 4616 BW Botswana 3798.4366
## 4617 BW Botswana 3757.0233
## 4618 BW Botswana 3782.5504
## 4619 BW Botswana 3778.4777
## 4620 BW Botswana 3624.3296
## 4621 BW Botswana 3509.7311
## 4622 BW Botswana 3219.2063
## 4623 BW Botswana 2800.4288
## 4624 BW Botswana 2602.0567
## 4625 BW Botswana 2498.4842
## 4626 BW Botswana 2418.5576
## 4627 BW Botswana 2307.1467
## 4628 BW Botswana 2109.5213
## 4629 BW Botswana 1946.3095
## 4630 BW Botswana 1849.2419
## 4631 BW Botswana 1713.8877
## 4632 BW Botswana 1588.0870
## 4633 BW Botswana 1444.4143
## 4634 BW Botswana 1340.6802
## 4635 BW Botswana 1258.4724
## 4636 BW Botswana 1203.7207
## 4637 BW Botswana 1146.1464
## 4638 BW Botswana 977.1685
## 4639 BW Botswana 798.1302
## 4640 BW Botswana 653.1700
## 4641 BW Botswana 572.6690
## 4642 BW Botswana 509.3981
## 4643 BW Botswana 470.8481
## 4644 BW Botswana 453.9485
## 4645 BW Botswana 435.9854
## 4646 BW Botswana 421.1496
## 4647 BW Botswana 403.1774
## 4648 BW Botswana 389.2984
## 4649 BW Botswana 372.8612
## 4650 BW Botswana 357.5632
## 4651 BR Brazil 8551.2053
## 4652 BR Brazil 8228.7743
## 4653 BR Brazil 8622.0666
## 4654 BR Brazil 8582.3386
## 4655 BR Brazil 8498.2939
## 4656 BR Brazil 8455.3123
## 4657 BR Brazil 8813.9898
## 4658 BR Brazil 9214.9772
## 4659 BR Brazil 9247.5734
## 4660 BR Brazil 9056.5804
## 4661 BR Brazil 8965.6206
## 4662 BR Brazil 8702.2553
## 4663 BR Brazil 8169.2624
## 4664 BR Brazil 8258.6159
## 4665 BR Brazil 7936.8244
## 4666 BR Brazil 7560.7020
## 4667 BR Brazil 7352.2826
## 4668 BR Brazil 7206.2618
## 4669 BR Brazil 6896.1372
## 4670 BR Brazil 6904.6253
## 4671 BR Brazil 6788.5766
## 4672 BR Brazil 6787.6690
## 4673 BR Brazil 6595.6161
## 4674 BR Brazil 6662.8534
## 4675 BR Brazil 6742.7117
## 4676 BR Brazil 6624.1004
## 4677 BR Brazil 6584.7392
## 4678 BR Brazil 6420.4074
## 4679 BR Brazil 6165.3169
## 4680 BR Brazil 5974.5901
## 4681 BR Brazil 6110.7191
## 4682 BR Brazil 6155.6454
## 4683 BR Brazil 6553.2380
## 4684 BR Brazil 6471.9527
## 4685 BR Brazil 6601.5891
## 4686 BR Brazil 6504.9757
## 4687 BR Brazil 6178.5239
## 4688 BR Brazil 5853.8973
## 4689 BR Brazil 5679.8974
## 4690 BR Brazil 5987.8205
## 4691 BR Brazil 6079.2440
## 4692 BR Brazil 6500.3878
## 4693 BR Brazil 6094.9209
## 4694 BR Brazil 5845.7525
## 4695 BR Brazil 5702.5144
## 4696 BR Brazil 5564.7634
## 4697 BR Brazil 5168.2806
## 4698 BR Brazil 5032.1796
## 4699 BR Brazil 4764.1180
## 4700 BR Brazil 4280.6683
## 4701 BR Brazil 3917.2858
## 4702 BR Brazil 3605.8705
## 4703 BR Brazil 3349.5318
## 4704 BR Brazil 3138.7857
## 4705 BR Brazil 2934.9877
## 4706 BR Brazil 2893.5758
## 4707 BR Brazil 2787.4388
## 4708 BR Brazil 2799.6419
## 4709 BR Brazil 2786.3624
## 4710 BR Brazil 2851.4929
## 4711 BR Brazil 2754.2463
## 4712 BR Brazil 2611.0534
## 4713 VG British Virgin Islands NA
## 4714 VG British Virgin Islands NA
## 4715 VG British Virgin Islands NA
## 4716 VG British Virgin Islands NA
## 4717 VG British Virgin Islands NA
## 4718 VG British Virgin Islands NA
## 4719 VG British Virgin Islands NA
## 4720 VG British Virgin Islands NA
## 4721 VG British Virgin Islands NA
## 4722 VG British Virgin Islands NA
## 4723 VG British Virgin Islands NA
## 4724 VG British Virgin Islands NA
## 4725 VG British Virgin Islands NA
## 4726 VG British Virgin Islands NA
## 4727 VG British Virgin Islands NA
## 4728 VG British Virgin Islands NA
## 4729 VG British Virgin Islands NA
## 4730 VG British Virgin Islands NA
## 4731 VG British Virgin Islands NA
## 4732 VG British Virgin Islands NA
## 4733 VG British Virgin Islands NA
## 4734 VG British Virgin Islands NA
## 4735 VG British Virgin Islands NA
## 4736 VG British Virgin Islands NA
## 4737 VG British Virgin Islands NA
## 4738 VG British Virgin Islands NA
## 4739 VG British Virgin Islands NA
## 4740 VG British Virgin Islands NA
## 4741 VG British Virgin Islands NA
## 4742 VG British Virgin Islands NA
## 4743 VG British Virgin Islands NA
## 4744 VG British Virgin Islands NA
## 4745 VG British Virgin Islands NA
## 4746 VG British Virgin Islands NA
## 4747 VG British Virgin Islands NA
## 4748 VG British Virgin Islands NA
## 4749 VG British Virgin Islands NA
## 4750 VG British Virgin Islands NA
## 4751 VG British Virgin Islands NA
## 4752 VG British Virgin Islands NA
## 4753 VG British Virgin Islands NA
## 4754 VG British Virgin Islands NA
## 4755 VG British Virgin Islands NA
## 4756 VG British Virgin Islands NA
## 4757 VG British Virgin Islands NA
## 4758 VG British Virgin Islands NA
## 4759 VG British Virgin Islands NA
## 4760 VG British Virgin Islands NA
## 4761 VG British Virgin Islands NA
## 4762 VG British Virgin Islands NA
## 4763 VG British Virgin Islands NA
## 4764 VG British Virgin Islands NA
## 4765 VG British Virgin Islands NA
## 4766 VG British Virgin Islands NA
## 4767 VG British Virgin Islands NA
## 4768 VG British Virgin Islands NA
## 4769 VG British Virgin Islands NA
## 4770 VG British Virgin Islands NA
## 4771 VG British Virgin Islands NA
## 4772 VG British Virgin Islands NA
## 4773 VG British Virgin Islands NA
## 4774 VG British Virgin Islands NA
## 4775 BN Brunei Darussalam 29927.0437
## 4776 BN Brunei Darussalam 30696.8771
## 4777 BN Brunei Darussalam 30646.1092
## 4778 BN Brunei Darussalam 29802.7829
## 4779 BN Brunei Darussalam 30101.5288
## 4780 BN Brunei Darussalam 30038.7345
## 4781 BN Brunei Darussalam 31164.0363
## 4782 BN Brunei Darussalam 31678.9373
## 4783 BN Brunei Darussalam 32924.9900
## 4784 BN Brunei Darussalam 34096.9076
## 4785 BN Brunei Darussalam 34244.2069
## 4786 BN Brunei Darussalam 33437.1217
## 4787 BN Brunei Darussalam 32991.8236
## 4788 BN Brunei Darussalam 33981.3370
## 4789 BN Brunei Darussalam 35064.8667
## 4790 BN Brunei Darussalam 35455.6356
## 4791 BN Brunei Darussalam 34441.1226
## 4792 BN Brunei Darussalam 34850.1442
## 4793 BN Brunei Darussalam 35277.8023
## 4794 BN Brunei Darussalam 34926.6281
## 4795 BN Brunei Darussalam 34291.1358
## 4796 BN Brunei Darussalam 34063.6146
## 4797 BN Brunei Darussalam 33825.7126
## 4798 BN Brunei Darussalam 33551.9701
## 4799 BN Brunei Darussalam 34516.2129
## 4800 BN Brunei Darussalam 35875.9246
## 4801 BN Brunei Darussalam 35753.4100
## 4802 BN Brunei Darussalam 35126.3737
## 4803 BN Brunei Darussalam 34994.3426
## 4804 BN Brunei Darussalam 35881.1439
## 4805 BN Brunei Darussalam 35239.4057
## 4806 BN Brunei Darussalam 35154.2312
## 4807 BN Brunei Darussalam 35779.1340
## 4808 BN Brunei Darussalam 37211.0630
## 4809 BN Brunei Darussalam 37866.9093
## 4810 BN Brunei Darussalam 38189.7986
## 4811 BN Brunei Darussalam 40388.6399
## 4812 BN Brunei Darussalam 42176.9817
## 4813 BN Brunei Darussalam 43132.0048
## 4814 BN Brunei Darussalam 44168.2815
## 4815 BN Brunei Darussalam 43769.5125
## 4816 BN Brunei Darussalam 56324.5391
## 4817 BN Brunei Darussalam 62590.5458
## 4818 BN Brunei Darussalam 52870.6152
## 4819 BN Brunei Darussalam 51353.1178
## 4820 BN Brunei Darussalam 48100.4102
## 4821 BN Brunei Darussalam 41651.0900
## 4822 BN Brunei Darussalam 43260.9222
## 4823 BN Brunei Darussalam NA
## 4824 BN Brunei Darussalam NA
## 4825 BN Brunei Darussalam NA
## 4826 BN Brunei Darussalam NA
## 4827 BN Brunei Darussalam NA
## 4828 BN Brunei Darussalam NA
## 4829 BN Brunei Darussalam NA
## 4830 BN Brunei Darussalam NA
## 4831 BN Brunei Darussalam NA
## 4832 BN Brunei Darussalam NA
## 4833 BN Brunei Darussalam NA
## 4834 BN Brunei Darussalam NA
## 4835 BN Brunei Darussalam NA
## 4836 BN Brunei Darussalam NA
## 4837 BG Bulgaria 8293.5679
## 4838 BG Bulgaria 7920.9113
## 4839 BG Bulgaria 8234.7813
## 4840 BG Bulgaria 7859.6780
## 4841 BG Bulgaria 7599.1250
## 4842 BG Bulgaria 7341.0476
## 4843 BG Bulgaria 7074.6810
## 4844 BG Bulgaria 6796.6891
## 4845 BG Bulgaria 6693.4502
## 4846 BG Bulgaria 6693.6124
## 4847 BG Bulgaria 6605.0898
## 4848 BG Bulgaria 6427.8101
## 4849 BG Bulgaria 6288.6774
## 4850 BG Bulgaria 6459.6409
## 4851 BG Bulgaria 6044.7594
## 4852 BG Bulgaria 5629.4199
## 4853 BG Bulgaria 5230.9837
## 4854 BG Bulgaria 4849.5429
## 4855 BG Bulgaria 4518.8782
## 4856 BG Bulgaria 4260.1161
## 4857 BG Bulgaria 3937.4349
## 4858 BG Bulgaria 3717.6770
## 4859 BG Bulgaria 3537.1058
## 4860 BG Bulgaria 3839.7167
## 4861 BG Bulgaria 3674.9318
## 4862 BG Bulgaria 4252.9465
## 4863 BG Bulgaria 4021.7228
## 4864 BG Bulgaria 3892.7111
## 4865 BG Bulgaria 3810.2437
## 4866 BG Bulgaria 3836.7640
## 4867 BG Bulgaria 4093.4767
## 4868 BG Bulgaria 4427.0107
## 4869 BG Bulgaria 4784.0546
## 4870 BG Bulgaria 4889.2563
## 4871 BG Bulgaria 4411.8862
## 4872 BG Bulgaria 4166.1417
## 4873 BG Bulgaria 3996.8648
## 4874 BG Bulgaria 3892.3568
## 4875 BG Bulgaria 3773.3160
## 4876 BG Bulgaria 3657.2878
## 4877 BG Bulgaria 3584.4414
## 4878 BG Bulgaria 3428.4095
## 4879 BG Bulgaria NA
## 4880 BG Bulgaria NA
## 4881 BG Bulgaria NA
## 4882 BG Bulgaria NA
## 4883 BG Bulgaria NA
## 4884 BG Bulgaria NA
## 4885 BG Bulgaria NA
## 4886 BG Bulgaria NA
## 4887 BG Bulgaria NA
## 4888 BG Bulgaria NA
## 4889 BG Bulgaria NA
## 4890 BG Bulgaria NA
## 4891 BG Bulgaria NA
## 4892 BG Bulgaria NA
## 4893 BG Bulgaria NA
## 4894 BG Bulgaria NA
## 4895 BG Bulgaria NA
## 4896 BG Bulgaria NA
## 4897 BG Bulgaria NA
## 4898 BG Bulgaria NA
## 4899 BF Burkina Faso 760.4409
## 4900 BF Burkina Faso 731.5221
## 4901 BF Burkina Faso 738.2189
## 4902 BF Burkina Faso 718.6426
## 4903 BF Burkina Faso 693.7264
## 4904 BF Burkina Faso 672.3630
## 4905 BF Burkina Faso 653.3273
## 4906 BF Burkina Faso 647.4287
## 4907 BF Burkina Faso 639.2329
## 4908 BF Burkina Faso 622.5197
## 4909 BF Burkina Faso 602.5791
## 4910 BF Burkina Faso 582.4157
## 4911 BF Burkina Faso 553.5167
## 4912 BF Burkina Faso 554.1121
## 4913 BF Burkina Faso 539.8200
## 4914 BF Burkina Faso 534.3567
## 4915 BF Burkina Faso 518.1679
## 4916 BF Burkina Faso 491.1847
## 4917 BF Burkina Faso 484.0971
## 4918 BF Burkina Faso 462.2656
## 4919 BF Burkina Faso 455.9077
## 4920 BF Burkina Faso 440.0284
## 4921 BF Burkina Faso 444.3225
## 4922 BF Burkina Faso 425.5692
## 4923 BF Burkina Faso 407.8607
## 4924 BF Burkina Faso 394.4573
## 4925 BF Burkina Faso 365.2805
## 4926 BF Burkina Faso 355.1484
## 4927 BF Burkina Faso 360.2307
## 4928 BF Burkina Faso 357.7423
## 4929 BF Burkina Faso 366.6537
## 4930 BF Burkina Faso 345.2842
## 4931 BF Burkina Faso 356.7400
## 4932 BF Burkina Faso 358.5714
## 4933 BF Burkina Faso 347.9318
## 4934 BF Burkina Faso 357.9641
## 4935 BF Burkina Faso 340.2861
## 4936 BF Burkina Faso 321.7663
## 4937 BF Burkina Faso 336.0867
## 4938 BF Burkina Faso 343.4740
## 4939 BF Burkina Faso 321.2653
## 4940 BF Burkina Faso 315.4840
## 4941 BF Burkina Faso 320.0823
## 4942 BF Burkina Faso 315.4257
## 4943 BF Burkina Faso 307.7464
## 4944 BF Burkina Faso 312.7148
## 4945 BF Burkina Faso 293.7170
## 4946 BF Burkina Faso 290.5729
## 4947 BF Burkina Faso 273.2942
## 4948 BF Burkina Faso 276.9908
## 4949 BF Burkina Faso 275.5481
## 4950 BF Burkina Faso 276.4800
## 4951 BF Burkina Faso 280.9734
## 4952 BF Burkina Faso 280.1640
## 4953 BF Burkina Faso 276.4476
## 4954 BF Burkina Faso 258.2219
## 4955 BF Burkina Faso 260.8854
## 4956 BF Burkina Faso 255.1672
## 4957 BF Burkina Faso 252.9991
## 4958 BF Burkina Faso 259.7345
## 4959 BF Burkina Faso 248.0226
## 4960 BF Burkina Faso 241.6055
## 4961 BI Burundi 267.3191
## 4962 BI Burundi 270.6577
## 4963 BI Burundi 278.2026
## 4964 BI Burundi 281.9347
## 4965 BI Burundi 286.3955
## 4966 BI Burundi 294.1818
## 4967 BI Burundi 305.5111
## 4968 BI Burundi 328.1058
## 4969 BI Burundi 324.7877
## 4970 BI Burundi 319.3983
## 4971 BI Burundi 315.6172
## 4972 BI Burundi 313.2724
## 4973 BI Burundi 307.8655
## 4974 BI Burundi 306.4688
## 4975 BI Burundi 302.0690
## 4976 BI Burundi 301.7527
## 4977 BI Burundi 295.6999
## 4978 BI Burundi 302.6440
## 4979 BI Burundi 297.9877
## 4980 BI Burundi 310.9062
## 4981 BI Burundi 305.8160
## 4982 BI Burundi 306.5459
## 4983 BI Burundi 314.7080
## 4984 BI Burundi 322.1114
## 4985 BI Burundi 310.6911
## 4986 BI Burundi 318.9419
## 4987 BI Burundi 350.9068
## 4988 BI Burundi 386.7793
## 4989 BI Burundi 409.1825
## 4990 BI Burundi 445.0490
## 4991 BI Burundi 450.1510
## 4992 BI Burundi 438.6573
## 4993 BI Burundi 434.3570
## 4994 BI Burundi 440.0463
## 4995 BI Burundi 430.7657
## 4996 BI Burundi 420.0272
## 4997 BI Burundi 418.4433
## 4998 BI Burundi 384.8441
## 4999 BI Burundi 394.8021
## 5000 BI Burundi 390.8993
## 5001 BI Burundi 405.5441
## 5002 BI Burundi 371.0652
## 5003 BI Burundi 377.0426
## 5004 BI Burundi 380.4441
## 5005 BI Burundi 393.5041
## 5006 BI Burundi 360.8393
## 5007 BI Burundi 340.6100
## 5008 BI Burundi 343.3002
## 5009 BI Burundi 349.7761
## 5010 BI Burundi 330.4840
## 5011 BI Burundi 357.0627
## 5012 BI Burundi 352.6043
## 5013 BI Burundi 296.1735
## 5014 BI Burundi 307.4938
## 5015 BI Burundi 316.3489
## 5016 BI Burundi 285.1856
## 5017 BI Burundi 279.3160
## 5018 BI Burundi 274.7020
## 5019 BI Burundi 263.8824
## 5020 BI Burundi 258.3797
## 5021 BI Burundi 241.4665
## 5022 BI Burundi 285.4030
## 5023 CV Cabo Verde 3106.3612
## 5024 CV Cabo Verde 2935.3210
## 5025 CV Cabo Verde 3482.4485
## 5026 CV Cabo Verde 3333.0661
## 5027 CV Cabo Verde 3225.7518
## 5028 CV Cabo Verde 3147.8374
## 5029 CV Cabo Verde 3043.0314
## 5030 CV Cabo Verde 3050.2723
## 5031 CV Cabo Verde 3070.4637
## 5032 CV Cabo Verde 3085.1917
## 5033 CV Cabo Verde 3091.2230
## 5034 CV Cabo Verde 3010.7222
## 5035 CV Cabo Verde 3003.6412
## 5036 CV Cabo Verde 3079.1205
## 5037 CV Cabo Verde 2922.2331
## 5038 CV Cabo Verde 2569.1922
## 5039 CV Cabo Verde 2410.7738
## 5040 CV Cabo Verde 2286.5834
## 5041 CV Cabo Verde 2105.8666
## 5042 CV Cabo Verde 2053.2537
## 5043 CV Cabo Verde 1983.2976
## 5044 CV Cabo Verde 1974.0888
## 5045 CV Cabo Verde 1759.0645
## 5046 CV Cabo Verde 1612.0238
## 5047 CV Cabo Verde 1461.9817
## 5048 CV Cabo Verde 1344.6864
## 5049 CV Cabo Verde 1236.5619
## 5050 CV Cabo Verde 1111.1092
## 5051 CV Cabo Verde 958.6388
## 5052 CV Cabo Verde 907.3612
## 5053 CV Cabo Verde 840.4243
## 5054 CV Cabo Verde 849.0827
## 5055 CV Cabo Verde 860.4913
## 5056 CV Cabo Verde 827.6898
## 5057 CV Cabo Verde 792.0648
## 5058 CV Cabo Verde 770.1942
## 5059 CV Cabo Verde 760.5748
## 5060 CV Cabo Verde 712.7151
## 5061 CV Cabo Verde 700.2617
## 5062 CV Cabo Verde 652.3860
## 5063 CV Cabo Verde 646.6953
## 5064 CV Cabo Verde 606.4455
## 5065 CV Cabo Verde NA
## 5066 CV Cabo Verde NA
## 5067 CV Cabo Verde NA
## 5068 CV Cabo Verde NA
## 5069 CV Cabo Verde NA
## 5070 CV Cabo Verde NA
## 5071 CV Cabo Verde NA
## 5072 CV Cabo Verde NA
## 5073 CV Cabo Verde NA
## 5074 CV Cabo Verde NA
## 5075 CV Cabo Verde NA
## 5076 CV Cabo Verde NA
## 5077 CV Cabo Verde NA
## 5078 CV Cabo Verde NA
## 5079 CV Cabo Verde NA
## 5080 CV Cabo Verde NA
## 5081 CV Cabo Verde NA
## 5082 CV Cabo Verde NA
## 5083 CV Cabo Verde NA
## 5084 CV Cabo Verde NA
## 5085 KH Cambodia 1399.7778
## 5086 KH Cambodia 1377.1451
## 5087 KH Cambodia 1441.1792
## 5088 KH Cambodia 1365.8291
## 5089 KH Cambodia 1289.9858
## 5090 KH Cambodia 1224.2204
## 5091 KH Cambodia 1162.9050
## 5092 KH Cambodia 1104.7500
## 5093 KH Cambodia 1048.1325
## 5094 KH Cambodia 992.5498
## 5095 KH Cambodia 940.1118
## 5096 KH Cambodia 892.1004
## 5097 KH Cambodia 854.9558
## 5098 KH Cambodia 867.1215
## 5099 KH Cambodia 824.8494
## 5100 KH Cambodia 759.6476
## 5101 KH Cambodia 696.3394
## 5102 KH Cambodia 624.6039
## 5103 KH Cambodia 575.3292
## 5104 KH Cambodia 539.3939
## 5105 KH Cambodia 515.5754
## 5106 KH Cambodia 486.5413
## 5107 KH Cambodia 452.3382
## 5108 KH Cambodia 411.2389
## 5109 KH Cambodia 403.3448
## 5110 KH Cambodia 398.9533
## 5111 KH Cambodia 388.2880
## 5112 KH Cambodia 364.8811
## 5113 KH Cambodia 579.1964
## 5114 KH Cambodia NA
## 5115 KH Cambodia NA
## 5116 KH Cambodia NA
## 5117 KH Cambodia NA
## 5118 KH Cambodia NA
## 5119 KH Cambodia NA
## 5120 KH Cambodia NA
## 5121 KH Cambodia NA
## 5122 KH Cambodia NA
## 5123 KH Cambodia NA
## 5124 KH Cambodia NA
## 5125 KH Cambodia NA
## 5126 KH Cambodia NA
## 5127 KH Cambodia NA
## 5128 KH Cambodia NA
## 5129 KH Cambodia NA
## 5130 KH Cambodia NA
## 5131 KH Cambodia NA
## 5132 KH Cambodia NA
## 5133 KH Cambodia NA
## 5134 KH Cambodia NA
## 5135 KH Cambodia NA
## 5136 KH Cambodia NA
## 5137 KH Cambodia NA
## 5138 KH Cambodia NA
## 5139 KH Cambodia NA
## 5140 KH Cambodia NA
## 5141 KH Cambodia NA
## 5142 KH Cambodia NA
## 5143 KH Cambodia NA
## 5144 KH Cambodia NA
## 5145 KH Cambodia NA
## 5146 KH Cambodia NA
## 5147 CM Cameroon 1432.5650
## 5148 CM Cameroon 1419.6767
## 5149 CM Cameroon 1449.2775
## 5150 CM Cameroon 1437.2715
## 5151 CM Cameroon 1419.1761
## 5152 CM Cameroon 1407.2745
## 5153 CM Cameroon 1382.5098
## 5154 CM Cameroon 1343.9285
## 5155 CM Cameroon 1306.0275
## 5156 CM Cameroon 1278.1644
## 5157 CM Cameroon 1255.4772
## 5158 CM Cameroon 1248.1805
## 5159 CM Cameroon 1246.8074
## 5160 CM Cameroon 1249.3752
## 5161 CM Cameroon 1248.6626
## 5162 CM Cameroon 1230.1392
## 5163 CM Cameroon 1217.7570
## 5164 CM Cameroon 1223.9342
## 5165 CM Cameroon 1174.5405
## 5166 CM Cameroon 1143.9854
## 5167 CM Cameroon 1124.4323
## 5168 CM Cameroon 1106.6540
## 5169 CM Cameroon 1094.1125
## 5170 CM Cameroon 1074.5305
## 5171 CM Cameroon 1053.1774
## 5172 CM Cameroon 1034.5079
## 5173 CM Cameroon 1019.7331
## 5174 CM Cameroon 1018.6920
## 5175 CM Cameroon 1028.4435
## 5176 CM Cameroon 1149.6311
## 5177 CM Cameroon 1221.7529
## 5178 CM Cameroon 1308.7077
## 5179 CM Cameroon 1437.0272
## 5180 CM Cameroon 1509.9572
## 5181 CM Cameroon 1690.6855
## 5182 CM Cameroon 1783.5491
## 5183 CM Cameroon 1724.2865
## 5184 CM Cameroon 1646.8039
## 5185 CM Cameroon 1581.1025
## 5186 CM Cameroon 1526.2616
## 5187 CM Cameroon 1464.0074
## 5188 CM Cameroon 1289.1472
## 5189 CM Cameroon 1355.2078
## 5190 CM Cameroon 1316.5499
## 5191 CM Cameroon 1111.0596
## 5192 CM Cameroon 1005.2865
## 5193 CM Cameroon 1094.1979
## 5194 CM Cameroon 1011.2482
## 5195 CM Cameroon 938.3969
## 5196 CM Cameroon 914.7770
## 5197 CM Cameroon 914.5959
## 5198 CM Cameroon 906.8737
## 5199 CM Cameroon 902.1817
## 5200 CM Cameroon 881.6186
## 5201 CM Cameroon 849.4146
## 5202 CM Cameroon 976.4535
## 5203 CM Cameroon 955.4193
## 5204 CM Cameroon 958.1023
## 5205 CM Cameroon 946.2303
## 5206 CM Cameroon 932.2625
## 5207 CM Cameroon 924.2111
## 5208 CM Cameroon 932.4713
## 5209 CA Canada 43945.5570
## 5210 CA Canada 42258.6910
## 5211 CA Canada 45109.2445
## 5212 CA Canada 44917.4837
## 5213 CA Canada 44325.4883
## 5214 CA Canada 43536.9134
## 5215 CA Canada 43596.1355
## 5216 CA Canada 43635.0955
## 5217 CA Canada 42846.2842
## 5218 CA Canada 42315.8074
## 5219 CA Canada 42036.9978
## 5220 CA Canada 41155.3236
## 5221 CA Canada 40368.2920
## 5222 CA Canada 42063.6331
## 5223 CA Canada 42097.4351
## 5224 CA Canada 39776.1795
## 5225 CA Canada 38573.1998
## 5226 CA Canada 37086.4493
## 5227 CA Canada 36024.0992
## 5228 CA Canada 35015.7950
## 5229 CA Canada 34227.3417
## 5230 CA Canada 34121.6092
## 5231 CA Canada 32826.5308
## 5232 CA Canada 31830.6171
## 5233 CA Canada 31222.7248
## 5234 CA Canada NA
## 5235 CA Canada NA
## 5236 CA Canada NA
## 5237 CA Canada NA
## 5238 CA Canada NA
## 5239 CA Canada NA
## 5240 CA Canada NA
## 5241 CA Canada NA
## 5242 CA Canada NA
## 5243 CA Canada NA
## 5244 CA Canada NA
## 5245 CA Canada NA
## 5246 CA Canada NA
## 5247 CA Canada NA
## 5248 CA Canada NA
## 5249 CA Canada NA
## 5250 CA Canada NA
## 5251 CA Canada NA
## 5252 CA Canada NA
## 5253 CA Canada NA
## 5254 CA Canada NA
## 5255 CA Canada NA
## 5256 CA Canada NA
## 5257 CA Canada NA
## 5258 CA Canada NA
## 5259 CA Canada NA
## 5260 CA Canada NA
## 5261 CA Canada NA
## 5262 CA Canada NA
## 5263 CA Canada NA
## 5264 CA Canada NA
## 5265 CA Canada NA
## 5266 CA Canada NA
## 5267 CA Canada NA
## 5268 CA Canada NA
## 5269 CA Canada NA
## 5270 CA Canada NA
## 5271 KY Cayman Islands NA
## 5272 KY Cayman Islands 77959.1105
## 5273 KY Cayman Islands 83639.8336
## 5274 KY Cayman Islands 81494.8887
## 5275 KY Cayman Islands 79133.8002
## 5276 KY Cayman Islands 77694.6107
## 5277 KY Cayman Islands 76284.1943
## 5278 KY Cayman Islands 75246.8262
## 5279 KY Cayman Islands 74420.1192
## 5280 KY Cayman Islands 74688.8864
## 5281 KY Cayman Islands 75165.9870
## 5282 KY Cayman Islands 75877.1675
## 5283 KY Cayman Islands 79899.9647
## 5284 KY Cayman Islands 88476.1416
## 5285 KY Cayman Islands 91434.5367
## 5286 KY Cayman Islands 91341.2941
## 5287 KY Cayman Islands NA
## 5288 KY Cayman Islands NA
## 5289 KY Cayman Islands NA
## 5290 KY Cayman Islands NA
## 5291 KY Cayman Islands NA
## 5292 KY Cayman Islands NA
## 5293 KY Cayman Islands NA
## 5294 KY Cayman Islands NA
## 5295 KY Cayman Islands NA
## 5296 KY Cayman Islands NA
## 5297 KY Cayman Islands NA
## 5298 KY Cayman Islands NA
## 5299 KY Cayman Islands NA
## 5300 KY Cayman Islands NA
## 5301 KY Cayman Islands NA
## 5302 KY Cayman Islands NA
## 5303 KY Cayman Islands NA
## 5304 KY Cayman Islands NA
## 5305 KY Cayman Islands NA
## 5306 KY Cayman Islands NA
## 5307 KY Cayman Islands NA
## 5308 KY Cayman Islands NA
## 5309 KY Cayman Islands NA
## 5310 KY Cayman Islands NA
## 5311 KY Cayman Islands NA
## 5312 KY Cayman Islands NA
## 5313 KY Cayman Islands NA
## 5314 KY Cayman Islands NA
## 5315 KY Cayman Islands NA
## 5316 KY Cayman Islands NA
## 5317 KY Cayman Islands NA
## 5318 KY Cayman Islands NA
## 5319 KY Cayman Islands NA
## 5320 KY Cayman Islands NA
## 5321 KY Cayman Islands NA
## 5322 KY Cayman Islands NA
## 5323 KY Cayman Islands NA
## 5324 KY Cayman Islands NA
## 5325 KY Cayman Islands NA
## 5326 KY Cayman Islands NA
## 5327 KY Cayman Islands NA
## 5328 KY Cayman Islands NA
## 5329 KY Cayman Islands NA
## 5330 KY Cayman Islands NA
## 5331 KY Cayman Islands NA
## 5332 KY Cayman Islands NA
## 5333 CF Central African Republic 411.1463
## 5334 CF Central African Republic 415.0910
## 5335 CF Central African Republic 418.7217
## 5336 CF Central African Republic 412.9902
## 5337 CF Central African Republic 404.0025
## 5338 CF Central African Republic 391.4735
## 5339 CF Central African Republic 377.4229
## 5340 CF Central African Republic 364.0840
## 5341 CF Central African Republic 365.1161
## 5342 CF Central African Republic 575.5019
## 5343 CF Central African Republic 550.0199
## 5344 CF Central African Republic 531.7130
## 5345 CF Central African Republic 513.9374
## 5346 CF Central African Republic 480.4109
## 5347 CF Central African Republic 479.1922
## 5348 CF Central African Republic 466.9768
## 5349 CF Central African Republic 454.5074
## 5350 CF Central African Republic 459.3453
## 5351 CF Central African Republic 442.1528
## 5352 CF Central African Republic 477.0976
## 5353 CF Central African Republic 470.3560
## 5354 CF Central African Republic 460.3452
## 5355 CF Central African Republic 483.0313
## 5356 CF Central African Republic 477.3187
## 5357 CF Central African Republic 467.0523
## 5358 CF Central African Republic 454.8332
## 5359 CF Central African Republic 486.3657
## 5360 CF Central African Republic 466.3831
## 5361 CF Central African Republic 457.5689
## 5362 CF Central African Republic 469.4336
## 5363 CF Central African Republic 515.7300
## 5364 CF Central African Republic 531.8557
## 5365 CF Central African Republic 555.6043
## 5366 CF Central African Republic 555.2997
## 5367 CF Central African Republic 555.6860
## 5368 CF Central African Republic 595.5993
## 5369 CF Central African Republic 587.6003
## 5370 CF Central African Republic 579.9480
## 5371 CF Central African Republic 545.1313
## 5372 CF Central African Republic 611.8931
## 5373 CF Central African Republic 585.8482
## 5374 CF Central African Republic 612.6464
## 5375 CF Central African Republic 658.9218
## 5376 CF Central African Republic 692.7642
## 5377 CF Central African Republic 700.5088
## 5378 CF Central African Republic 689.3190
## 5379 CF Central African Republic 666.7045
## 5380 CF Central African Republic 675.7405
## 5381 CF Central African Republic 645.3638
## 5382 CF Central African Republic 642.5772
## 5383 CF Central African Republic 652.1032
## 5384 CF Central African Republic 655.2684
## 5385 CF Central African Republic 651.9524
## 5386 CF Central African Republic 620.8821
## 5387 CF Central African Republic 625.1492
## 5388 CF Central African Republic 609.8160
## 5389 CF Central African Republic 618.2191
## 5390 CF Central African Republic 624.2515
## 5391 CF Central African Republic 622.8525
## 5392 CF Central African Republic 638.3898
## 5393 CF Central African Republic 674.2440
## 5394 CF Central African Republic 652.8550
## 5395 TD Chad 604.9872
## 5396 TD Chad 630.5691
## 5397 TD Chad 660.0699
## 5398 TD Chad 658.6889
## 5399 TD Chad 663.1647
## 5400 TD Chad 704.9601
## 5401 TD Chad 776.0198
## 5402 TD Chad 779.8466
## 5403 TD Chad 753.9626
## 5404 TD Chad 737.6126
## 5405 TD Chad 700.6627
## 5406 TD Chad 724.0306
## 5407 TD Chad 659.2523
## 5408 TD Chad 653.8712
## 5409 TD Chad 655.9426
## 5410 TD Chad 657.0847
## 5411 TD Chad 676.1621
## 5412 TD Chad 597.7004
## 5413 TD Chad 464.5003
## 5414 TD Chad 420.8159
## 5415 TD Chad 403.1297
## 5416 TD Chad 374.9696
## 5417 TD Chad 392.4890
## 5418 TD Chad 409.6053
## 5419 TD Chad 396.5873
## 5420 TD Chad 388.4388
## 5421 TD Chad 393.0779
## 5422 TD Chad 401.3949
## 5423 TD Chad 376.5068
## 5424 TD Chad 461.2379
## 5425 TD Chad 440.9149
## 5426 TD Chad 419.4465
## 5427 TD Chad 452.0901
## 5428 TD Chad 445.2476
## 5429 TD Chad 398.1466
## 5430 TD Chad 420.7602
## 5431 TD Chad 451.7405
## 5432 TD Chad 381.2218
## 5433 TD Chad 383.2500
## 5434 TD Chad 339.3217
## 5435 TD Chad 329.4529
## 5436 TD Chad 333.1616
## 5437 TD Chad 361.9581
## 5438 TD Chad 469.8248
## 5439 TD Chad 481.1436
## 5440 TD Chad 479.8870
## 5441 TD Chad 475.6348
## 5442 TD Chad 445.9913
## 5443 TD Chad 434.9141
## 5444 TD Chad 486.2241
## 5445 TD Chad 492.1877
## 5446 TD Chad 514.9163
## 5447 TD Chad 516.1695
## 5448 TD Chad 492.4640
## 5449 TD Chad 504.0237
## 5450 TD Chad 509.4767
## 5451 TD Chad 528.6667
## 5452 TD Chad 535.6873
## 5453 TD Chad 560.3499
## 5454 TD Chad 580.8337
## 5455 TD Chad 562.2475
## 5456 TD Chad 565.3522
## 5457 JG Channel Islands NA
## 5458 JG Channel Islands NA
## 5459 JG Channel Islands NA
## 5460 JG Channel Islands NA
## 5461 JG Channel Islands NA
## 5462 JG Channel Islands NA
## 5463 JG Channel Islands NA
## 5464 JG Channel Islands NA
## 5465 JG Channel Islands NA
## 5466 JG Channel Islands NA
## 5467 JG Channel Islands NA
## 5468 JG Channel Islands NA
## 5469 JG Channel Islands NA
## 5470 JG Channel Islands NA
## 5471 JG Channel Islands NA
## 5472 JG Channel Islands NA
## 5473 JG Channel Islands NA
## 5474 JG Channel Islands NA
## 5475 JG Channel Islands NA
## 5476 JG Channel Islands NA
## 5477 JG Channel Islands NA
## 5478 JG Channel Islands NA
## 5479 JG Channel Islands NA
## 5480 JG Channel Islands NA
## 5481 JG Channel Islands NA
## 5482 JG Channel Islands NA
## 5483 JG Channel Islands NA
## 5484 JG Channel Islands NA
## 5485 JG Channel Islands NA
## 5486 JG Channel Islands NA
## 5487 JG Channel Islands NA
## 5488 JG Channel Islands NA
## 5489 JG Channel Islands NA
## 5490 JG Channel Islands NA
## 5491 JG Channel Islands NA
## 5492 JG Channel Islands NA
## 5493 JG Channel Islands NA
## 5494 JG Channel Islands NA
## 5495 JG Channel Islands NA
## 5496 JG Channel Islands NA
## 5497 JG Channel Islands NA
## 5498 JG Channel Islands NA
## 5499 JG Channel Islands NA
## 5500 JG Channel Islands NA
## 5501 JG Channel Islands NA
## 5502 JG Channel Islands NA
## 5503 JG Channel Islands NA
## 5504 JG Channel Islands NA
## 5505 JG Channel Islands NA
## 5506 JG Channel Islands NA
## 5507 JG Channel Islands NA
## 5508 JG Channel Islands NA
## 5509 JG Channel Islands NA
## 5510 JG Channel Islands NA
## 5511 JG Channel Islands NA
## 5512 JG Channel Islands NA
## 5513 JG Channel Islands NA
## 5514 JG Channel Islands NA
## 5515 JG Channel Islands NA
## 5516 JG Channel Islands NA
## 5517 JG Channel Islands NA
## 5518 JG Channel Islands NA
## 5519 CL Chile 14322.2894
## 5520 CL Chile 12890.2643
## 5521 CL Chile 13828.6344
## 5522 CL Chile 13886.1906
## 5523 CL Chile 13540.4387
## 5524 CL Chile 13550.8119
## 5525 CL Chile 13495.0106
## 5526 CL Chile 13367.2283
## 5527 CL Chile 13271.9148
## 5528 CL Chile 12973.2383
## 5529 CL Chile 12339.2611
## 5530 CL Chile 11732.7300
## 5531 CL Chile 11199.8802
## 5532 CL Chile 11447.1328
## 5533 CL Chile 11147.9936
## 5534 CL Chile 10714.0290
## 5535 CL Chile 10210.0603
## 5536 CL Chile 9748.0051
## 5537 CL Chile 9233.4216
## 5538 CL Chile 8909.8615
## 5539 CL Chile 8726.9973
## 5540 CL Chile 8555.9776
## 5541 CL Chile 8247.2695
## 5542 CL Chile 8372.0814
## 5543 CL Chile 8140.1835
## 5544 CL Chile 7683.2291
## 5545 CL Chile 7297.1387
## 5546 CL Chile 6800.1593
## 5547 CL Chile 6577.2793
## 5548 CL Chile 6271.9544
## 5549 CL Chile 5735.8185
## 5550 CL Chile 5409.0132
## 5551 CL Chile 5321.0428
## 5552 CL Chile 4920.1999
## 5553 CL Chile 4657.7802
## 5554 CL Chile 4444.4081
## 5555 CL Chile 4282.4924
## 5556 CL Chile 4178.4434
## 5557 CL Chile 4071.0946
## 5558 CL Chile 4346.0202
## 5559 CL Chile 4952.2198
## 5560 CL Chile 4715.0878
## 5561 CL Chile 4430.1707
## 5562 CL Chile 4147.2457
## 5563 CL Chile 3909.3575
## 5564 CL Chile 3594.2432
## 5565 CL Chile 3515.3557
## 5566 CL Chile 4099.8474
## 5567 CL Chile 4068.0283
## 5568 CL Chile 4352.1982
## 5569 CL Chile 4468.2279
## 5570 CL Chile 4150.0658
## 5571 CL Chile 4142.3538
## 5572 CL Chile 4051.2596
## 5573 CL Chile 3976.6180
## 5574 CL Chile 3904.6132
## 5575 CL Chile 3573.9399
## 5576 CL Chile 3607.6180
## 5577 CL Chile 3587.3895
## 5578 CL Chile 3458.8124
## 5579 CL Chile 3394.2354
## 5580 CL Chile 3292.8073
## 5581 CN China 11188.3025
## 5582 CN China 10358.2594
## 5583 CN China 10155.4929
## 5584 CN China 9619.1925
## 5585 CN China 9053.2127
## 5586 CN China 8516.5137
## 5587 CN China 8016.4314
## 5588 CN China 7532.7720
## 5589 CN China 7056.4106
## 5590 CN China 6591.6509
## 5591 CN China 6152.6860
## 5592 CN China 5647.0588
## 5593 CN China 5128.8951
## 5594 CN China 4711.6351
## 5595 CN China 4319.0238
## 5596 CN China 3800.7591
## 5597 CN China 3390.7102
## 5598 CN China 3061.8278
## 5599 CN China 2797.1717
## 5600 CN China 2557.8871
## 5601 CN China 2359.5682
## 5602 CN China 2193.8930
## 5603 CN China 2038.2029
## 5604 CN China 1909.6190
## 5605 CN China 1787.7638
## 5606 CN China 1653.4309
## 5607 CN China 1520.0268
## 5608 CN China 1384.9277
## 5609 CN China 1239.1272
## 5610 CN China 1100.6442
## 5611 CN China 975.4612
## 5612 CN China 905.0309
## 5613 CN China 883.7626
## 5614 CN China 861.1920
## 5615 CN China 786.8635
## 5616 CN China 716.1041
## 5617 CN China 667.1274
## 5618 CN China 596.2001
## 5619 CN China 524.4084
## 5620 CN China 480.3105
## 5621 CN China 447.1190
## 5622 CN China 430.8546
## 5623 CN China 404.5959
## 5624 CN China 381.0987
## 5625 CN China 346.9385
## 5626 CN China 326.9489
## 5627 CN China 337.3435
## 5628 CN China 315.8161
## 5629 CN China 315.1291
## 5630 CN China 299.1904
## 5631 CN China 295.3796
## 5632 CN China 283.5849
## 5633 CN China 244.3635
## 5634 CN China 214.7697
## 5635 CN China 229.8759
## 5636 CN China 250.3045
## 5637 CN China 232.6068
## 5638 CN China 203.6875
## 5639 CN China 176.4001
## 5640 CN China 163.9068
## 5641 CN China 175.0234
## 5642 CN China 238.2166
## 5643 CO Colombia 6442.8592
## 5644 CO Colombia 5871.1617
## 5645 CO Colombia 6384.5358
## 5646 CO Colombia 6271.8751
## 5647 CO Colombia 6208.9870
## 5648 CO Colombia 6219.1497
## 5649 CO Colombia 6175.8760
## 5650 CO Colombia 6069.1868
## 5651 CO Colombia 5866.8738
## 5652 CO Colombia 5631.2174
## 5653 CO Colombia 5468.1955
## 5654 CO Colombia 5162.7056
## 5655 CO Colombia 4992.8232
## 5656 CO Colombia 4991.7892
## 5657 CO Colombia 4890.2776
## 5658 CO Colombia 4638.4719
## 5659 CO Colombia 4402.8991
## 5660 CO Colombia 4257.1627
## 5661 CO Colombia 4099.3064
## 5662 CO Colombia 4003.4658
## 5663 CO Colombia 3965.7641
## 5664 CO Colombia 3961.9297
## 5665 CO Colombia 3911.5734
## 5666 CO Colombia 4150.8353
## 5667 CO Colombia 4197.3953
## 5668 CO Colombia 4129.0503
## 5669 CO Colombia 4118.6280
## 5670 CO Colombia 3987.4822
## 5671 CO Colombia 3840.0678
## 5672 CO Colombia 3714.6188
## 5673 CO Colombia 3640.4550
## 5674 CO Colombia 3639.7192
## 5675 CO Colombia 3559.6329
## 5676 CO Colombia 3510.7979
## 5677 CO Colombia 3441.5055
## 5678 CO Colombia 3332.6985
## 5679 CO Colombia 3214.6082
## 5680 CO Colombia 3183.6354
## 5681 CO Colombia 3146.6162
## 5682 CO Colombia 3165.3619
## 5683 CO Colombia 3204.6398
## 5684 CO Colombia 3202.7307
## 5685 CO Colombia 3145.6662
## 5686 CO Colombia 3052.2961
## 5687 CO Colombia 2877.5976
## 5688 CO Colombia 2825.1810
## 5689 CO Colombia 2758.4501
## 5690 CO Colombia 2756.1887
## 5691 CO Colombia 2664.6018
## 5692 CO Colombia 2553.0857
## 5693 CO Colombia 2426.4555
## 5694 CO Colombia 2345.8116
## 5695 CO Colombia 2265.3993
## 5696 CO Colombia 2192.5550
## 5697 CO Colombia 2127.7850
## 5698 CO Colombia 2102.4112
## 5699 CO Colombia 2056.9508
## 5700 CO Colombia 2045.5620
## 5701 CO Colombia 1986.3257
## 5702 CO Colombia 1983.5427
## 5703 CO Colombia 1941.3458
## 5704 CO Colombia 1906.0150
## 5705 KM Comoros 1255.2382
## 5706 KM Comoros 1253.0445
## 5707 KM Comoros 1284.3523
## 5708 KM Comoros 1290.2869
## 5709 KM Comoros 1273.1344
## 5710 KM Comoros 1254.5372
## 5711 KM Comoros 1242.5856
## 5712 KM Comoros 1257.6825
## 5713 KM Comoros 1261.4331
## 5714 KM Comoros 1236.9389
## 5715 KM Comoros 1228.2846
## 5716 KM Comoros 1208.2845
## 5717 KM Comoros 1192.7394
## 5718 KM Comoros 1183.4668
## 5719 KM Comoros 1166.0182
## 5720 KM Comoros 1184.8265
## 5721 KM Comoros 1182.2081
## 5722 KM Comoros 1177.2964
## 5723 KM Comoros 1182.8843
## 5724 KM Comoros 1186.4482
## 5725 KM Comoros 1187.8264
## 5726 KM Comoros 1189.7190
## 5727 KM Comoros 1100.6977
## 5728 KM Comoros 1108.1425
## 5729 KM Comoros 1123.3771
## 5730 KM Comoros 1109.3164
## 5731 KM Comoros 1155.1110
## 5732 KM Comoros 1146.4887
## 5733 KM Comoros 1245.4062
## 5734 KM Comoros 1244.5638
## 5735 KM Comoros 1180.7723
## 5736 KM Comoros 1285.3384
## 5737 KM Comoros 1259.6720
## 5738 KM Comoros 1340.1978
## 5739 KM Comoros 1344.3388
## 5740 KM Comoros 1362.0276
## 5741 KM Comoros 1376.2949
## 5742 KM Comoros 1384.1077
## 5743 KM Comoros 1366.5159
## 5744 KM Comoros 1340.1220
## 5745 KM Comoros 1296.7028
## 5746 KM Comoros 1288.1395
## 5747 KM Comoros NA
## 5748 KM Comoros NA
## 5749 KM Comoros NA
## 5750 KM Comoros NA
## 5751 KM Comoros NA
## 5752 KM Comoros NA
## 5753 KM Comoros NA
## 5754 KM Comoros NA
## 5755 KM Comoros NA
## 5756 KM Comoros NA
## 5757 KM Comoros NA
## 5758 KM Comoros NA
## 5759 KM Comoros NA
## 5760 KM Comoros NA
## 5761 KM Comoros NA
## 5762 KM Comoros NA
## 5763 KM Comoros NA
## 5764 KM Comoros NA
## 5765 KM Comoros NA
## 5766 KM Comoros NA
## 5767 CD Congo, Dem. Rep. 517.9268
## 5768 CD Congo, Dem. Rep. 505.3483
## 5769 CD Congo, Dem. Rep. 512.5863
## 5770 CD Congo, Dem. Rep. 506.9583
## 5771 CD Congo, Dem. Rep. 494.7812
## 5772 CD Congo, Dem. Rep. 492.8028
## 5773 CD Congo, Dem. Rep. 497.3170
## 5774 CD Congo, Dem. Rep. 480.7662
## 5775 CD Congo, Dem. Rep. 453.9989
## 5776 CD Congo, Dem. Rep. 432.6784
## 5777 CD Congo, Dem. Rep. 417.7570
## 5778 CD Congo, Dem. Rep. 404.1516
## 5779 CD Congo, Dem. Rep. 390.1121
## 5780 CD Congo, Dem. Rep. 392.0747
## 5781 CD Congo, Dem. Rep. 381.4556
## 5782 CD Congo, Dem. Rep. 370.8858
## 5783 CD Congo, Dem. Rep. 363.6675
## 5784 CD Congo, Dem. Rep. 353.7319
## 5785 CD Congo, Dem. Rep. 341.9907
## 5786 CD Congo, Dem. Rep. 334.0157
## 5787 CD Congo, Dem. Rep. 334.1200
## 5788 CD Congo, Dem. Rep. 350.8708
## 5789 CD Congo, Dem. Rep. 386.6562
## 5790 CD Congo, Dem. Rep. 413.5363
## 5791 CD Congo, Dem. Rep. 430.1735
## 5792 CD Congo, Dem. Rep. 467.1799
## 5793 CD Congo, Dem. Rep. 485.4171
## 5794 CD Congo, Dem. Rep. 497.8893
## 5795 CD Congo, Dem. Rep. 537.2772
## 5796 CD Congo, Dem. Rep. 645.5536
## 5797 CD Congo, Dem. Rep. 749.9266
## 5798 CD Congo, Dem. Rep. 849.5526
## 5799 CD Congo, Dem. Rep. 940.4490
## 5800 CD Congo, Dem. Rep. 982.4830
## 5801 CD Congo, Dem. Rep. 1006.2651
## 5802 CD Congo, Dem. Rep. 1007.0263
## 5803 CD Congo, Dem. Rep. 987.4944
## 5804 CD Congo, Dem. Rep. 1008.6013
## 5805 CD Congo, Dem. Rep. 979.7314
## 5806 CD Congo, Dem. Rep. 990.0235
## 5807 CD Congo, Dem. Rep. 1019.4749
## 5808 CD Congo, Dem. Rep. 1021.8122
## 5809 CD Congo, Dem. Rep. 1026.9555
## 5810 CD Congo, Dem. Rep. 1051.5347
## 5811 CD Congo, Dem. Rep. 1143.3179
## 5812 CD Congo, Dem. Rep. 1167.8514
## 5813 CD Congo, Dem. Rep. 1268.7012
## 5814 CD Congo, Dem. Rep. 1372.4566
## 5815 CD Congo, Dem. Rep. 1367.0968
## 5816 CD Congo, Dem. Rep. 1298.2863
## 5817 CD Congo, Dem. Rep. 1331.4583
## 5818 CD Congo, Dem. Rep. 1290.7453
## 5819 CD Congo, Dem. Rep. 1330.5673
## 5820 CD Congo, Dem. Rep. 1252.1617
## 5821 CD Congo, Dem. Rep. 1235.1155
## 5822 CD Congo, Dem. Rep. 1283.4867
## 5823 CD Congo, Dem. Rep. 1236.1019
## 5824 CD Congo, Dem. Rep. 1257.6392
## 5825 CD Congo, Dem. Rep. 1323.7084
## 5826 CD Congo, Dem. Rep. 1291.1015
## 5827 CD Congo, Dem. Rep. 1092.7452
## 5828 CD Congo, Dem. Rep. 1257.0627
## 5829 CG Congo, Rep. 1543.0167
## 5830 CG Congo, Rep. 1639.2374
## 5831 CG Congo, Rep. 1793.0281
## 5832 CG Congo, Rep. 1841.1739
## 5833 CG Congo, Rep. 1984.6985
## 5834 CG Congo, Rep. 2129.7155
## 5835 CG Congo, Rep. 2448.5238
## 5836 CG Congo, Rep. 2602.5048
## 5837 CG Congo, Rep. 2498.9545
## 5838 CG Congo, Rep. 2579.6990
## 5839 CG Congo, Rep. 2407.8936
## 5840 CG Congo, Rep. 2422.6831
## 5841 CG Congo, Rep. 2272.0445
## 5842 CG Congo, Rep. 2103.1421
## 5843 CG Congo, Rep. 2047.4681
## 5844 CG Congo, Rep. 2269.1567
## 5845 CG Congo, Rep. 2172.3166
## 5846 CG Congo, Rep. 2080.4581
## 5847 CG Congo, Rep. 2071.6692
## 5848 CG Congo, Rep. 2114.8847
## 5849 CG Congo, Rep. 2080.3242
## 5850 CG Congo, Rep. 2062.1164
## 5851 CG Congo, Rep. 1973.0339
## 5852 CG Congo, Rep. 2084.8785
## 5853 CG Congo, Rep. 2068.8985
## 5854 CG Congo, Rep. 2142.7895
## 5855 CG Congo, Rep. 2114.0415
## 5856 CG Congo, Rep. 2091.0877
## 5857 CG Congo, Rep. 2275.2642
## 5858 CG Congo, Rep. 2362.3126
## 5859 CG Congo, Rep. 2366.4597
## 5860 CG Congo, Rep. 2375.4025
## 5861 CG Congo, Rep. 2417.0907
## 5862 CG Congo, Rep. 2420.9798
## 5863 CG Congo, Rep. 2444.8555
## 5864 CG Congo, Rep. 2508.3459
## 5865 CG Congo, Rep. 2769.2392
## 5866 CG Congo, Rep. 2882.8982
## 5867 CG Congo, Rep. 2773.4212
## 5868 CG Congo, Rep. 2697.3044
## 5869 CG Congo, Rep. 2246.9910
## 5870 CG Congo, Rep. 1967.0091
## 5871 CG Congo, Rep. 1721.5540
## 5872 CG Congo, Rep. 1614.0126
## 5873 CG Congo, Rep. 1562.3124
## 5874 CG Congo, Rep. 1766.7615
## 5875 CG Congo, Rep. 1802.7895
## 5876 CG Congo, Rep. 1723.4326
## 5877 CG Congo, Rep. 1645.3485
## 5878 CG Congo, Rep. 1565.7439
## 5879 CG Congo, Rep. 1484.3882
## 5880 CG Congo, Rep. 1418.0704
## 5881 CG Congo, Rep. 1371.9371
## 5882 CG Congo, Rep. 1312.0269
## 5883 CG Congo, Rep. 1253.1996
## 5884 CG Congo, Rep. 1261.1098
## 5885 CG Congo, Rep. 1278.0074
## 5886 CG Congo, Rep. 1265.5877
## 5887 CG Congo, Rep. 1250.9804
## 5888 CG Congo, Rep. 1336.9081
## 5889 CG Congo, Rep. 1302.6147
## 5890 CG Congo, Rep. 1231.5779
## 5891 CR Costa Rica 12931.6913
## 5892 CR Costa Rica 12126.6259
## 5893 CR Costa Rica 12755.1684
## 5894 CR Costa Rica 12573.9558
## 5895 CR Costa Rica 12375.9237
## 5896 CR Costa Rica 12004.6713
## 5897 CR Costa Rica 11642.7781
## 5898 CR Costa Rica 11355.3311
## 5899 CR Costa Rica 11090.0884
## 5900 CR Costa Rica 10945.0350
## 5901 CR Costa Rica 10559.2060
## 5902 CR Costa Rica 10236.9803
## 5903 CR Costa Rica 9837.8766
## 5904 CR Costa Rica 10052.6829
## 5905 CR Costa Rica 9725.3849
## 5906 CR Costa Rica 9109.5303
## 5907 CR Costa Rica 8606.3337
## 5908 CR Costa Rica 8395.4011
## 5909 CR Costa Rica 8157.6512
## 5910 CR Costa Rica 7940.4302
## 5911 CR Costa Rica 7805.3119
## 5912 CR Costa Rica 7678.4916
## 5913 CR Costa Rica 7538.8863
## 5914 CR Costa Rica 7389.0451
## 5915 CR Costa Rica 7053.1374
## 5916 CR Costa Rica 6846.3576
## 5917 CR Costa Rica 6920.5790
## 5918 CR Costa Rica 6811.1119
## 5919 CR Costa Rica 6683.8362
## 5920 CR Costa Rica 6403.7847
## 5921 CR Costa Rica 6018.8573
## 5922 CR Costa Rica 6041.4439
## 5923 CR Costa Rica 5988.5411
## 5924 CR Costa Rica 5816.8823
## 5925 CR Costa Rica 5772.1689
## 5926 CR Costa Rica 5655.9388
## 5927 CR Costa Rica 5503.2218
## 5928 CR Costa Rica 5612.4763
## 5929 CR Costa Rica 5338.2497
## 5930 CR Costa Rica 5332.9300
## 5931 CR Costa Rica 5910.7288
## 5932 CR Costa Rica 6213.5450
## 5933 CR Costa Rica 6335.5398
## 5934 CR Costa Rica 6201.3279
## 5935 CR Costa Rica 5992.5305
## 5936 CR Costa Rica 5648.3667
## 5937 CR Costa Rica 5492.3072
## 5938 CR Costa Rica 5516.1596
## 5939 CR Costa Rica 5356.7780
## 5940 CR Costa Rica 5097.0733
## 5941 CR Costa Rica 4831.2633
## 5942 CR Costa Rica 4643.7906
## 5943 CR Costa Rica 4438.6170
## 5944 CR Costa Rica 4328.4053
## 5945 CR Costa Rica 4110.1119
## 5946 CR Costa Rica 4012.4854
## 5947 CR Costa Rica 3874.0898
## 5948 CR Costa Rica 3703.7921
## 5949 CR Costa Rica 3701.3723
## 5950 CR Costa Rica 3591.0329
## 5951 CR Costa Rica 3534.2941
## 5952 CR Costa Rica 3600.4830
## 5953 CI Cote d'Ivoire 2414.4403
## 5954 CI Cote d'Ivoire 2313.7934
## 5955 CI Cote d'Ivoire 2327.7454
## 5956 CI Cote d'Ivoire 2247.7766
## 5957 CI Cote d'Ivoire 2157.2452
## 5958 CI Cote d'Ivoire 2061.2152
## 5959 CI Cote d'Ivoire 1972.5457
## 5960 CI Cote d'Ivoire 1887.1649
## 5961 CI Cote d'Ivoire 1769.2149
## 5962 CI Cote d'Ivoire 1637.3928
## 5963 CI Cote d'Ivoire 1558.9687
## 5964 CI Cote d'Ivoire 1687.2165
## 5965 CI Cote d'Ivoire 1616.3782
## 5966 CI Cote d'Ivoire 1596.2552
## 5967 CI Cote d'Ivoire 1557.9083
## 5968 CI Cote d'Ivoire 1575.1428
## 5969 CI Cote d'Ivoire 1565.4285
## 5970 CI Cote d'Ivoire 1583.1120
## 5971 CI Cote d'Ivoire 1566.5772
## 5972 CI Cote d'Ivoire 1679.4065
## 5973 CI Cote d'Ivoire 1765.3281
## 5974 CI Cote d'Ivoire 1847.8700
## 5975 CI Cote d'Ivoire 1901.5727
## 5976 CI Cote d'Ivoire 1933.0732
## 5977 CI Cote d'Ivoire 1910.2299
## 5978 CI Cote d'Ivoire 1797.4387
## 5979 CI Cote d'Ivoire 1723.1574
## 5980 CI Cote d'Ivoire 1662.9131
## 5981 CI Cote d'Ivoire 1707.1777
## 5982 CI Cote d'Ivoire 1771.7750
## 5983 CI Cote d'Ivoire 1840.7741
## 5984 CI Cote d'Ivoire 1907.5326
## 5985 CI Cote d'Ivoire 1999.4981
## 5986 CI Cote d'Ivoire 2013.6148
## 5987 CI Cote d'Ivoire 2064.7879
## 5988 CI Cote d'Ivoire 2150.6034
## 5989 CI Cote d'Ivoire 2164.4197
## 5990 CI Cote d'Ivoire 2155.5373
## 5991 CI Cote d'Ivoire 2308.6871
## 5992 CI Cote d'Ivoire 2506.5257
## 5993 CI Cote d'Ivoire 2612.1582
## 5994 CI Cote d'Ivoire 2636.9196
## 5995 CI Cote d'Ivoire 3095.4035
## 5996 CI Cote d'Ivoire 3161.0695
## 5997 CI Cote d'Ivoire 2981.4659
## 5998 CI Cote d'Ivoire 2907.5851
## 5999 CI Cote d'Ivoire 2696.0767
## 6000 CI Cote d'Ivoire 2608.9795
## 6001 CI Cote d'Ivoire 2620.5372
## 6002 CI Cote d'Ivoire 2591.3985
## 6003 CI Cote d'Ivoire 2601.4443
## 6004 CI Cote d'Ivoire 2482.2764
## 6005 CI Cote d'Ivoire 2342.9009
## 6006 CI Cote d'Ivoire 2222.5231
## 6007 CI Cote d'Ivoire 2048.1556
## 6008 CI Cote d'Ivoire 2029.7858
## 6009 CI Cote d'Ivoire 1886.6925
## 6010 CI Cote d'Ivoire 2021.5840
## 6011 CI Cote d'Ivoire 1785.8576
## 6012 CI Cote d'Ivoire 1621.0027
## 6013 CI Cote d'Ivoire 1662.7393
## 6014 CI Cote d'Ivoire 1567.7618
## 6015 HR Croatia 14888.3306
## 6016 HR Croatia 12984.6959
## 6017 HR Croatia 14068.0445
## 6018 HR Croatia 13519.5588
## 6019 HR Croatia 13021.6717
## 6020 HR Croatia 12441.5025
## 6021 HR Croatia 11933.3774
## 6022 HR Croatia 11543.8763
## 6023 HR Croatia 11536.8602
## 6024 HR Croatia 11546.7017
## 6025 HR Croatia 11779.5300
## 6026 HR Croatia 11748.9448
## 6027 HR Croatia 11870.7940
## 6028 HR Croatia 12789.6358
## 6029 HR Croatia 12550.2339
## 6030 HR Croatia 11959.9232
## 6031 HR Croatia 11399.7753
## 6032 HR Croatia 10942.5724
## 6033 HR Croatia 10509.5497
## 6034 HR Croatia 9962.0449
## 6035 HR Croatia 9428.4107
## 6036 HR Croatia 8805.5004
## 6037 HR Croatia 8473.7105
## 6038 HR Croatia 8511.7819
## 6039 HR Croatia 8322.9639
## 6040 HR Croatia 7803.9220
## 6041 HR Croatia 7263.5709
## 6042 HR Croatia NA
## 6043 HR Croatia NA
## 6044 HR Croatia NA
## 6045 HR Croatia NA
## 6046 HR Croatia NA
## 6047 HR Croatia NA
## 6048 HR Croatia NA
## 6049 HR Croatia NA
## 6050 HR Croatia NA
## 6051 HR Croatia NA
## 6052 HR Croatia NA
## 6053 HR Croatia NA
## 6054 HR Croatia NA
## 6055 HR Croatia NA
## 6056 HR Croatia NA
## 6057 HR Croatia NA
## 6058 HR Croatia NA
## 6059 HR Croatia NA
## 6060 HR Croatia NA
## 6061 HR Croatia NA
## 6062 HR Croatia NA
## 6063 HR Croatia NA
## 6064 HR Croatia NA
## 6065 HR Croatia NA
## 6066 HR Croatia NA
## 6067 HR Croatia NA
## 6068 HR Croatia NA
## 6069 HR Croatia NA
## 6070 HR Croatia NA
## 6071 HR Croatia NA
## 6072 HR Croatia NA
## 6073 HR Croatia NA
## 6074 HR Croatia NA
## 6075 HR Croatia NA
## 6076 HR Croatia NA
## 6077 CU Cuba NA
## 6078 CU Cuba 7156.1068
## 6079 CU Cuba 8031.0354
## 6080 CU Cuba 8040.9880
## 6081 CU Cuba 7863.3947
## 6082 CU Cuba 7726.4950
## 6083 CU Cuba 7694.0146
## 6084 CU Cuba 7378.6963
## 6085 CU Cuba 7317.8540
## 6086 CU Cuba 7138.3682
## 6087 CU Cuba 6942.0577
## 6088 CU Cuba 6759.3428
## 6089 CU Cuba 6601.0264
## 6090 CU Cuba 6500.6526
## 6091 CU Cuba 6235.7659
## 6092 CU Cuba 5808.3496
## 6093 CU Cuba 5182.8197
## 6094 CU Cuba 4665.3866
## 6095 CU Cuba 4419.1776
## 6096 CU Cuba 4268.9171
## 6097 CU Cuba 4222.1371
## 6098 CU Cuba 4105.8795
## 6099 CU Cuba 3891.1896
## 6100 CU Cuba 3679.6675
## 6101 CU Cuba 3690.1933
## 6102 CU Cuba 3606.8170
## 6103 CU Cuba 3360.3172
## 6104 CU Cuba 3294.7927
## 6105 CU Cuba 3286.2416
## 6106 CU Cuba 3879.6650
## 6107 CU Cuba 4413.6364
## 6108 CU Cuba 4977.7772
## 6109 CU Cuba 5174.4299
## 6110 CU Cuba 5192.0942
## 6111 CU Cuba 5060.5367
## 6112 CU Cuba 5237.4069
## 6113 CU Cuba 5276.9744
## 6114 CU Cuba 5228.3491
## 6115 CU Cuba 4868.6518
## 6116 CU Cuba 4637.7569
## 6117 CU Cuba 4275.8350
## 6118 CU Cuba 3590.4044
## 6119 CU Cuba 3795.9801
## 6120 CU Cuba 3780.9159
## 6121 CU Cuba 3575.6037
## 6122 CU Cuba 3320.7932
## 6123 CU Cuba 3185.7486
## 6124 CU Cuba 2949.1662
## 6125 CU Cuba 2965.6377
## 6126 CU Cuba 2915.9169
## 6127 CU Cuba 2830.9829
## 6128 CU Cuba 2653.7340
## 6129 CU Cuba NA
## 6130 CU Cuba NA
## 6131 CU Cuba NA
## 6132 CU Cuba NA
## 6133 CU Cuba NA
## 6134 CU Cuba NA
## 6135 CU Cuba NA
## 6136 CU Cuba NA
## 6137 CU Cuba NA
## 6138 CU Cuba NA
## 6139 CW Curacao NA
## 6140 CW Curacao 14748.8955
## 6141 CW Curacao 17796.6996
## 6142 CW Curacao 18198.6641
## 6143 CW Curacao 18504.3057
## 6144 CW Curacao 18890.7588
## 6145 CW Curacao 19260.2698
## 6146 CW Curacao 19459.4944
## 6147 CW Curacao 19963.3453
## 6148 CW Curacao 20356.1818
## 6149 CW Curacao 20539.3601
## 6150 CW Curacao 20706.4372
## 6151 CW Curacao 20952.8997
## 6152 CW Curacao 21202.4307
## 6153 CW Curacao 21011.1569
## 6154 CW Curacao 20913.6631
## 6155 CW Curacao 21112.3220
## 6156 CW Curacao 21512.1115
## 6157 CW Curacao 21840.8911
## 6158 CW Curacao 22231.8795
## 6159 CW Curacao 22171.0657
## 6160 CW Curacao 21523.6459
## 6161 CW Curacao NA
## 6162 CW Curacao NA
## 6163 CW Curacao NA
## 6164 CW Curacao NA
## 6165 CW Curacao NA
## 6166 CW Curacao NA
## 6167 CW Curacao NA
## 6168 CW Curacao NA
## 6169 CW Curacao NA
## 6170 CW Curacao NA
## 6171 CW Curacao NA
## 6172 CW Curacao NA
## 6173 CW Curacao NA
## 6174 CW Curacao NA
## 6175 CW Curacao NA
## 6176 CW Curacao NA
## 6177 CW Curacao NA
## 6178 CW Curacao NA
## 6179 CW Curacao NA
## 6180 CW Curacao NA
## 6181 CW Curacao NA
## 6182 CW Curacao NA
## 6183 CW Curacao NA
## 6184 CW Curacao NA
## 6185 CW Curacao NA
## 6186 CW Curacao NA
## 6187 CW Curacao NA
## 6188 CW Curacao NA
## 6189 CW Curacao NA
## 6190 CW Curacao NA
## 6191 CW Curacao NA
## 6192 CW Curacao NA
## 6193 CW Curacao NA
## 6194 CW Curacao NA
## 6195 CW Curacao NA
## 6196 CW Curacao NA
## 6197 CW Curacao NA
## 6198 CW Curacao NA
## 6199 CW Curacao NA
## 6200 CW Curacao NA
## 6201 CY Cyprus 27714.7461
## 6202 CY Cyprus 26502.8477
## 6203 CY Cyprus 28211.0645
## 6204 CY Cyprus 27161.4043
## 6205 CY Cyprus 26013.8320
## 6206 CY Cyprus 24805.2031
## 6207 CY Cyprus 23408.3359
## 6208 CY Cyprus 22513.7793
## 6209 CY Cyprus 22682.2656
## 6210 CY Cyprus 24216.5293
## 6211 CY Cyprus 25466.1074
## 6212 CY Cyprus 26019.7637
## 6213 CY Cyprus 26181.7441
## 6214 CY Cyprus 27447.2402
## 6215 CY Cyprus 27154.9004
## 6216 CY Cyprus 26393.6777
## 6217 CY Cyprus 25629.5840
## 6218 CY Cyprus 24797.9199
## 6219 CY Cyprus 23929.0996
## 6220 CY Cyprus 23602.5312
## 6221 CY Cyprus 23017.6367
## 6222 CY Cyprus 22382.3965
## 6223 CY Cyprus 21348.2539
## 6224 CY Cyprus 20560.8555
## 6225 CY Cyprus 19615.8145
## 6226 CY Cyprus 19383.9395
## 6227 CY Cyprus 19452.4883
## 6228 CY Cyprus 18279.7441
## 6229 CY Cyprus 17622.0527
## 6230 CY Cyprus 17927.2871
## 6231 CY Cyprus 16828.7363
## 6232 CY Cyprus 17143.2715
## 6233 CY Cyprus 16305.1885
## 6234 CY Cyprus 15321.6162
## 6235 CY Cyprus 14252.5625
## 6236 CY Cyprus 13457.5859
## 6237 CY Cyprus 13126.6104
## 6238 CY Cyprus 12668.6104
## 6239 CY Cyprus 11800.3682
## 6240 CY Cyprus 11269.0283
## 6241 CY Cyprus 10755.5059
## 6242 CY Cyprus 10667.0938
## 6243 CY Cyprus 10196.9492
## 6244 CY Cyprus 9350.3369
## 6245 CY Cyprus 8707.8418
## 6246 CY Cyprus 7484.3091
## 6247 CY Cyprus 6172.8872
## 6248 CY Cyprus NA
## 6249 CY Cyprus NA
## 6250 CY Cyprus NA
## 6251 CY Cyprus NA
## 6252 CY Cyprus NA
## 6253 CY Cyprus NA
## 6254 CY Cyprus NA
## 6255 CY Cyprus NA
## 6256 CY Cyprus NA
## 6257 CY Cyprus NA
## 6258 CY Cyprus NA
## 6259 CY Cyprus NA
## 6260 CY Cyprus NA
## 6261 CY Cyprus NA
## 6262 CY Cyprus NA
## 6263 CZ Czechia 19608.9851
## 6264 CZ Czechia 18984.6373
## 6265 CZ Czechia 20202.1516
## 6266 CZ Czechia 19685.4945
## 6267 CZ Czechia 19139.2399
## 6268 CZ Czechia 18247.0117
## 6269 CZ Czechia 17829.6983
## 6270 CZ Czechia 16951.3791
## 6271 CZ Czechia 16593.8642
## 6272 CZ Czechia 16606.9925
## 6273 CZ Czechia 16761.8273
## 6274 CZ Czechia 16505.9537
## 6275 CZ Czechia 16160.6206
## 6276 CZ Czechia 17046.8850
## 6277 CZ Czechia 16739.1787
## 6278 CZ Czechia 15948.7453
## 6279 CZ Czechia 14978.4132
## 6280 CZ Czechia 14070.2805
## 6281 CZ Czechia 13428.0996
## 6282 CZ Czechia 12959.8175
## 6283 CZ Czechia 12734.9220
## 6284 CZ Czechia 12312.4978
## 6285 CZ Czechia 11805.6718
## 6286 CZ Czechia 11632.6029
## 6287 CZ Czechia 11663.1738
## 6288 CZ Czechia 11711.3154
## 6289 CZ Czechia 11219.1501
## 6290 CZ Czechia 10527.8757
## 6291 CZ Czechia 10233.9422
## 6292 CZ Czechia 10238.2477
## 6293 CZ Czechia 10300.8992
## 6294 CZ Czechia 11626.6259
## 6295 CZ Czechia NA
## 6296 CZ Czechia NA
## 6297 CZ Czechia NA
## 6298 CZ Czechia NA
## 6299 CZ Czechia NA
## 6300 CZ Czechia NA
## 6301 CZ Czechia NA
## 6302 CZ Czechia NA
## 6303 CZ Czechia NA
## 6304 CZ Czechia NA
## 6305 CZ Czechia NA
## 6306 CZ Czechia NA
## 6307 CZ Czechia NA
## 6308 CZ Czechia NA
## 6309 CZ Czechia NA
## 6310 CZ Czechia NA
## 6311 CZ Czechia NA
## 6312 CZ Czechia NA
## 6313 CZ Czechia NA
## 6314 CZ Czechia NA
## 6315 CZ Czechia NA
## 6316 CZ Czechia NA
## 6317 CZ Czechia NA
## 6318 CZ Czechia NA
## 6319 CZ Czechia NA
## 6320 CZ Czechia NA
## 6321 CZ Czechia NA
## 6322 CZ Czechia NA
## 6323 CZ Czechia NA
## 6324 CZ Czechia NA
## 6325 DK Denmark 58585.5077
## 6326 DK Denmark 56202.1659
## 6327 DK Denmark 57553.1312
## 6328 DK Denmark 56563.4885
## 6329 DK Denmark 55735.7649
## 6330 DK Denmark 54556.0690
## 6331 DK Denmark 53254.8564
## 6332 DK Denmark 52404.7640
## 6333 DK Denmark 51831.7979
## 6334 DK Denmark 51567.0402
## 6335 DK Denmark 51644.4635
## 6336 DK Denmark 51173.4662
## 6337 DK Denmark 50457.2325
## 6338 DK Denmark 53345.3576
## 6339 DK Denmark 53935.8702
## 6340 DK Denmark 53687.4415
## 6341 DK Denmark 51835.8327
## 6342 DK Denmark 50792.0010
## 6343 DK Denmark 49599.9970
## 6344 DK Denmark 49541.8556
## 6345 DK Denmark 49469.6888
## 6346 DK Denmark 49241.9280
## 6347 DK Denmark 47622.4391
## 6348 DK Denmark 46412.0390
## 6349 DK Denmark 45570.0798
## 6350 DK Denmark 44314.7905
## 6351 DK Denmark 43310.2501
## 6352 DK Denmark 42257.0983
## 6353 DK Denmark 40253.5399
## 6354 DK Denmark 40383.5588
## 6355 DK Denmark 39739.6099
## 6356 DK Denmark 39295.2434
## 6357 DK Denmark 38786.9310
## 6358 DK Denmark 38561.4119
## 6359 DK Denmark 38585.4029
## 6360 DK Denmark 38536.3229
## 6361 DK Denmark 36783.9410
## 6362 DK Denmark 35382.2346
## 6363 DK Denmark 33949.3314
## 6364 DK Denmark 33067.5698
## 6365 DK Denmark 31869.0422
## 6366 DK Denmark 32073.6413
## 6367 DK Denmark 32268.5203
## 6368 DK Denmark 31142.9246
## 6369 DK Denmark 30559.4559
## 6370 DK Denmark 30091.9728
## 6371 DK Denmark 28480.3555
## 6372 DK Denmark 28984.7792
## 6373 DK Denmark 29450.5971
## 6374 DK Denmark 28464.1398
## 6375 DK Denmark 27545.0669
## 6376 DK Denmark 26927.9590
## 6377 DK Denmark 26704.6332
## 6378 DK Denmark 25211.6295
## 6379 DK Denmark 24031.1274
## 6380 DK Denmark 22952.0113
## 6381 DK Denmark 22519.8115
## 6382 DK Denmark 21707.1637
## 6383 DK Denmark 20025.0368
## 6384 DK Denmark 20055.6437
## 6385 DK Denmark 19128.4044
## 6386 DK Denmark 18107.3759
## 6387 DJ Djibouti 3190.2247
## 6388 DJ Djibouti 3102.3587
## 6389 DJ Djibouti 3110.9946
## 6390 DJ Djibouti 2992.5313
## 6391 DJ Djibouti 2901.0098
## 6392 DJ Djibouti 2795.2257
## 6393 DJ Djibouti 2652.5132
## 6394 DJ Djibouti 2508.8272
## 6395 DJ Djibouti 2384.2353
## 6396 DJ Djibouti NA
## 6397 DJ Djibouti NA
## 6398 DJ Djibouti NA
## 6399 DJ Djibouti NA
## 6400 DJ Djibouti NA
## 6401 DJ Djibouti NA
## 6402 DJ Djibouti NA
## 6403 DJ Djibouti NA
## 6404 DJ Djibouti NA
## 6405 DJ Djibouti NA
## 6406 DJ Djibouti NA
## 6407 DJ Djibouti NA
## 6408 DJ Djibouti NA
## 6409 DJ Djibouti NA
## 6410 DJ Djibouti NA
## 6411 DJ Djibouti NA
## 6412 DJ Djibouti NA
## 6413 DJ Djibouti NA
## 6414 DJ Djibouti NA
## 6415 DJ Djibouti NA
## 6416 DJ Djibouti NA
## 6417 DJ Djibouti NA
## 6418 DJ Djibouti NA
## 6419 DJ Djibouti NA
## 6420 DJ Djibouti NA
## 6421 DJ Djibouti NA
## 6422 DJ Djibouti NA
## 6423 DJ Djibouti NA
## 6424 DJ Djibouti NA
## 6425 DJ Djibouti NA
## 6426 DJ Djibouti NA
## 6427 DJ Djibouti NA
## 6428 DJ Djibouti NA
## 6429 DJ Djibouti NA
## 6430 DJ Djibouti NA
## 6431 DJ Djibouti NA
## 6432 DJ Djibouti NA
## 6433 DJ Djibouti NA
## 6434 DJ Djibouti NA
## 6435 DJ Djibouti NA
## 6436 DJ Djibouti NA
## 6437 DJ Djibouti NA
## 6438 DJ Djibouti NA
## 6439 DJ Djibouti NA
## 6440 DJ Djibouti NA
## 6441 DJ Djibouti NA
## 6442 DJ Djibouti NA
## 6443 DJ Djibouti NA
## 6444 DJ Djibouti NA
## 6445 DJ Djibouti NA
## 6446 DJ Djibouti NA
## 6447 DJ Djibouti NA
## 6448 DJ Djibouti NA
## 6449 DM Dominica 6978.3688
## 6450 DM Dominica 6566.7291
## 6451 DM Dominica 7894.3068
## 6452 DM Dominica 7501.5922
## 6453 DM Dominica 7261.4134
## 6454 DM Dominica 7792.7988
## 6455 DM Dominica 7597.2889
## 6456 DM Dominica 7819.8656
## 6457 DM Dominica 7472.5637
## 6458 DM Dominica 7554.9543
## 6459 DM Dominica 7640.3402
## 6460 DM Dominica 7661.2399
## 6461 DM Dominica 7613.1670
## 6462 DM Dominica 7705.3301
## 6463 DM Dominica 7196.3562
## 6464 DM Dominica 6774.0423
## 6465 DM Dominica 6485.1160
## 6466 DM Dominica 6460.5259
## 6467 DM Dominica 6294.7577
## 6468 DM Dominica 5940.9362
## 6469 DM Dominica 6128.6656
## 6470 DM Dominica 6134.4300
## 6471 DM Dominica 5978.8738
## 6472 DM Dominica 5927.6429
## 6473 DM Dominica 5678.9621
## 6474 DM Dominica 5530.7791
## 6475 DM Dominica 5351.2856
## 6476 DM Dominica 5198.3262
## 6477 DM Dominica 5213.1180
## 6478 DM Dominica 5122.4995
## 6479 DM Dominica 5032.6664
## 6480 DM Dominica 4962.5668
## 6481 DM Dominica 4687.5453
## 6482 DM Dominica 4664.2060
## 6483 DM Dominica 4288.1184
## 6484 DM Dominica 3995.3733
## 6485 DM Dominica 3696.9791
## 6486 DM Dominica 3613.6412
## 6487 DM Dominica 3438.3911
## 6488 DM Dominica 3329.0866
## 6489 DM Dominica 3184.2996
## 6490 DM Dominica 2873.0034
## 6491 DM Dominica 2545.9901
## 6492 DM Dominica 3147.0786
## 6493 DM Dominica 2879.5613
## 6494 DM Dominica NA
## 6495 DM Dominica NA
## 6496 DM Dominica NA
## 6497 DM Dominica NA
## 6498 DM Dominica NA
## 6499 DM Dominica NA
## 6500 DM Dominica NA
## 6501 DM Dominica NA
## 6502 DM Dominica NA
## 6503 DM Dominica NA
## 6504 DM Dominica NA
## 6505 DM Dominica NA
## 6506 DM Dominica NA
## 6507 DM Dominica NA
## 6508 DM Dominica NA
## 6509 DM Dominica NA
## 6510 DM Dominica NA
## 6511 DO Dominican Republic 8536.6521
## 6512 DO Dominican Republic 7677.7104
## 6513 DO Dominican Republic 8314.3448
## 6514 DO Dominican Republic 7997.7611
## 6515 DO Dominican Republic 7556.8537
## 6516 DO Dominican Republic 7300.0333
## 6517 DO Dominican Republic 6921.5206
## 6518 DO Dominican Republic 6547.3080
## 6519 DO Dominican Republic 6187.2830
## 6520 DO Dominican Republic 5969.3528
## 6521 DO Dominican Republic 5881.1354
## 6522 DO Dominican Republic 5771.9184
## 6523 DO Dominican Republic 5393.4703
## 6524 DO Dominican Republic 5409.9479
## 6525 DO Dominican Republic 5308.6324
## 6526 DO Dominican Republic 5006.5524
## 6527 DO Dominican Republic 4647.0379
## 6528 DO Dominican Republic 4304.7701
## 6529 DO Dominican Republic 4255.7662
## 6530 DO Dominican Republic 4375.7898
## 6531 DO Dominican Republic 4249.1001
## 6532 DO Dominican Republic 4209.4119
## 6533 DO Dominican Republic 4083.6365
## 6534 DO Dominican Republic 3915.1361
## 6535 DO Dominican Republic 3727.8002
## 6536 DO Dominican Republic 3480.2742
## 6537 DO Dominican Republic 3340.0439
## 6538 DO Dominican Republic 3216.1089
## 6539 DO Dominican Republic 3191.6041
## 6540 DO Dominican Republic 3028.1060
## 6541 DO Dominican Republic 2774.2546
## 6542 DO Dominican Republic 2801.0584
## 6543 DO Dominican Republic 3020.0648
## 6544 DO Dominican Republic 2949.4301
## 6545 DO Dominican Republic 2944.4593
## 6546 DO Dominican Republic 2727.8216
## 6547 DO Dominican Republic 2689.1246
## 6548 DO Dominican Republic 2804.9201
## 6549 DO Dominican Republic 2829.2402
## 6550 DO Dominican Republic 2762.8719
## 6551 DO Dominican Republic 2777.0784
## 6552 DO Dominican Republic 2723.6531
## 6553 DO Dominican Republic 2581.3974
## 6554 DO Dominican Republic 2528.4303
## 6555 DO Dominican Republic 2535.9116
## 6556 DO Dominican Republic 2475.8867
## 6557 DO Dominican Republic 2378.9383
## 6558 DO Dominican Republic 2320.3264
## 6559 DO Dominican Republic 2247.0845
## 6560 DO Dominican Republic 2044.3978
## 6561 DO Dominican Republic 1903.2408
## 6562 DO Dominican Republic 1765.2520
## 6563 DO Dominican Republic 1536.3310
## 6564 DO Dominican Republic 1426.3938
## 6565 DO Dominican Republic 1465.9490
## 6566 DO Dominican Republic 1462.4761
## 6567 DO Dominican Republic 1329.5027
## 6568 DO Dominican Republic 1567.8966
## 6569 DO Dominican Republic 1516.5916
## 6570 DO Dominican Republic 1471.3459
## 6571 DO Dominican Republic 1299.3952
## 6572 DO Dominican Republic 1375.4136
## 6573 EC Ecuador 5464.6293
## 6574 EC Ecuador 5315.5165
## 6575 EC Ecuador 5853.8131
## 6576 EC Ecuador 5952.2181
## 6577 EC Ecuador 5981.1326
## 6578 EC Ecuador 5947.0020
## 6579 EC Ecuador 6124.4909
## 6580 EC Ecuador 6218.2392
## 6581 EC Ecuador 6084.4439
## 6582 EC Ecuador 5885.0999
## 6583 EC Ecuador 5654.9281
## 6584 EC Ecuador 5323.7375
## 6585 EC Ecuador 5224.8383
## 6586 EC Ecuador 5280.7136
## 6587 EC Ecuador 5048.1446
## 6588 EC Ecuador 5023.2911
## 6589 EC Ecuador 4892.6913
## 6590 EC Ecuador 4725.2324
## 6591 EC Ecuador 4440.7298
## 6592 EC Ecuador 4397.4230
## 6593 EC Ecuador 4299.2021
## 6594 EC Ecuador 4209.3450
## 6595 EC Ecuador 4243.8722
## 6596 EC Ecuador 4543.9998
## 6597 EC Ecuador 4491.2009
## 6598 EC Ecuador 4396.2213
## 6599 EC Ecuador 4414.9283
## 6600 EC Ecuador 4412.9021
## 6601 EC Ecuador 4327.8633
## 6602 EC Ecuador 4341.2800
## 6603 EC Ecuador 4350.3063
## 6604 EC Ecuador 4269.7829
## 6605 EC Ecuador 4216.7664
## 6606 EC Ecuador 4275.8965
## 6607 EC Ecuador 4136.9336
## 6608 EC Ecuador 4250.2871
## 6609 EC Ecuador 4210.5312
## 6610 EC Ecuador 4153.1079
## 6611 EC Ecuador 4149.5651
## 6612 EC Ecuador 4270.1380
## 6613 EC Ecuador 4353.6688
## 6614 EC Ecuador 4229.8575
## 6615 EC Ecuador 4186.0630
## 6616 EC Ecuador 4142.7351
## 6617 EC Ecuador 4024.5150
## 6618 EC Ecuador 4068.9123
## 6619 EC Ecuador 3893.4524
## 6620 EC Ecuador 3607.0259
## 6621 EC Ecuador 3335.8742
## 6622 EC Ecuador 3011.9183
## 6623 EC Ecuador 2951.5426
## 6624 EC Ecuador 2858.2670
## 6625 EC Ecuador 2753.4183
## 6626 EC Ecuador 2708.6539
## 6627 EC Ecuador 2736.9940
## 6628 EC Ecuador 2693.9102
## 6629 EC Ecuador 2783.2133
## 6630 EC Ecuador 2774.3803
## 6631 EC Ecuador 2658.6534
## 6632 EC Ecuador 2679.4970
## 6633 EC Ecuador 2627.6393
## 6634 EC Ecuador 2571.3523
## 6635 EG Egypt, Arab Rep. 4085.6249
## 6636 EG Egypt, Arab Rep. 4028.4209
## 6637 EG Egypt, Arab Rep. 3964.9871
## 6638 EG Egypt, Arab Rep. 3831.1998
## 6639 EG Egypt, Arab Rep. 3712.6037
## 6640 EG Egypt, Arab Rep. 3638.8949
## 6641 EG Egypt, Arab Rep. 3562.9327
## 6642 EG Egypt, Arab Rep. 3489.8641
## 6643 EG Egypt, Arab Rep. 3468.4688
## 6644 EG Egypt, Arab Rep. 3472.1483
## 6645 EG Egypt, Arab Rep. 3472.5983
## 6646 EG Egypt, Arab Rep. 3485.2822
## 6647 EG Egypt, Arab Rep. 3381.1154
## 6648 EG Egypt, Arab Rep. 3290.9407
## 6649 EG Egypt, Arab Rep. 3126.2750
## 6650 EG Egypt, Arab Rep. 2970.9448
## 6651 EG Egypt, Arab Rep. 2830.3501
## 6652 EG Egypt, Arab Rep. 2758.5664
## 6653 EG Egypt, Arab Rep. 2699.1011
## 6654 EG Egypt, Arab Rep. 2664.6420
## 6655 EG Egypt, Arab Rep. 2651.8655
## 6656 EG Egypt, Arab Rep. 2610.4765
## 6657 EG Egypt, Arab Rep. 2501.9819
## 6658 EG Egypt, Arab Rep. 2406.0452
## 6659 EG Egypt, Arab Rep. 2324.9166
## 6660 EG Egypt, Arab Rep. 2248.5942
## 6661 EG Egypt, Arab Rep. 2185.3022
## 6662 EG Egypt, Arab Rep. 2130.6757
## 6663 EG Egypt, Arab Rep. 2090.8404
## 6664 EG Egypt, Arab Rep. 2073.9402
## 6665 EG Egypt, Arab Rep. 2028.0919
## 6666 EG Egypt, Arab Rep. 2051.6123
## 6667 EG Egypt, Arab Rep. 1989.2741
## 6668 EG Egypt, Arab Rep. 1945.3086
## 6669 EG Egypt, Arab Rep. 1894.5079
## 6670 EG Egypt, Arab Rep. 1874.6718
## 6671 EG Egypt, Arab Rep. 1838.5757
## 6672 EG Egypt, Arab Rep. 1784.6640
## 6673 EG Egypt, Arab Rep. 1669.3458
## 6674 EG Egypt, Arab Rep. 1629.8972
## 6675 EG Egypt, Arab Rep. 1521.0253
## 6676 EG Egypt, Arab Rep. 1452.5982
## 6677 EG Egypt, Arab Rep. 1352.9479
## 6678 EG Egypt, Arab Rep. 1325.1887
## 6679 EG Egypt, Arab Rep. 1248.5439
## 6680 EG Egypt, Arab Rep. 1171.7697
## 6681 EG Egypt, Arab Rep. 1057.8457
## 6682 EG Egypt, Arab Rep. 992.6995
## 6683 EG Egypt, Arab Rep. 998.9621
## 6684 EG Egypt, Arab Rep. 986.3396
## 6685 EG Egypt, Arab Rep. 978.5268
## 6686 EG Egypt, Arab Rep. 962.1166
## 6687 EG Egypt, Arab Rep. 933.0246
## 6688 EG Egypt, Arab Rep. 908.3707
## 6689 EG Egypt, Arab Rep. 946.9741
## 6690 EG Egypt, Arab Rep. 964.0365
## 6691 EG Egypt, Arab Rep. 941.9867
## 6692 EG Egypt, Arab Rep. 921.7362
## 6693 EG Egypt, Arab Rep. 848.7588
## 6694 EG Egypt, Arab Rep. 788.7199
## 6695 EG Egypt, Arab Rep. 779.9913
## 6696 EG Egypt, Arab Rep. 762.1341
## 6697 SV El Salvador 4004.8477
## 6698 SV El Salvador 3632.4539
## 6699 SV El Salvador 3993.5291
## 6700 SV El Salvador 3920.5263
## 6701 SV El Salvador 3846.9739
## 6702 SV El Salvador 3781.3786
## 6703 SV El Salvador 3705.5797
## 6704 SV El Salvador 3636.0103
## 6705 SV El Salvador 3591.4271
## 6706 SV El Salvador 3528.8671
## 6707 SV El Salvador 3447.3501
## 6708 SV El Salvador 3334.9328
## 6709 SV El Salvador 3280.0204
## 6710 SV El Salvador 3364.1004
## 6711 SV El Salvador 3308.0496
## 6712 SV El Salvador 3261.7639
## 6713 SV El Salvador 3140.0330
## 6714 SV El Salvador 3071.5458
## 6715 SV El Salvador 3059.5664
## 6716 SV El Salvador 3028.5462
## 6717 SV El Salvador 2999.3239
## 6718 SV El Salvador 2992.9008
## 6719 SV El Salvador 2981.3417
## 6720 SV El Salvador 2941.9404
## 6721 SV El Salvador 2891.6014
## 6722 SV El Salvador 2831.3876
## 6723 SV El Salvador 2839.2052
## 6724 SV El Salvador 2743.3731
## 6725 SV El Salvador 2654.5163
## 6726 SV El Salvador 2542.9032
## 6727 SV El Salvador 2409.0314
## 6728 SV El Salvador 2406.0483
## 6729 SV El Salvador 2325.7837
## 6730 SV El Salvador 2333.7927
## 6731 SV El Salvador 2320.4866
## 6732 SV El Salvador 2293.2103
## 6733 SV El Salvador 2319.1379
## 6734 SV El Salvador 2336.0966
## 6735 SV El Salvador 2337.0306
## 6736 SV El Salvador 2334.4908
## 6737 SV El Salvador 2529.5331
## 6738 SV El Salvador 2726.9905
## 6739 SV El Salvador 3297.5905
## 6740 SV El Salvador 3507.1051
## 6741 SV El Salvador 3397.5813
## 6742 SV El Salvador 3249.9762
## 6743 SV El Salvador 3162.8811
## 6744 SV El Salvador 3144.5130
## 6745 SV El Salvador 3057.4990
## 6746 SV El Salvador 2988.8500
## 6747 SV El Salvador 2889.2006
## 6748 SV El Salvador 2855.3292
## 6749 SV El Salvador 2847.3749
## 6750 SV El Salvador 2826.7175
## 6751 SV El Salvador 2814.2700
## 6752 SV El Salvador 2744.8603
## 6753 SV El Salvador 2635.5589
## 6754 SV El Salvador NA
## 6755 SV El Salvador NA
## 6756 SV El Salvador NA
## 6757 SV El Salvador NA
## 6758 SV El Salvador NA
## 6759 GQ Equatorial Guinea 6575.6722
## 6760 GQ Equatorial Guinea 6860.3741
## 6761 GQ Equatorial Guinea 7412.5812
## 6762 GQ Equatorial Guinea 8124.1829
## 6763 GQ Equatorial Guinea 8986.9510
## 6764 GQ Equatorial Guinea 9894.0063
## 6765 GQ Equatorial Guinea 11283.3980
## 6766 GQ Equatorial Guinea 12926.5335
## 6767 GQ Equatorial Guinea 13421.5657
## 6768 GQ Equatorial Guinea 14614.1769
## 6769 GQ Equatorial Guinea 14098.6464
## 6770 GQ Equatorial Guinea 13841.3964
## 6771 GQ Equatorial Guinea 15906.4965
## 6772 GQ Equatorial Guinea 16438.6414
## 6773 GQ Equatorial Guinea 14619.7506
## 6774 GQ Equatorial Guinea 13282.9425
## 6775 GQ Equatorial Guinea 12908.0638
## 6776 GQ Equatorial Guinea 11558.6754
## 6777 GQ Equatorial Guinea 8745.2691
## 6778 GQ Equatorial Guinea 8003.9618
## 6779 GQ Equatorial Guinea 6983.4390
## 6780 GQ Equatorial Guinea 4454.0382
## 6781 GQ Equatorial Guinea 3925.9055
## 6782 GQ Equatorial Guinea 3254.2914
## 6783 GQ Equatorial Guinea 2737.2146
## 6784 GQ Equatorial Guinea 1138.7646
## 6785 GQ Equatorial Guinea 709.8652
## 6786 GQ Equatorial Guinea 626.4943
## 6787 GQ Equatorial Guinea 556.0927
## 6788 GQ Equatorial Guinea 518.0430
## 6789 GQ Equatorial Guinea 397.2734
## 6790 GQ Equatorial Guinea 414.4522
## 6791 GQ Equatorial Guinea 434.9105
## 6792 GQ Equatorial Guinea 453.3071
## 6793 GQ Equatorial Guinea 455.4136
## 6794 GQ Equatorial Guinea 452.5544
## 6795 GQ Equatorial Guinea 485.6025
## 6796 GQ Equatorial Guinea 456.7711
## 6797 GQ Equatorial Guinea 486.4505
## 6798 GQ Equatorial Guinea 501.6285
## 6799 GQ Equatorial Guinea 528.4512
## 6800 GQ Equatorial Guinea 528.4901
## 6801 GQ Equatorial Guinea NA
## 6802 GQ Equatorial Guinea NA
## 6803 GQ Equatorial Guinea NA
## 6804 GQ Equatorial Guinea NA
## 6805 GQ Equatorial Guinea NA
## 6806 GQ Equatorial Guinea NA
## 6807 GQ Equatorial Guinea NA
## 6808 GQ Equatorial Guinea NA
## 6809 GQ Equatorial Guinea NA
## 6810 GQ Equatorial Guinea NA
## 6811 GQ Equatorial Guinea NA
## 6812 GQ Equatorial Guinea NA
## 6813 GQ Equatorial Guinea NA
## 6814 GQ Equatorial Guinea NA
## 6815 GQ Equatorial Guinea NA
## 6816 GQ Equatorial Guinea NA
## 6817 GQ Equatorial Guinea NA
## 6818 GQ Equatorial Guinea NA
## 6819 GQ Equatorial Guinea NA
## 6820 GQ Equatorial Guinea NA
## 6821 ER Eritrea NA
## 6822 ER Eritrea NA
## 6823 ER Eritrea NA
## 6824 ER Eritrea NA
## 6825 ER Eritrea NA
## 6826 ER Eritrea NA
## 6827 ER Eritrea NA
## 6828 ER Eritrea NA
## 6829 ER Eritrea NA
## 6830 ER Eritrea NA
## 6831 ER Eritrea 700.9982
## 6832 ER Eritrea 653.8688
## 6833 ER Eritrea 650.1897
## 6834 ER Eritrea 637.6027
## 6835 ER Eritrea 722.3670
## 6836 ER Eritrea 731.3222
## 6837 ER Eritrea 762.3992
## 6838 ER Eritrea 772.4624
## 6839 ER Eritrea 796.1971
## 6840 ER Eritrea 857.4481
## 6841 ER Eritrea 869.7055
## 6842 ER Eritrea 828.4017
## 6843 ER Eritrea 876.2990
## 6844 ER Eritrea 888.4803
## 6845 ER Eritrea 877.4784
## 6846 ER Eritrea 812.6955
## 6847 ER Eritrea 741.2072
## 6848 ER Eritrea 715.9940
## 6849 ER Eritrea 585.3214
## 6850 ER Eritrea 511.5741
## 6851 ER Eritrea NA
## 6852 ER Eritrea NA
## 6853 ER Eritrea NA
## 6854 ER Eritrea NA
## 6855 ER Eritrea NA
## 6856 ER Eritrea NA
## 6857 ER Eritrea NA
## 6858 ER Eritrea NA
## 6859 ER Eritrea NA
## 6860 ER Eritrea NA
## 6861 ER Eritrea NA
## 6862 ER Eritrea NA
## 6863 ER Eritrea NA
## 6864 ER Eritrea NA
## 6865 ER Eritrea NA
## 6866 ER Eritrea NA
## 6867 ER Eritrea NA
## 6868 ER Eritrea NA
## 6869 ER Eritrea NA
## 6870 ER Eritrea NA
## 6871 ER Eritrea NA
## 6872 ER Eritrea NA
## 6873 ER Eritrea NA
## 6874 ER Eritrea NA
## 6875 ER Eritrea NA
## 6876 ER Eritrea NA
## 6877 ER Eritrea NA
## 6878 ER Eritrea NA
## 6879 ER Eritrea NA
## 6880 ER Eritrea NA
## 6881 ER Eritrea NA
## 6882 ER Eritrea NA
## 6883 EE Estonia 21421.1459
## 6884 EE Estonia 19767.0776
## 6885 EE Estonia 20408.4362
## 6886 EE Estonia 19677.6768
## 6887 EE Estonia 18962.4103
## 6888 EE Estonia 17945.9450
## 6889 EE Estonia 17402.0376
## 6890 EE Estonia 17096.6446
## 6891 EE Estonia 16553.3833
## 6892 EE Estonia 16257.4722
## 6893 EE Estonia 15692.7888
## 6894 EE Estonia 14585.8387
## 6895 EE Estonia 14205.3949
## 6896 EE Estonia 16607.5681
## 6897 EE Estonia 17459.0983
## 6898 EE Estonia 16155.2074
## 6899 EE Estonia 14631.3873
## 6900 EE Estonia 13282.5455
## 6901 EE Estonia 12362.2483
## 6902 EE Estonia 11417.1680
## 6903 EE Estonia 10625.5793
## 6904 EE Estonia 9960.1390
## 6905 EE Estonia 9091.3332
## 6906 EE Estonia 9157.0648
## 6907 EE Estonia 8692.2964
## 6908 EE Estonia 7601.6690
## 6909 EE Estonia 7137.5308
## 6910 EE Estonia NA
## 6911 EE Estonia NA
## 6912 EE Estonia NA
## 6913 EE Estonia NA
## 6914 EE Estonia NA
## 6915 EE Estonia NA
## 6916 EE Estonia NA
## 6917 EE Estonia NA
## 6918 EE Estonia NA
## 6919 EE Estonia NA
## 6920 EE Estonia NA
## 6921 EE Estonia NA
## 6922 EE Estonia NA
## 6923 EE Estonia NA
## 6924 EE Estonia NA
## 6925 EE Estonia NA
## 6926 EE Estonia NA
## 6927 EE Estonia NA
## 6928 EE Estonia NA
## 6929 EE Estonia NA
## 6930 EE Estonia NA
## 6931 EE Estonia NA
## 6932 EE Estonia NA
## 6933 EE Estonia NA
## 6934 EE Estonia NA
## 6935 EE Estonia NA
## 6936 EE Estonia NA
## 6937 EE Estonia NA
## 6938 EE Estonia NA
## 6939 EE Estonia NA
## 6940 EE Estonia NA
## 6941 EE Estonia NA
## 6942 EE Estonia NA
## 6943 EE Estonia NA
## 6944 EE Estonia NA
## 6945 SZ Eswatini 3958.1530
## 6946 SZ Eswatini 3723.2961
## 6947 SZ Eswatini 3833.2468
## 6948 SZ Eswatini 3775.0399
## 6949 SZ Eswatini 3724.7619
## 6950 SZ Eswatini 3686.2157
## 6951 SZ Eswatini 3680.3495
## 6952 SZ Eswatini 3629.7990
## 6953 SZ Eswatini 3623.6602
## 6954 SZ Eswatini 3513.3769
## 6955 SZ Eswatini 3356.0438
## 6956 SZ Eswatini 3304.4398
## 6957 SZ Eswatini 3205.8752
## 6958 SZ Eswatini 3179.0643
## 6959 SZ Eswatini 3175.2233
## 6960 SZ Eswatini 3059.6097
## 6961 SZ Eswatini 2902.0991
## 6962 SZ Eswatini 2749.3002
## 6963 SZ Eswatini 2662.2079
## 6964 SZ Eswatini 2572.1777
## 6965 SZ Eswatini 2477.4815
## 6966 SZ Eswatini 2471.5588
## 6967 SZ Eswatini 2456.4819
## 6968 SZ Eswatini 2420.6069
## 6969 SZ Eswatini 2399.5923
## 6970 SZ Eswatini 2371.4640
## 6971 SZ Eswatini 2329.7251
## 6972 SZ Eswatini 2269.5250
## 6973 SZ Eswatini 2266.0420
## 6974 SZ Eswatini 2250.2776
## 6975 SZ Eswatini 2235.9846
## 6976 SZ Eswatini 2258.3371
## 6977 SZ Eswatini 1922.0302
## 6978 SZ Eswatini 1756.6420
## 6979 SZ Eswatini 1703.7019
## 6980 SZ Eswatini 1537.9974
## 6981 SZ Eswatini 1418.0325
## 6982 SZ Eswatini 1414.4494
## 6983 SZ Eswatini 1379.6067
## 6984 SZ Eswatini 1411.4839
## 6985 SZ Eswatini 1444.2868
## 6986 SZ Eswatini 1303.8104
## 6987 SZ Eswatini 1199.3247
## 6988 SZ Eswatini 1202.3870
## 6989 SZ Eswatini 1225.7302
## 6990 SZ Eswatini 1252.6674
## 6991 SZ Eswatini 1320.3629
## 6992 SZ Eswatini 1195.0412
## 6993 SZ Eswatini 1164.2023
## 6994 SZ Eswatini 1099.4873
## 6995 SZ Eswatini 1073.5947
## 6996 SZ Eswatini 971.7299
## 6997 SZ Eswatini NA
## 6998 SZ Eswatini NA
## 6999 SZ Eswatini NA
## 7000 SZ Eswatini NA
## 7001 SZ Eswatini NA
## 7002 SZ Eswatini NA
## 7003 SZ Eswatini NA
## 7004 SZ Eswatini NA
## 7005 SZ Eswatini NA
## 7006 SZ Eswatini NA
## 7007 ET Ethiopia 852.0062
## 7008 ET Ethiopia 826.9731
## 7009 ET Ethiopia 799.7951
## 7010 ET Ethiopia 757.3504
## 7011 ET Ethiopia 727.8441
## 7012 ET Ethiopia 682.2394
## 7013 ET Ethiopia 640.5419
## 7014 ET Ethiopia 596.4551
## 7015 ET Ethiopia 556.3263
## 7016 ET Ethiopia 517.5135
## 7017 ET Ethiopia 489.9927
## 7018 ET Ethiopia 453.2988
## 7019 ET Ethiopia 414.1205
## 7020 ET Ethiopia 391.2556
## 7021 ET Ethiopia 362.9693
## 7022 ET Ethiopia 334.7274
## 7023 ET Ethiopia 310.4826
## 7024 ET Ethiopia 285.5457
## 7025 ET Ethiopia 258.6288
## 7026 ET Ethiopia 271.9869
## 7027 ET Ethiopia 275.7222
## 7028 ET Ethiopia 262.0253
## 7029 ET Ethiopia 254.2476
## 7030 ET Ethiopia 248.8657
## 7031 ET Ethiopia 265.4683
## 7032 ET Ethiopia 265.3309
## 7033 ET Ethiopia 243.5984
## 7034 ET Ethiopia 237.2994
## 7035 ET Ethiopia 238.0991
## 7036 ET Ethiopia 218.1018
## 7037 ET Ethiopia 247.5432
## 7038 ET Ethiopia 276.1558
## 7039 ET Ethiopia 278.2122
## 7040 ET Ethiopia 288.6723
## 7041 ET Ethiopia 296.6915
## 7042 ET Ethiopia 269.0439
## 7043 ET Ethiopia 253.2675
## 7044 ET Ethiopia 294.2826
## 7045 ET Ethiopia 312.6908
## 7046 ET Ethiopia 297.8603
## 7047 ET Ethiopia 303.4468
## 7048 ET Ethiopia NA
## 7049 ET Ethiopia NA
## 7050 ET Ethiopia NA
## 7051 ET Ethiopia NA
## 7052 ET Ethiopia NA
## 7053 ET Ethiopia NA
## 7054 ET Ethiopia NA
## 7055 ET Ethiopia NA
## 7056 ET Ethiopia NA
## 7057 ET Ethiopia NA
## 7058 ET Ethiopia NA
## 7059 ET Ethiopia NA
## 7060 ET Ethiopia NA
## 7061 ET Ethiopia NA
## 7062 ET Ethiopia NA
## 7063 ET Ethiopia NA
## 7064 ET Ethiopia NA
## 7065 ET Ethiopia NA
## 7066 ET Ethiopia NA
## 7067 ET Ethiopia NA
## 7068 ET Ethiopia NA
## 7069 FO Faroe Islands NA
## 7070 FO Faroe Islands NA
## 7071 FO Faroe Islands NA
## 7072 FO Faroe Islands NA
## 7073 FO Faroe Islands NA
## 7074 FO Faroe Islands NA
## 7075 FO Faroe Islands 53310.2620
## 7076 FO Faroe Islands NA
## 7077 FO Faroe Islands NA
## 7078 FO Faroe Islands NA
## 7079 FO Faroe Islands NA
## 7080 FO Faroe Islands NA
## 7081 FO Faroe Islands NA
## 7082 FO Faroe Islands NA
## 7083 FO Faroe Islands NA
## 7084 FO Faroe Islands NA
## 7085 FO Faroe Islands NA
## 7086 FO Faroe Islands NA
## 7087 FO Faroe Islands NA
## 7088 FO Faroe Islands NA
## 7089 FO Faroe Islands NA
## 7090 FO Faroe Islands NA
## 7091 FO Faroe Islands NA
## 7092 FO Faroe Islands NA
## 7093 FO Faroe Islands NA
## 7094 FO Faroe Islands NA
## 7095 FO Faroe Islands NA
## 7096 FO Faroe Islands NA
## 7097 FO Faroe Islands NA
## 7098 FO Faroe Islands NA
## 7099 FO Faroe Islands NA
## 7100 FO Faroe Islands NA
## 7101 FO Faroe Islands NA
## 7102 FO Faroe Islands NA
## 7103 FO Faroe Islands NA
## 7104 FO Faroe Islands NA
## 7105 FO Faroe Islands NA
## 7106 FO Faroe Islands NA
## 7107 FO Faroe Islands NA
## 7108 FO Faroe Islands NA
## 7109 FO Faroe Islands NA
## 7110 FO Faroe Islands NA
## 7111 FO Faroe Islands NA
## 7112 FO Faroe Islands NA
## 7113 FO Faroe Islands NA
## 7114 FO Faroe Islands NA
## 7115 FO Faroe Islands NA
## 7116 FO Faroe Islands NA
## 7117 FO Faroe Islands NA
## 7118 FO Faroe Islands NA
## 7119 FO Faroe Islands NA
## 7120 FO Faroe Islands NA
## 7121 FO Faroe Islands NA
## 7122 FO Faroe Islands NA
## 7123 FO Faroe Islands NA
## 7124 FO Faroe Islands NA
## 7125 FO Faroe Islands NA
## 7126 FO Faroe Islands NA
## 7127 FO Faroe Islands NA
## 7128 FO Faroe Islands NA
## 7129 FO Faroe Islands NA
## 7130 FO Faroe Islands NA
## 7131 FJ Fiji 4708.0919
## 7132 FJ Fiji 4943.7696
## 7133 FJ Fiji 5869.0211
## 7134 FJ Fiji 5938.4275
## 7135 FJ Fiji 5759.6586
## 7136 FJ Fiji 5498.6619
## 7137 FJ Fiji 5390.7142
## 7138 FJ Fiji 5171.5276
## 7139 FJ Fiji 4901.8976
## 7140 FJ Fiji 4683.2263
## 7141 FJ Fiji 4626.6833
## 7142 FJ Fiji 4523.8662
## 7143 FJ Fiji 4425.8480
## 7144 FJ Fiji 4532.0132
## 7145 FJ Fiji 4534.8828
## 7146 FJ Fiji 4619.7340
## 7147 FJ Fiji 4570.2859
## 7148 FJ Fiji 4559.2814
## 7149 FJ Fiji 4339.2778
## 7150 FJ Fiji 4300.6413
## 7151 FJ Fiji 4174.1182
## 7152 FJ Fiji 4106.9663
## 7153 FJ Fiji 4202.3926
## 7154 FJ Fiji 3892.2000
## 7155 FJ Fiji 3878.1754
## 7156 FJ Fiji 4007.6120
## 7157 FJ Fiji 3868.2488
## 7158 FJ Fiji 3822.3119
## 7159 FJ Fiji 3688.1130
## 7160 FJ Fiji 3662.0868
## 7161 FJ Fiji 3494.1215
## 7162 FJ Fiji 3624.7108
## 7163 FJ Fiji 3444.7873
## 7164 FJ Fiji 3213.7259
## 7165 FJ Fiji 3188.3644
## 7166 FJ Fiji 3429.1049
## 7167 FJ Fiji 3213.1927
## 7168 FJ Fiji 3422.9056
## 7169 FJ Fiji 3226.8779
## 7170 FJ Fiji 3446.4929
## 7171 FJ Fiji 3762.7635
## 7172 FJ Fiji 3626.3225
## 7173 FJ Fiji 3766.8109
## 7174 FJ Fiji 3423.6897
## 7175 FJ Fiji 3423.3261
## 7176 FJ Fiji 3291.5555
## 7177 FJ Fiji 3264.6496
## 7178 FJ Fiji 3311.8036
## 7179 FJ Fiji 3293.5186
## 7180 FJ Fiji 3012.2670
## 7181 FJ Fiji 2861.6452
## 7182 FJ Fiji 2734.0984
## 7183 FJ Fiji 2477.5929
## 7184 FJ Fiji 2466.9902
## 7185 FJ Fiji 2337.4198
## 7186 FJ Fiji 2112.1907
## 7187 FJ Fiji 2168.8196
## 7188 FJ Fiji 2295.4133
## 7189 FJ Fiji 2260.0743
## 7190 FJ Fiji 2198.6789
## 7191 FJ Fiji 2197.3415
## 7192 FJ Fiji 2196.9262
## 7193 FI Finland 46471.3594
## 7194 FI Finland 45009.6153
## 7195 FI Finland 46135.0777
## 7196 FI Finland 45628.9257
## 7197 FI Finland 45173.6294
## 7198 FI Finland 43878.9667
## 7199 FI Finland 42801.9081
## 7200 FI Finland 42710.9213
## 7201 FI Finland 43044.9971
## 7202 FI Finland 43637.2487
## 7203 FI Finland 44466.8177
## 7204 FI Finland 43563.5722
## 7205 FI Finland 42412.0978
## 7206 FI Finland 46358.6204
## 7207 FI Finland 46212.6410
## 7208 FI Finland 44074.0309
## 7209 FI Finland 42530.6197
## 7210 FI Finland 41522.1751
## 7211 FI Finland 40044.3049
## 7212 FI Finland 39351.3904
## 7213 FI Finland 38784.7726
## 7214 FI Finland 37884.3913
## 7215 FI Finland 35891.0056
## 7216 FI Finland 34464.9909
## 7217 FI Finland 32768.3781
## 7218 FI Finland 30908.3003
## 7219 FI Finland 29912.8980
## 7220 FI Finland 28812.3036
## 7221 FI Finland 27833.7026
## 7222 FI Finland 28155.0896
## 7223 FI Finland 29278.3637
## 7224 FI Finland 31279.9520
## 7225 FI Finland 31209.7581
## 7226 FI Finland 29806.3433
## 7227 FI Finland 28410.8751
## 7228 FI Finland 27508.2000
## 7229 FI Finland 26857.5936
## 7230 FI Finland 26045.5139
## 7231 FI Finland 25363.8552
## 7232 FI Finland 24744.2968
## 7233 FI Finland 24133.2421
## 7234 FI Finland 23921.6145
## 7235 FI Finland 22769.1073
## 7236 FI Finland 21309.7127
## 7237 FI Finland 20764.7166
## 7238 FI Finland 20773.1309
## 7239 FI Finland 20764.3370
## 7240 FI Finland 20486.9386
## 7241 FI Finland 19948.8274
## 7242 FI Finland 18752.7792
## 7243 FI Finland 17510.2266
## 7244 FI Finland 17128.6307
## 7245 FI Finland 16280.1983
## 7246 FI Finland 14846.4872
## 7247 FI Finland 14577.5309
## 7248 FI Finland 14345.5591
## 7249 FI Finland 14065.6737
## 7250 FI Finland 13401.9566
## 7251 FI Finland 12805.8626
## 7252 FI Finland 12486.5232
## 7253 FI Finland 12207.6936
## 7254 FI Finland 11425.2934
## 7255 FR France 38210.2182
## 7256 FR France 35785.9670
## 7257 FR France 38912.3313
## 7258 FR France 38291.8658
## 7259 FR France 37694.0833
## 7260 FR France 36956.7958
## 7261 FR France 36652.9223
## 7262 FR France 36378.6187
## 7263 FR France 36205.1678
## 7264 FR France 36183.4880
## 7265 FR France 36245.5428
## 7266 FR France 35639.8041
## 7267 FR France 35131.4491
## 7268 FR France 36357.3225
## 7269 FR France 36468.0979
## 7270 FR France 35825.7486
## 7271 FR France 35213.8931
## 7272 FR France 34899.8764
## 7273 FR France 34190.3029
## 7274 FR France 34152.3659
## 7275 FR France 34015.3809
## 7276 FR France 33597.3662
## 7277 FR France 32551.0831
## 7278 FR France 31636.5672
## 7279 FR France 30653.3529
## 7280 FR France 30059.6950
## 7281 FR France 29746.0055
## 7282 FR France 29237.7063
## 7283 FR France 28670.5992
## 7284 FR France 28977.2621
## 7285 FR France 28663.2841
## 7286 FR France 28523.5774
## 7287 FR France 27854.6079
## 7288 FR France 26840.0499
## 7289 FR France 25769.7309
## 7290 FR France 25270.0182
## 7291 FR France 24832.9692
## 7292 FR France 24573.9301
## 7293 FR France 24343.1301
## 7294 FR France 24176.3145
## 7295 FR France 23708.2313
## 7296 FR France 23571.7601
## 7297 FR France 23308.6779
## 7298 FR France 22602.2938
## 7299 FR France 21826.9181
## 7300 FR France 21192.4504
## 7301 FR France 20416.3807
## 7302 FR France 20744.7098
## 7303 FR France 20033.0120
## 7304 FR France 18985.7672
## 7305 FR France 18312.5430
## 7306 FR France 17526.4742
## 7307 FR France 16644.3029
## 7308 FR France 15656.8327
## 7309 FR France 15101.8177
## 7310 FR France 14520.9027
## 7311 FR France 13938.2009
## 7312 FR France 13450.6131
## 7313 FR France 12779.8777
## 7314 FR France 12200.1647
## 7315 FR France 11579.3114
## 7316 FR France 11176.4128
## 7317 PF French Polynesia NA
## 7318 PF French Polynesia 19586.5414
## 7319 PF French Polynesia 21320.4394
## 7320 PF French Polynesia 20819.6321
## 7321 PF French Polynesia 20580.1427
## 7322 PF French Polynesia 19843.1750
## 7323 PF French Polynesia 19500.1009
## 7324 PF French Polynesia NA
## 7325 PF French Polynesia NA
## 7326 PF French Polynesia NA
## 7327 PF French Polynesia NA
## 7328 PF French Polynesia NA
## 7329 PF French Polynesia NA
## 7330 PF French Polynesia NA
## 7331 PF French Polynesia NA
## 7332 PF French Polynesia NA
## 7333 PF French Polynesia NA
## 7334 PF French Polynesia NA
## 7335 PF French Polynesia NA
## 7336 PF French Polynesia NA
## 7337 PF French Polynesia NA
## 7338 PF French Polynesia NA
## 7339 PF French Polynesia NA
## 7340 PF French Polynesia NA
## 7341 PF French Polynesia NA
## 7342 PF French Polynesia NA
## 7343 PF French Polynesia NA
## 7344 PF French Polynesia NA
## 7345 PF French Polynesia NA
## 7346 PF French Polynesia NA
## 7347 PF French Polynesia NA
## 7348 PF French Polynesia NA
## 7349 PF French Polynesia NA
## 7350 PF French Polynesia NA
## 7351 PF French Polynesia NA
## 7352 PF French Polynesia NA
## 7353 PF French Polynesia NA
## 7354 PF French Polynesia NA
## 7355 PF French Polynesia NA
## 7356 PF French Polynesia NA
## 7357 PF French Polynesia NA
## 7358 PF French Polynesia NA
## 7359 PF French Polynesia NA
## 7360 PF French Polynesia NA
## 7361 PF French Polynesia NA
## 7362 PF French Polynesia NA
## 7363 PF French Polynesia NA
## 7364 PF French Polynesia NA
## 7365 PF French Polynesia NA
## 7366 PF French Polynesia NA
## 7367 PF French Polynesia NA
## 7368 PF French Polynesia NA
## 7369 PF French Polynesia NA
## 7370 PF French Polynesia NA
## 7371 PF French Polynesia NA
## 7372 PF French Polynesia NA
## 7373 PF French Polynesia NA
## 7374 PF French Polynesia NA
## 7375 PF French Polynesia NA
## 7376 PF French Polynesia NA
## 7377 PF French Polynesia NA
## 7378 PF French Polynesia NA
## 7379 GA Gabon 6759.8642
## 7380 GA Gabon 6818.4968
## 7381 GA Gabon 7116.0813
## 7382 GA Gabon 7019.8276
## 7383 GA Gabon 7145.1176
## 7384 GA Gabon 7313.1400
## 7385 GA Gabon 7384.7007
## 7386 GA Gabon 7350.0513
## 7387 GA Gabon 7304.7797
## 7388 GA Gabon 7181.2137
## 7389 GA Gabon 7086.3878
## 7390 GA Gabon 6863.5388
## 7391 GA Gabon 6634.7187
## 7392 GA Gabon 6845.9446
## 7393 GA Gabon 7301.2288
## 7394 GA Gabon 7091.7200
## 7395 GA Gabon 7504.2600
## 7396 GA Gabon 7507.1314
## 7397 GA Gabon 7646.8777
## 7398 GA Gabon 7662.4553
## 7399 GA Gabon 7866.6135
## 7400 GA Gabon 7888.0621
## 7401 GA Gabon 8235.8994
## 7402 GA Gabon 9267.8691
## 7403 GA Gabon 9181.8263
## 7404 GA Gabon 8905.0252
## 7405 GA Gabon 8815.2289
## 7406 GA Gabon 8617.5554
## 7407 GA Gabon 8530.8168
## 7408 GA Gabon 8429.5487
## 7409 GA Gabon 8937.1336
## 7410 GA Gabon 8655.5379
## 7411 GA Gabon 8457.9402
## 7412 GA Gabon 8010.9962
## 7413 GA Gabon 7298.9446
## 7414 GA Gabon 9056.2550
## 7415 GA Gabon 9382.8877
## 7416 GA Gabon 9869.4089
## 7417 GA Gabon 9426.6771
## 7418 GA Gabon 9161.2177
## 7419 GA Gabon 9698.2768
## 7420 GA Gabon 9461.3395
## 7421 GA Gabon 9454.2077
## 7422 GA Gabon 9636.7592
## 7423 GA Gabon 12984.8658
## 7424 GA Gabon 15187.6452
## 7425 GA Gabon 11437.9245
## 7426 GA Gabon 9789.8732
## 7427 GA Gabon 7151.7138
## 7428 GA Gabon 6609.7316
## 7429 GA Gabon 6046.3787
## 7430 GA Gabon 5588.8763
## 7431 GA Gabon 5246.4580
## 7432 GA Gabon 4956.0410
## 7433 GA Gabon 4936.9211
## 7434 GA Gabon 4837.2590
## 7435 GA Gabon 4713.3185
## 7436 GA Gabon 4420.9290
## 7437 GA Gabon 4288.1357
## 7438 GA Gabon 4091.5952
## 7439 GA Gabon 3849.2815
## 7440 GA Gabon 3386.6159
## 7441 GM Gambia, The 711.0504
## 7442 GM Gambia, The 692.7492
## 7443 GM Gambia, The 714.5421
## 7444 GM Gambia, The 692.6321
## 7445 GM Gambia, The 665.2132
## 7446 GM Gambia, The 653.7330
## 7447 GM Gambia, The 660.7236
## 7448 GM Gambia, The 654.3509
## 7449 GM Gambia, The 684.0815
## 7450 GM Gambia, The 685.4642
## 7451 GM Gambia, The 671.3696
## 7452 GM Gambia, The 753.1768
## 7453 GM Gambia, The 732.7855
## 7454 GM Gambia, The 707.7285
## 7455 GM Gambia, The 686.1424
## 7456 GM Gambia, The 686.1300
## 7457 GM Gambia, The 711.2819
## 7458 GM Gambia, The 751.3964
## 7459 GM Gambia, The 724.4703
## 7460 GM Gambia, The 699.9417
## 7461 GM Gambia, The 746.9613
## 7462 GM Gambia, The 728.7096
## 7463 GM Gambia, The 712.6728
## 7464 GM Gambia, The 690.9004
## 7465 GM Gambia, The 688.4448
## 7466 GM Gambia, The 676.8257
## 7467 GM Gambia, The 682.9385
## 7468 GM Gambia, The 698.2252
## 7469 GM Gambia, The 719.0706
## 7470 GM Gambia, The 720.7258
## 7471 GM Gambia, The 721.6147
## 7472 GM Gambia, The 727.0236
## 7473 GM Gambia, The 732.6804
## 7474 GM Gambia, The 725.3098
## 7475 GM Gambia, The 729.6757
## 7476 GM Gambia, The 748.0876
## 7477 GM Gambia, The 752.3002
## 7478 GM Gambia, The 789.9234
## 7479 GM Gambia, The 790.7255
## 7480 GM Gambia, The 736.3427
## 7481 GM Gambia, The 765.1821
## 7482 GM Gambia, The 764.2061
## 7483 GM Gambia, The 742.9977
## 7484 GM Gambia, The 778.5348
## 7485 GM Gambia, The 757.4008
## 7486 GM Gambia, The 757.0841
## 7487 GM Gambia, The 728.5204
## 7488 GM Gambia, The 668.9185
## 7489 GM Gambia, The 651.4769
## 7490 GM Gambia, The 614.4853
## 7491 GM Gambia, The 631.3615
## 7492 GM Gambia, The 650.4180
## 7493 GM Gambia, The 630.6040
## 7494 GM Gambia, The 633.3495
## 7495 GM Gambia, The 594.2140
## 7496 GM Gambia, The 610.1521
## 7497 GM Gambia, The NA
## 7498 GM Gambia, The NA
## 7499 GM Gambia, The NA
## 7500 GM Gambia, The NA
## 7501 GM Gambia, The NA
## 7502 GM Gambia, The NA
## 7503 GE Georgia 4927.0647
## 7504 GE Georgia 4447.6643
## 7505 GE Georgia 4773.4233
## 7506 GE Georgia 4539.0875
## 7507 GE Georgia 4327.7276
## 7508 GE Georgia 4128.3856
## 7509 GE Georgia 4014.1859
## 7510 GE Georgia 3902.5688
## 7511 GE Georgia 3738.7050
## 7512 GE Georgia 3597.2038
## 7513 GE Georgia 3356.9979
## 7514 GE Georgia 3100.7234
## 7515 GE Georgia 2897.1309
## 7516 GE Georgia 2980.3095
## 7517 GE Georgia 2901.1041
## 7518 GE Georgia 2563.5431
## 7519 GE Georgia 2329.5709
## 7520 GE Georgia 2112.2613
## 7521 GE Georgia 1984.2443
## 7522 GE Georgia 1774.6364
## 7523 GE Georgia 1667.5080
## 7524 GE Georgia 1566.5603
## 7525 GE Georgia 1508.6565
## 7526 GE Georgia 1436.7119
## 7527 GE Georgia 1359.3928
## 7528 GE Georgia 1191.1811
## 7529 GE Georgia 1033.0232
## 7530 GE Georgia 969.7129
## 7531 GE Georgia 1065.7356
## 7532 GE Georgia 1519.0353
## 7533 GE Georgia 2778.3050
## 7534 GE Georgia 3546.1580
## 7535 GE Georgia 4160.4559
## 7536 GE Georgia 4494.8089
## 7537 GE Georgia 4300.6113
## 7538 GE Georgia 4281.3740
## 7539 GE Georgia 4704.1473
## 7540 GE Georgia 4522.1021
## 7541 GE Georgia 4326.1063
## 7542 GE Georgia 4184.2901
## 7543 GE Georgia 4137.0626
## 7544 GE Georgia 3962.4216
## 7545 GE Georgia 3821.0984
## 7546 GE Georgia 3585.1027
## 7547 GE Georgia 3356.7196
## 7548 GE Georgia 3161.6343
## 7549 GE Georgia 3001.4968
## 7550 GE Georgia 2815.8907
## 7551 GE Georgia 2610.5077
## 7552 GE Georgia 2473.2644
## 7553 GE Georgia 2429.4740
## 7554 GE Georgia 2395.6936
## 7555 GE Georgia 2158.7671
## 7556 GE Georgia 2079.6901
## 7557 GE Georgia 2009.1073
## 7558 GE Georgia 1909.5634
## 7559 GE Georgia 1796.1713
## 7560 GE Georgia NA
## 7561 GE Georgia NA
## 7562 GE Georgia NA
## 7563 GE Georgia NA
## 7564 GE Georgia NA
## 7565 DE Germany 42526.5537
## 7566 DE Germany 41315.3136
## 7567 DE Germany 43329.0507
## 7568 DE Germany 42973.2900
## 7569 DE Germany 42639.5544
## 7570 DE Germany 41682.0322
## 7571 DE Germany 41103.2564
## 7572 DE Germany 40851.1617
## 7573 DE Germany 40135.0158
## 7574 DE Germany 40069.3540
## 7575 DE Germany 39977.3417
## 7576 DE Germany 37760.9136
## 7577 DE Germany 36190.3929
## 7578 DE Germany 38278.3130
## 7579 DE Germany 37842.3578
## 7580 DE Germany 36699.4468
## 7581 DE Germany 35310.4705
## 7582 DE Germany 35034.0806
## 7583 DE Germany 34619.6641
## 7584 DE Germany 34883.0581
## 7585 DE Germany 35011.0685
## 7586 DE Germany 34490.0758
## 7587 DE Germany 33559.3994
## 7588 DE Germany 32959.0736
## 7589 DE Germany 32313.2971
## 7590 DE Germany 31790.8669
## 7591 DE Germany 31628.1598
## 7592 DE Germany 31238.8791
## 7593 DE Germany 30615.1402
## 7594 DE Germany 31121.0706
## 7595 DE Germany 30766.9290
## 7596 DE Germany 29485.7100
## 7597 DE Germany 28256.1062
## 7598 DE Germany 27407.5201
## 7599 DE Germany 26531.2297
## 7600 DE Germany 26204.5896
## 7601 DE Germany 25630.3330
## 7602 DE Germany 24991.3337
## 7603 DE Germany 24221.3404
## 7604 DE Germany 23783.9455
## 7605 DE Germany 23855.5259
## 7606 DE Germany 23766.1077
## 7607 DE Germany 23484.5992
## 7608 DE Germany 22558.7148
## 7609 DE Germany 21880.8076
## 7610 DE Germany 21124.2557
## 7611 DE Germany 20041.9480
## 7612 DE Germany 20141.9395
## 7613 DE Germany 19972.0254
## 7614 DE Germany 19121.4979
## 7615 DE Germany 18421.0422
## 7616 DE Germany 17894.2967
## 7617 DE Germany NA
## 7618 DE Germany NA
## 7619 DE Germany NA
## 7620 DE Germany NA
## 7621 DE Germany NA
## 7622 DE Germany NA
## 7623 DE Germany NA
## 7624 DE Germany NA
## 7625 DE Germany NA
## 7626 DE Germany NA
## 7627 GH Ghana 2084.6350
## 7628 GH Ghana 2020.6243
## 7629 GH Ghana 2053.5867
## 7630 GH Ghana 1970.2608
## 7631 GH Ghana 1896.3667
## 7632 GH Ghana 1793.1809
## 7633 GH Ghana 1774.0748
## 7634 GH Ghana 1777.0967
## 7635 GH Ghana 1767.8021
## 7636 GH Ghana 1686.0695
## 7637 GH Ghana 1579.6996
## 7638 GH Ghana 1419.1203
## 7639 GH Ghana 1348.3414
## 7640 GH Ghana 1319.1736
## 7641 GH Ghana 1240.1620
## 7642 GH Ghana 1219.5621
## 7643 GH Ghana 1175.8617
## 7644 GH Ghana 1138.6584
## 7645 GH Ghana 1105.4014
## 7646 GH Ghana 1076.9152
## 7647 GH Ghana 1056.0709
## 7648 GH Ghana 1040.6341
## 7649 GH Ghana 1028.3878
## 7650 GH Ghana 1009.4724
## 7651 GH Ghana 988.2819
## 7652 GH Ghana 972.7306
## 7653 GH Ghana 954.4414
## 7654 GH Ghana 941.7819
## 7655 GH Ghana 937.4460
## 7656 GH Ghana 919.9808
## 7657 GH Ghana 911.5963
## 7658 GH Ghana 891.3048
## 7659 GH Ghana 887.8231
## 7660 GH Ghana 869.4706
## 7661 GH Ghana 847.1364
## 7662 GH Ghana 832.1502
## 7663 GH Ghana 814.6129
## 7664 GH Ghana 798.7614
## 7665 GH Ghana 757.9191
## 7666 GH Ghana 818.4245
## 7667 GH Ghana 904.7609
## 7668 GH Ghana 962.3836
## 7669 GH Ghana 980.0977
## 7670 GH Ghana 1025.7984
## 7671 GH Ghana 963.3676
## 7672 GH Ghana 960.0750
## 7673 GH Ghana 1016.4572
## 7674 GH Ghana 1188.9582
## 7675 GH Ghana 1142.6613
## 7676 GH Ghana 1142.3816
## 7677 GH Ghana 1204.9992
## 7678 GH Ghana 1176.4315
## 7679 GH Ghana 1099.2944
## 7680 GH Ghana 1061.7139
## 7681 GH Ghana 1082.3908
## 7682 GH Ghana 1075.4035
## 7683 GH Ghana 1152.5439
## 7684 GH Ghana 1169.4650
## 7685 GH Ghana 1179.3491
## 7686 GH Ghana 1166.0230
## 7687 GH Ghana 1156.5812
## 7688 GH Ghana 1154.1367
## 7689 GI Gibraltar NA
## 7690 GI Gibraltar NA
## 7691 GI Gibraltar NA
## 7692 GI Gibraltar NA
## 7693 GI Gibraltar NA
## 7694 GI Gibraltar NA
## 7695 GI Gibraltar NA
## 7696 GI Gibraltar NA
## 7697 GI Gibraltar NA
## 7698 GI Gibraltar NA
## 7699 GI Gibraltar NA
## 7700 GI Gibraltar NA
## 7701 GI Gibraltar NA
## 7702 GI Gibraltar NA
## 7703 GI Gibraltar NA
## 7704 GI Gibraltar NA
## 7705 GI Gibraltar NA
## 7706 GI Gibraltar NA
## 7707 GI Gibraltar NA
## 7708 GI Gibraltar NA
## 7709 GI Gibraltar NA
## 7710 GI Gibraltar NA
## 7711 GI Gibraltar NA
## 7712 GI Gibraltar NA
## 7713 GI Gibraltar NA
## 7714 GI Gibraltar NA
## 7715 GI Gibraltar NA
## 7716 GI Gibraltar NA
## 7717 GI Gibraltar NA
## 7718 GI Gibraltar NA
## 7719 GI Gibraltar NA
## 7720 GI Gibraltar NA
## 7721 GI Gibraltar NA
## 7722 GI Gibraltar NA
## 7723 GI Gibraltar NA
## 7724 GI Gibraltar NA
## 7725 GI Gibraltar NA
## 7726 GI Gibraltar NA
## 7727 GI Gibraltar NA
## 7728 GI Gibraltar NA
## 7729 GI Gibraltar NA
## 7730 GI Gibraltar NA
## 7731 GI Gibraltar NA
## 7732 GI Gibraltar NA
## 7733 GI Gibraltar NA
## 7734 GI Gibraltar NA
## 7735 GI Gibraltar NA
## 7736 GI Gibraltar NA
## 7737 GI Gibraltar NA
## 7738 GI Gibraltar NA
## 7739 GI Gibraltar NA
## 7740 GI Gibraltar NA
## 7741 GI Gibraltar NA
## 7742 GI Gibraltar NA
## 7743 GI Gibraltar NA
## 7744 GI Gibraltar NA
## 7745 GI Gibraltar NA
## 7746 GI Gibraltar NA
## 7747 GI Gibraltar NA
## 7748 GI Gibraltar NA
## 7749 GI Gibraltar NA
## 7750 GI Gibraltar NA
## 7751 GR Greece 18831.2875
## 7752 GR Greece 17323.8228
## 7753 GR Greece 19003.8290
## 7754 GR Greece 18647.4957
## 7755 GR Greece 18304.3077
## 7756 GR Greece 18070.7807
## 7757 GR Greece 18083.8779
## 7758 GR Greece 18000.4185
## 7759 GR Greece 17796.2577
## 7760 GR Greece 18123.6711
## 7761 GR Greece 19400.8077
## 7762 GR Greece 21560.3534
## 7763 GR Greece 22839.4465
## 7764 GR Greece 23928.7094
## 7765 GR Greece 24073.0005
## 7766 GR Greece 23369.3530
## 7767 GR Greece 22185.6168
## 7768 GR Greece 22118.2517
## 7769 GR Greece 21104.9243
## 7770 GR Greece 19996.6385
## 7771 GR Greece 19312.4705
## 7772 GR Greece 18642.8829
## 7773 GR Greece 18013.2193
## 7774 GR Greece 17543.3899
## 7775 GR Greece 16979.5500
## 7776 GR Greece 16331.1885
## 7777 GR Greece 15946.8934
## 7778 GR Greece 15692.0813
## 7779 GR Greece 15461.6169
## 7780 GR Greece 15805.7314
## 7781 GR Greece 15816.2175
## 7782 GR Greece 15525.9087
## 7783 GR Greece 15691.0147
## 7784 GR Greece 15195.6767
## 7785 GR Greece 14623.9143
## 7786 GR Greece 15011.9928
## 7787 GR Greece 14984.1615
## 7788 GR Greece 14674.1992
## 7789 GR Greece 14456.8161
## 7790 GR Greece 14699.7145
## 7791 GR Greece 14960.0573
## 7792 GR Greece 15333.0272
## 7793 GR Greece 15380.2290
## 7794 GR Greece 15078.2926
## 7795 GR Greece 14242.9073
## 7796 GR Greece 14017.1882
## 7797 GR Greece 13323.6798
## 7798 GR Greece 12644.2945
## 7799 GR Greece 13564.2326
## 7800 GR Greece 12605.8585
## 7801 GR Greece 11517.8384
## 7802 GR Greece 10726.8084
## 7803 GR Greece 9903.0474
## 7804 GR Greece 8909.0845
## 7805 GR Greece 8364.6631
## 7806 GR Greece 7980.6048
## 7807 GR Greece 7549.4074
## 7808 GR Greece 6847.4691
## 7809 GR Greece 6281.2945
## 7810 GR Greece 5636.9458
## 7811 GR Greece 5650.0178
## 7812 GR Greece 5030.7436
## 7813 GL Greenland NA
## 7814 GL Greenland 47957.7937
## 7815 GL Greenland 47908.1067
## 7816 GL Greenland 47013.0349
## 7817 GL Greenland 46598.8233
## 7818 GL Greenland 46561.8316
## 7819 GL Greenland 44536.4013
## 7820 GL Greenland 45545.1903
## 7821 GL Greenland 43338.4290
## 7822 GL Greenland 43655.7459
## 7823 GL Greenland 42994.9238
## 7824 GL Greenland 43198.0773
## 7825 GL Greenland 42899.7888
## 7826 GL Greenland 42527.7111
## 7827 GL Greenland 39896.9169
## 7828 GL Greenland 38829.5768
## 7829 GL Greenland 36681.8438
## 7830 GL Greenland 34953.9857
## 7831 GL Greenland 32779.9156
## 7832 GL Greenland 31475.8540
## 7833 GL Greenland 31930.6286
## 7834 GL Greenland 31614.6517
## 7835 GL Greenland 29570.9931
## 7836 GL Greenland 29169.0769
## 7837 GL Greenland 27117.4015
## 7838 GL Greenland 26772.6417
## 7839 GL Greenland 26416.5440
## 7840 GL Greenland 25604.6223
## 7841 GL Greenland 24303.9236
## 7842 GL Greenland 25544.3258
## 7843 GL Greenland 26823.4063
## 7844 GL Greenland 26805.5776
## 7845 GL Greenland 30528.8333
## 7846 GL Greenland 28883.8482
## 7847 GL Greenland 27705.0909
## 7848 GL Greenland 26551.2682
## 7849 GL Greenland 24931.5228
## 7850 GL Greenland 24280.2834
## 7851 GL Greenland 25901.5009
## 7852 GL Greenland 25327.6348
## 7853 GL Greenland 26758.5836
## 7854 GL Greenland 27005.3541
## 7855 GL Greenland 25150.0149
## 7856 GL Greenland 24179.2314
## 7857 GL Greenland 22714.6628
## 7858 GL Greenland 20747.1713
## 7859 GL Greenland 19619.8146
## 7860 GL Greenland 19533.2191
## 7861 GL Greenland 18667.3322
## 7862 GL Greenland 17731.0935
## 7863 GL Greenland 17088.7022
## 7864 GL Greenland 15375.2027
## 7865 GL Greenland NA
## 7866 GL Greenland NA
## 7867 GL Greenland NA
## 7868 GL Greenland NA
## 7869 GL Greenland NA
## 7870 GL Greenland NA
## 7871 GL Greenland NA
## 7872 GL Greenland NA
## 7873 GL Greenland NA
## 7874 GL Greenland NA
## 7875 GD Grenada 9121.3761
## 7876 GD Grenada 8699.1114
## 7877 GD Grenada 10133.1322
## 7878 GD Grenada 10115.0641
## 7879 GD Grenada 9742.6037
## 7880 GD Grenada 9380.2322
## 7881 GD Grenada 9096.5387
## 7882 GD Grenada 8601.0810
## 7883 GD Grenada 8066.5527
## 7884 GD Grenada 7934.0414
## 7885 GD Grenada 8076.8232
## 7886 GD Grenada 8057.6865
## 7887 GD Grenada 8132.7807
## 7888 GD Grenada 8735.9640
## 7889 GD Grenada 8676.5075
## 7890 GD Grenada 8194.9508
## 7891 GD Grenada 8558.8287
## 7892 GD Grenada 7578.3094
## 7893 GD Grenada 7652.8510
## 7894 GD Grenada 7015.9627
## 7895 GD Grenada 6808.7005
## 7896 GD Grenada 6976.7168
## 7897 GD Grenada 6678.0852
## 7898 GD Grenada 6271.9956
## 7899 GD Grenada 5637.5455
## 7900 GD Grenada 5398.2753
## 7901 GD Grenada 5205.8239
## 7902 GD Grenada 5145.5603
## 7903 GD Grenada 5117.0943
## 7904 GD Grenada 5276.9712
## 7905 GD Grenada 5360.8388
## 7906 GD Grenada 5294.9325
## 7907 GD Grenada 5058.9431
## 7908 GD Grenada 4815.9343
## 7909 GD Grenada 4616.0645
## 7910 GD Grenada 4199.1263
## 7911 GD Grenada 3926.3187
## 7912 GD Grenada 3760.5027
## 7913 GD Grenada 3723.6548
## 7914 GD Grenada 3704.5538
## 7915 GD Grenada 3656.8468
## 7916 GD Grenada 3665.4261
## 7917 GD Grenada 3702.9764
## 7918 GD Grenada 3486.8212
## 7919 GD Grenada 3269.1118
## 7920 GD Grenada NA
## 7921 GD Grenada NA
## 7922 GD Grenada NA
## 7923 GD Grenada NA
## 7924 GD Grenada NA
## 7925 GD Grenada NA
## 7926 GD Grenada NA
## 7927 GD Grenada NA
## 7928 GD Grenada NA
## 7929 GD Grenada NA
## 7930 GD Grenada NA
## 7931 GD Grenada NA
## 7932 GD Grenada NA
## 7933 GD Grenada NA
## 7934 GD Grenada NA
## 7935 GD Grenada NA
## 7936 GD Grenada NA
## 7937 GU Guam NA
## 7938 GU Guam 31162.6760
## 7939 GU Guam 35666.3162
## 7940 GU Guam 35103.1618
## 7941 GU Guam 35678.2833
## 7942 GU Guam 35652.8048
## 7943 GU Guam 35829.2504
## 7944 GU Guam 35722.1143
## 7945 GU Guam 35222.3885
## 7946 GU Guam 34728.8937
## 7947 GU Guam 34067.1938
## 7948 GU Guam 34094.3488
## 7949 GU Guam 33383.1269
## 7950 GU Guam 33278.0733
## 7951 GU Guam 32653.3079
## 7952 GU Guam 32461.4485
## 7953 GU Guam 33743.7414
## 7954 GU Guam 32622.1337
## 7955 GU Guam 30704.9533
## 7956 GU Guam 30543.8238
## 7957 GU Guam NA
## 7958 GU Guam NA
## 7959 GU Guam NA
## 7960 GU Guam NA
## 7961 GU Guam NA
## 7962 GU Guam NA
## 7963 GU Guam NA
## 7964 GU Guam NA
## 7965 GU Guam NA
## 7966 GU Guam NA
## 7967 GU Guam NA
## 7968 GU Guam NA
## 7969 GU Guam NA
## 7970 GU Guam NA
## 7971 GU Guam NA
## 7972 GU Guam NA
## 7973 GU Guam NA
## 7974 GU Guam NA
## 7975 GU Guam NA
## 7976 GU Guam NA
## 7977 GU Guam NA
## 7978 GU Guam NA
## 7979 GU Guam NA
## 7980 GU Guam NA
## 7981 GU Guam NA
## 7982 GU Guam NA
## 7983 GU Guam NA
## 7984 GU Guam NA
## 7985 GU Guam NA
## 7986 GU Guam NA
## 7987 GU Guam NA
## 7988 GU Guam NA
## 7989 GU Guam NA
## 7990 GU Guam NA
## 7991 GU Guam NA
## 7992 GU Guam NA
## 7993 GU Guam NA
## 7994 GU Guam NA
## 7995 GU Guam NA
## 7996 GU Guam NA
## 7997 GU Guam NA
## 7998 GU Guam NA
## 7999 GT Guatemala 4371.6157
## 8000 GT Guatemala 4126.2054
## 8001 GT Guatemala 4254.0352
## 8002 GT Guatemala 4160.0711
## 8003 GT Guatemala 4091.2680
## 8004 GT Guatemala 4034.1585
## 8005 GT Guatemala 3994.6369
## 8006 GT Guatemala 3903.0596
## 8007 GT Guatemala 3802.1538
## 8008 GT Guatemala 3731.6758
## 8009 GT Guatemala 3688.8662
## 8010 GT Guatemala 3606.4305
## 8011 GT Guatemala 3570.3028
## 8012 GT Guatemala 3620.8305
## 8013 GT Guatemala 3573.5996
## 8014 GT Guatemala 3427.6783
## 8015 GT Guatemala 3320.1641
## 8016 GT Guatemala 3282.3211
## 8017 GT Guatemala 3250.8411
## 8018 GT Guatemala 3239.5672
## 8019 GT Guatemala 3192.3086
## 8020 GT Guatemala 3195.3943
## 8021 GT Guatemala 3160.0795
## 8022 GT Guatemala 3115.9774
## 8023 GT Guatemala 3038.7135
## 8024 GT Guatemala 2981.1209
## 8025 GT Guatemala 2965.8918
## 8026 GT Guatemala 2896.2234
## 8027 GT Guatemala 2854.1330
## 8028 GT Guatemala 2817.2311
## 8029 GT Guatemala 2758.6788
## 8030 GT Guatemala 2733.8666
## 8031 GT Guatemala 2725.1068
## 8032 GT Guatemala 2695.0918
## 8033 GT Guatemala 2666.9335
## 8034 GT Guatemala 2647.9577
## 8035 GT Guatemala 2718.2571
## 8036 GT Guatemala 2811.2912
## 8037 GT Guatemala 2875.0960
## 8038 GT Guatemala 3032.2337
## 8039 GT Guatemala 3228.3018
## 8040 GT Guatemala 3291.7370
## 8041 GT Guatemala 3252.5906
## 8042 GT Guatemala 3181.2876
## 8043 GT Guatemala 3100.4127
## 8044 GT Guatemala 2941.2770
## 8045 GT Guatemala 2800.9637
## 8046 GT Guatemala 2810.1133
## 8047 GT Guatemala 2702.9543
## 8048 GT Guatemala 2590.8354
## 8049 GT Guatemala 2471.7801
## 8050 GT Guatemala 2398.7233
## 8051 GT Guatemala 2326.8234
## 8052 GT Guatemala 2279.8722
## 8053 GT Guatemala 2152.8780
## 8054 GT Guatemala 2125.3834
## 8055 GT Guatemala 2071.6407
## 8056 GT Guatemala 2042.4552
## 8057 GT Guatemala 2009.3223
## 8058 GT Guatemala 1888.7033
## 8059 GT Guatemala 1878.5456
## 8060 GT Guatemala 1854.7933
## 8061 GN Guinea 965.3755
## 8062 GN Guinea 962.1163
## 8063 GN Guinea 945.5074
## 8064 GN Guinea 920.9643
## 8065 GN Guinea 890.7887
## 8066 GN Guinea 830.2462
## 8067 GN Guinea 769.2555
## 8068 GN Guinea 759.5879
## 8069 GN Guinea 749.8701
## 8070 GN Guinea 737.7131
## 8071 GN Guinea 711.9909
## 8072 GN Guinea 689.2567
## 8073 GN Guinea 672.6307
## 8074 GN Guinea 696.0313
## 8075 GN Guinea 683.9001
## 8076 GN Guinea 654.7477
## 8077 GN Guinea 661.1025
## 8078 GN Guinea 655.0855
## 8079 GN Guinea 652.7307
## 8080 GN Guinea 657.2218
## 8081 GN Guinea 637.4932
## 8082 GN Guinea 628.1551
## 8083 GN Guinea 626.9663
## 8084 GN Guinea 618.8469
## 8085 GN Guinea 612.5726
## 8086 GN Guinea 597.8676
## 8087 GN Guinea 587.6179
## 8088 GN Guinea 576.6894
## 8089 GN Guinea 569.4615
## 8090 GN Guinea 556.7379
## 8091 GN Guinea 554.0437
## 8092 GN Guinea 555.4583
## 8093 GN Guinea 548.3893
## 8094 GN Guinea 543.5848
## 8095 GN Guinea 527.2971
## 8096 GN Guinea 526.0399
## 8097 GN Guinea NA
## 8098 GN Guinea NA
## 8099 GN Guinea NA
## 8100 GN Guinea NA
## 8101 GN Guinea NA
## 8102 GN Guinea NA
## 8103 GN Guinea NA
## 8104 GN Guinea NA
## 8105 GN Guinea NA
## 8106 GN Guinea NA
## 8107 GN Guinea NA
## 8108 GN Guinea NA
## 8109 GN Guinea NA
## 8110 GN Guinea NA
## 8111 GN Guinea NA
## 8112 GN Guinea NA
## 8113 GN Guinea NA
## 8114 GN Guinea NA
## 8115 GN Guinea NA
## 8116 GN Guinea NA
## 8117 GN Guinea NA
## 8118 GN Guinea NA
## 8119 GN Guinea NA
## 8120 GN Guinea NA
## 8121 GN Guinea NA
## 8122 GN Guinea NA
## 8123 GW Guinea-Bissau 627.6750
## 8124 GW Guinea-Bissau 619.2892
## 8125 GW Guinea-Bissau 650.0694
## 8126 GW Guinea-Bissau 637.5467
## 8127 GW Guinea-Bissau 645.3591
## 8128 GW Guinea-Bissau 624.9198
## 8129 GW Guinea-Bissau 603.3994
## 8130 GW Guinea-Bissau 583.5661
## 8131 GW Guinea-Bissau 593.4814
## 8132 GW Guinea-Bissau 590.2661
## 8133 GW Guinea-Bissau 616.6835
## 8134 GW Guinea-Bissau 585.6916
## 8135 GW Guinea-Bissau 574.4708
## 8136 GW Guinea-Bissau 569.9528
## 8137 GW Guinea-Bissau 566.1074
## 8138 GW Guinea-Bissau 561.7350
## 8139 GW Guinea-Bissau 562.3849
## 8140 GW Guinea-Bissau 552.2848
## 8141 GW Guinea-Bissau 550.0894
## 8142 GW Guinea-Bissau 559.5562
## 8143 GW Guinea-Bissau 577.7188
## 8144 GW Guinea-Bissau 577.4857
## 8145 GW Guinea-Bissau 559.0069
## 8146 GW Guinea-Bissau 564.2424
## 8147 GW Guinea-Bissau 799.9123
## 8148 GW Guinea-Bissau 765.7436
## 8149 GW Guinea-Bissau 700.0042
## 8150 GW Guinea-Bissau 684.6529
## 8151 GW Guinea-Bissau 677.9988
## 8152 GW Guinea-Bissau 679.0665
## 8153 GW Guinea-Bissau 687.0513
## 8154 GW Guinea-Bissau 668.6306
## 8155 GW Guinea-Bissau 644.3835
## 8156 GW Guinea-Bissau 620.8334
## 8157 GW Guinea-Bissau 606.7255
## 8158 GW Guinea-Bissau 602.9874
## 8159 GW Guinea-Bissau 622.0063
## 8160 GW Guinea-Bissau 611.7783
## 8161 GW Guinea-Bissau 574.9287
## 8162 GW Guinea-Bissau 609.7020
## 8163 GW Guinea-Bissau 597.3609
## 8164 GW Guinea-Bissau 513.3624
## 8165 GW Guinea-Bissau 616.2824
## 8166 GW Guinea-Bissau 606.2591
## 8167 GW Guinea-Bissau 536.1960
## 8168 GW Guinea-Bissau 578.5985
## 8169 GW Guinea-Bissau 554.5318
## 8170 GW Guinea-Bissau 519.8348
## 8171 GW Guinea-Bissau 504.8234
## 8172 GW Guinea-Bissau 508.5939
## 8173 GW Guinea-Bissau 487.5371
## 8174 GW Guinea-Bissau 517.0412
## 8175 GW Guinea-Bissau NA
## 8176 GW Guinea-Bissau NA
## 8177 GW Guinea-Bissau NA
## 8178 GW Guinea-Bissau NA
## 8179 GW Guinea-Bissau NA
## 8180 GW Guinea-Bissau NA
## 8181 GW Guinea-Bissau NA
## 8182 GW Guinea-Bissau NA
## 8183 GW Guinea-Bissau NA
## 8184 GW Guinea-Bissau NA
## 8185 GY Guyana 11040.7120
## 8186 GY Guyana 9250.3017
## 8187 GY Guyana 6478.2877
## 8188 GY Guyana 6178.8897
## 8189 GY Guyana 5945.0687
## 8190 GY Guyana 5759.6917
## 8191 GY Guyana 5576.8259
## 8192 GY Guyana 5568.2182
## 8193 GY Guyana 5505.3900
## 8194 GY Guyana 5338.7127
## 8195 GY Guyana 5088.6070
## 8196 GY Guyana 4847.4315
## 8197 GY Guyana 4681.6483
## 8198 GY Guyana 4512.3853
## 8199 GY Guyana 4443.0726
## 8200 GY Guyana 4145.7848
## 8201 GY Guyana 3944.4447
## 8202 GY Guyana 4025.1907
## 8203 GY Guyana 3966.3961
## 8204 GY Guyana 3993.5241
## 8205 GY Guyana 3946.5893
## 8206 GY Guyana 3850.8178
## 8207 GY Guyana 3888.6573
## 8208 GY Guyana 3756.3032
## 8209 GY Guyana 3799.2983
## 8210 GY Guyana 3564.8541
## 8211 GY Guyana 3299.9951
## 8212 GY Guyana 3151.8561
## 8213 GY Guyana 2922.3793
## 8214 GY Guyana 2721.5374
## 8215 GY Guyana 2539.5775
## 8216 GY Guyana 2398.2929
## 8217 GY Guyana 2466.6388
## 8218 GY Guyana 2576.6991
## 8219 GY Guyana 2651.4656
## 8220 GY Guyana 2603.7818
## 8221 GY Guyana 2607.0100
## 8222 GY Guyana 2530.2248
## 8223 GY Guyana 2651.4225
## 8224 GY Guyana 2836.2815
## 8225 GY Guyana 3265.2070
## 8226 GY Guyana 3223.5937
## 8227 GY Guyana 3184.5561
## 8228 GY Guyana 3269.9261
## 8229 GY Guyana 3363.7226
## 8230 GY Guyana 3493.0175
## 8231 GY Guyana 3478.2162
## 8232 GY Guyana 3240.9984
## 8233 GY Guyana 3041.9262
## 8234 GY Guyana 3037.6553
## 8235 GY Guyana 3178.2785
## 8236 GY Guyana 3120.6073
## 8237 GY Guyana 3032.7560
## 8238 GY Guyana 2874.1541
## 8239 GY Guyana 2888.2835
## 8240 GY Guyana 2816.1088
## 8241 GY Guyana 2728.0067
## 8242 GY Guyana 2522.1522
## 8243 GY Guyana 2320.3535
## 8244 GY Guyana 2716.2297
## 8245 GY Guyana 2764.1044
## 8246 GY Guyana 2720.9119
## 8247 HT Haiti 1272.5905
## 8248 HT Haiti 1311.7081
## 8249 HT Haiti 1373.8831
## 8250 HT Haiti 1414.9994
## 8251 HT Haiti 1409.6325
## 8252 HT Haiti 1393.1766
## 8253 HT Haiti 1386.8542
## 8254 HT Haiti 1370.9869
## 8255 HT Haiti 1366.9926
## 8256 HT Haiti 1329.4658
## 8257 HT Haiti 1342.5436
## 8258 HT Haiti 1296.8057
## 8259 HT Haiti 1395.7055
## 8260 HT Haiti 1338.7634
## 8261 HT Haiti 1324.8707
## 8262 HT Haiti 1285.7034
## 8263 HT Haiti 1283.8971
## 8264 HT Haiti 1266.0348
## 8265 HT Haiti 1304.1283
## 8266 HT Haiti 1281.2741
## 8267 HT Haiti 1289.3436
## 8268 HT Haiti 1315.9439
## 8269 HT Haiti 1327.2900
## 8270 HT Haiti 1315.0918
## 8271 HT Haiti 1310.0822
## 8272 HT Haiti 1298.7743
## 8273 HT Haiti 1270.1296
## 8274 HT Haiti 1177.3545
## 8275 HT Haiti 1362.5373
## 8276 HT Haiti 1468.5061
## 8277 HT Haiti 1581.2910
## 8278 HT Haiti 1583.1313
## 8279 HT Haiti 1598.7035
## 8280 HT Haiti 1680.6762
## 8281 HT Haiti 1712.6613
## 8282 HT Haiti 1763.7235
## 8283 HT Haiti 1812.0531
## 8284 HT Haiti 1842.6401
## 8285 HT Haiti 1880.5439
## 8286 HT Haiti 1908.2034
## 8287 HT Haiti 2025.6249
## 8288 HT Haiti 2133.2119
## 8289 HT Haiti 2030.9620
## 8290 HT Haiti 1928.7954
## 8291 HT Haiti 1853.5621
## 8292 HT Haiti 1822.7418
## 8293 HT Haiti 1712.9200
## 8294 HT Haiti 1724.6611
## 8295 HT Haiti 1658.6277
## 8296 HT Haiti 1609.9428
## 8297 HT Haiti 1621.2294
## 8298 HT Haiti 1548.9147
## 8299 HT Haiti 1566.5557
## 8300 HT Haiti 1537.0910
## 8301 HT Haiti 1518.1375
## 8302 HT Haiti 1580.9898
## 8303 HT Haiti 1620.9839
## 8304 HT Haiti 1617.4863
## 8305 HT Haiti 1676.6355
## 8306 HT Haiti 1742.3975
## 8307 HT Haiti 1646.6471
## 8308 HT Haiti 1729.6414
## 8309 HN Honduras 2479.9897
## 8310 HN Honduras 2239.0081
## 8311 HN Honduras 2499.4928
## 8312 HN Honduras 2475.1703
## 8313 HN Honduras 2423.5923
## 8314 HN Honduras 2351.0936
## 8315 HN Honduras 2302.2044
## 8316 HN Honduras 2256.0151
## 8317 HN Honduras 2228.1467
## 8318 HN Honduras 2207.2302
## 8319 HN Honduras 2159.7108
## 8320 HN Honduras 2120.7429
## 8321 HN Honduras 2086.2713
## 8322 HN Honduras 2183.7657
## 8323 HN Honduras 2141.3752
## 8324 HN Honduras 2062.6036
## 8325 HN Honduras 1980.9861
## 8326 HN Honduras 1913.1118
## 8327 HN Honduras 1845.6371
## 8328 HN Honduras 1810.4737
## 8329 HN Honduras 1790.7975
## 8330 HN Honduras 1790.3641
## 8331 HN Honduras 1714.9617
## 8332 HN Honduras 1776.7582
## 8333 HN Honduras 1764.7423
## 8334 HN Honduras 1736.2423
## 8335 HN Honduras 1753.8564
## 8336 HN Honduras 1699.2675
## 8337 HN Honduras 1744.2564
## 8338 HN Honduras 1684.6274
## 8339 HN Honduras 1633.6706
## 8340 HN Honduras 1738.6216
## 8341 HN Honduras 1740.7967
## 8342 HN Honduras 1744.4528
## 8343 HN Honduras 1765.4006
## 8344 HN Honduras 1705.0324
## 8345 HN Honduras 1667.5557
## 8346 HN Honduras 1626.7242
## 8347 HN Honduras 1576.8025
## 8348 HN Honduras 1610.8764
## 8349 HN Honduras 1696.0603
## 8350 HN Honduras 1770.5616
## 8351 HN Honduras 1815.0898
## 8352 HN Honduras 1772.6272
## 8353 HN Honduras 1725.3488
## 8354 HN Honduras 1611.9284
## 8355 HN Honduras 1504.0366
## 8356 HN Honduras 1517.9120
## 8357 HN Honduras 1583.5014
## 8358 HN Honduras 1512.2236
## 8359 HN Honduras 1472.7443
## 8360 HN Honduras 1458.6395
## 8361 HN Honduras 1449.8240
## 8362 HN Honduras 1483.5779
## 8363 HN Honduras 1433.3394
## 8364 HN Honduras 1392.6028
## 8365 HN Honduras 1360.3403
## 8366 HN Honduras 1283.6859
## 8367 HN Honduras 1252.5167
## 8368 HN Honduras 1243.4754
## 8369 HN Honduras 1208.9215
## 8370 HN Honduras 1220.5311
## 8371 HK Hong Kong SAR, China 44535.9366
## 8372 HK Hong Kong SAR, China 41469.9755
## 8373 HK Hong Kong SAR, China 44192.3785
## 8374 HK Hong Kong SAR, China 45280.2188
## 8375 HK Hong Kong SAR, China 44380.5349
## 8376 HK Hong Kong SAR, China 43087.2864
## 8377 HK Hong Kong SAR, China 42431.8883
## 8378 HK Hong Kong SAR, China 41796.5937
## 8379 HK Hong Kong SAR, China 40959.7332
## 8380 HK Hong Kong SAR, China 39887.5981
## 8381 HK Hong Kong SAR, China 39656.1118
## 8382 HK Hong Kong SAR, China 38089.8121
## 8383 HK Hong Kong SAR, China 35938.4005
## 8384 HK Hong Kong SAR, China 36923.8965
## 8385 HK Hong Kong SAR, China 36371.5093
## 8386 HK Hong Kong SAR, China 34457.8930
## 8387 HK Hong Kong SAR, China 32401.2548
## 8388 HK Hong Kong SAR, China 30304.1988
## 8389 HK Hong Kong SAR, China 28097.0180
## 8390 HK Hong Kong SAR, China 27209.9796
## 8391 HK Hong Kong SAR, China 26885.3714
## 8392 HK Hong Kong SAR, China 26933.1716
## 8393 HK Hong Kong SAR, China 25237.5922
## 8394 HK Hong Kong SAR, China 24856.6830
## 8395 HK Hong Kong SAR, China 26631.7066
## 8396 HK Hong Kong SAR, China 25551.2790
## 8397 HK Hong Kong SAR, China 25619.9043
## 8398 HK Hong Kong SAR, China 25526.3195
## 8399 HK Hong Kong SAR, China 24621.5434
## 8400 HK Hong Kong SAR, China 23585.5727
## 8401 HK Hong Kong SAR, China 22388.5615
## 8402 HK Hong Kong SAR, China 21357.2122
## 8403 HK Hong Kong SAR, China 20635.4756
## 8404 HK Hong Kong SAR, China 20386.1437
## 8405 HK Hong Kong SAR, China 18945.6258
## 8406 HK Hong Kong SAR, China 16876.1787
## 8407 HK Hong Kong SAR, China 15386.5902
## 8408 HK Hong Kong SAR, China 15435.9039
## 8409 HK Hong Kong SAR, China 14174.6314
## 8410 HK Hong Kong SAR, China 13579.9713
## 8411 HK Hong Kong SAR, China 13397.2455
## 8412 HK Hong Kong SAR, China 12553.0511
## 8413 HK Hong Kong SAR, China 11709.1556
## 8414 HK Hong Kong SAR, China 11085.7650
## 8415 HK Hong Kong SAR, China 10427.0693
## 8416 HK Hong Kong SAR, China 9468.4483
## 8417 HK Hong Kong SAR, China 8253.9466
## 8418 HK Hong Kong SAR, China 8370.7568
## 8419 HK Hong Kong SAR, China 8435.7970
## 8420 HK Hong Kong SAR, China 7728.2022
## 8421 HK Hong Kong SAR, China 7122.0169
## 8422 HK Hong Kong SAR, China 6782.6150
## 8423 HK Hong Kong SAR, China 6363.6737
## 8424 HK Hong Kong SAR, China 5807.3260
## 8425 HK Hong Kong SAR, China 5737.0397
## 8426 HK Hong Kong SAR, China 5791.0116
## 8427 HK Hong Kong SAR, China 5739.4994
## 8428 HK Hong Kong SAR, China 5139.7280
## 8429 HK Hong Kong SAR, China 4847.2623
## 8430 HK Hong Kong SAR, China 4333.7943
## 8431 HK Hong Kong SAR, China 3955.9929
## 8432 HK Hong Kong SAR, China NA
## 8433 HU Hungary 15486.6340
## 8434 HU Hungary 14400.7192
## 8435 HU Hungary 15041.0986
## 8436 HU Hungary 14379.4442
## 8437 HU Hungary 13630.6882
## 8438 HU Hungary 13037.9647
## 8439 HU Hungary 12720.7120
## 8440 HU Hungary 12237.3117
## 8441 HU Hungary 11709.8014
## 8442 HU Hungary 11470.4034
## 8443 HU Hungary 11556.6726
## 8444 HU Hungary 11313.5229
## 8445 HU Hungary 11167.0294
## 8446 HU Hungary 11937.0491
## 8447 HU Hungary 11797.4290
## 8448 HU Hungary 11746.6312
## 8449 HU Hungary 11282.9299
## 8450 HU Hungary 10796.7619
## 8451 HU Hungary 10259.8419
## 8452 HU Hungary 9829.0275
## 8453 HU Hungary 9357.4174
## 8454 HU Hungary 8970.5112
## 8455 HU Hungary 8563.6565
## 8456 HU Hungary 8284.9988
## 8457 HU Hungary 7955.4799
## 8458 HU Hungary 7697.5259
## 8459 HU Hungary 7677.9877
## 8460 HU Hungary 7554.7755
## 8461 HU Hungary 7328.4603
## 8462 HU Hungary 7362.5242
## 8463 HU Hungary 7592.2846
## 8464 HU Hungary NA
## 8465 HU Hungary NA
## 8466 HU Hungary NA
## 8467 HU Hungary NA
## 8468 HU Hungary NA
## 8469 HU Hungary NA
## 8470 HU Hungary NA
## 8471 HU Hungary NA
## 8472 HU Hungary NA
## 8473 HU Hungary NA
## 8474 HU Hungary NA
## 8475 HU Hungary NA
## 8476 HU Hungary NA
## 8477 HU Hungary NA
## 8478 HU Hungary NA
## 8479 HU Hungary NA
## 8480 HU Hungary NA
## 8481 HU Hungary NA
## 8482 HU Hungary NA
## 8483 HU Hungary NA
## 8484 HU Hungary NA
## 8485 HU Hungary NA
## 8486 HU Hungary NA
## 8487 HU Hungary NA
## 8488 HU Hungary NA
## 8489 HU Hungary NA
## 8490 HU Hungary NA
## 8491 HU Hungary NA
## 8492 HU Hungary NA
## 8493 HU Hungary NA
## 8494 HU Hungary NA
## 8495 IS Iceland 54291.8701
## 8496 IS Iceland 53188.0398
## 8497 IS Iceland 57818.8595
## 8498 IS Iceland 57699.4589
## 8499 IS Iceland 56501.4577
## 8500 IS Iceland 55513.6423
## 8501 IS Iceland 52951.6815
## 8502 IS Iceland 51233.2440
## 8503 IS Iceland 50946.8163
## 8504 IS Iceland 49191.5744
## 8505 IS Iceland 48933.5457
## 8506 IS Iceland 48193.7014
## 8507 IS Iceland 49527.3988
## 8508 IS Iceland 53821.4708
## 8509 IS Iceland 53646.3690
## 8510 IS Iceland 50731.6907
## 8511 IS Iceland 48850.7659
## 8512 IS Iceland 46766.0169
## 8513 IS Iceland 43763.7756
## 8514 IS Iceland 43143.4606
## 8515 IS Iceland 43288.0763
## 8516 IS Iceland 42174.6651
## 8517 IS Iceland 40725.8860
## 8518 IS Iceland 39622.6070
## 8519 IS Iceland 37302.6717
## 8520 IS Iceland 35557.3100
## 8521 IS Iceland 34188.3821
## 8522 IS Iceland NA
## 8523 IS Iceland NA
## 8524 IS Iceland NA
## 8525 IS Iceland NA
## 8526 IS Iceland NA
## 8527 IS Iceland NA
## 8528 IS Iceland NA
## 8529 IS Iceland NA
## 8530 IS Iceland NA
## 8531 IS Iceland NA
## 8532 IS Iceland NA
## 8533 IS Iceland NA
## 8534 IS Iceland NA
## 8535 IS Iceland NA
## 8536 IS Iceland NA
## 8537 IS Iceland NA
## 8538 IS Iceland NA
## 8539 IS Iceland NA
## 8540 IS Iceland NA
## 8541 IS Iceland NA
## 8542 IS Iceland NA
## 8543 IS Iceland NA
## 8544 IS Iceland NA
## 8545 IS Iceland NA
## 8546 IS Iceland NA
## 8547 IS Iceland NA
## 8548 IS Iceland NA
## 8549 IS Iceland NA
## 8550 IS Iceland NA
## 8551 IS Iceland NA
## 8552 IS Iceland NA
## 8553 IS Iceland NA
## 8554 IS Iceland NA
## 8555 IS Iceland NA
## 8556 IS Iceland NA
## 8557 IN India 1961.4210
## 8558 IN India 1817.8158
## 8559 IN India 1965.5393
## 8560 IN India 1914.0124
## 8561 IN India 1816.7309
## 8562 IN India 1719.3181
## 8563 IN India 1605.6054
## 8564 IN India 1503.4215
## 8565 IN India 1415.8287
## 8566 IN India 1346.6759
## 8567 IN India 1292.8212
## 8568 IN India 1244.3660
## 8569 IN India 1162.4988
## 8570 IN India 1093.0766
## 8571 IN India 1075.9941
## 8572 IN India 1014.6276
## 8573 IN India 953.5680
## 8574 IN India 897.6282
## 8575 IN India 845.2748
## 8576 IN India 796.7248
## 8577 IN India 780.6062
## 8578 IN India 757.6687
## 8579 IN India 742.6590
## 8580 IN India 694.7353
## 8581 IN India 666.4202
## 8582 IN India 652.5661
## 8583 IN India 618.3678
## 8584 IN India 585.9646
## 8585 IN India 560.1619
## 8586 IN India 545.3995
## 8587 IN India 527.5145
## 8588 IN India 532.7546
## 8589 IN India 515.4106
## 8590 IN India 496.8561
## 8591 IN India 463.0558
## 8592 IN India 455.2282
## 8593 IN India 444.2327
## 8594 IN India 431.7030
## 8595 IN India 425.4725
## 8596 IN India 405.8766
## 8597 IN India 401.4846
## 8598 IN India 387.6409
## 8599 IN India 371.6631
## 8600 IN India 401.3125
## 8601 IN India 388.4075
## 8602 IN India 370.5288
## 8603 IN India 372.9646
## 8604 IN India 349.7257
## 8605 IN India 353.7833
## 8606 IN India 350.5610
## 8607 IN India 360.7175
## 8608 IN India 362.9911
## 8609 IN India 352.8832
## 8610 IN India 338.4326
## 8611 IN India 334.3330
## 8612 IN India 316.6193
## 8613 IN India 323.4641
## 8614 IN India 339.2037
## 8615 IN India 322.2841
## 8616 IN India 310.3767
## 8617 IN India 307.7279
## 8618 IN India 302.6718
## 8619 ID Indonesia 3855.7971
## 8620 ID Indonesia 3757.1216
## 8621 ID Indonesia 3877.4246
## 8622 ID Indonesia 3732.8671
## 8623 ID Indonesia 3589.7155
## 8624 ID Indonesia 3456.9281
## 8625 ID Indonesia 3331.6951
## 8626 ID Indonesia 3217.3175
## 8627 ID Indonesia 3104.3480
## 8628 ID Indonesia 2980.6101
## 8629 ID Indonesia 2849.3550
## 8630 ID Indonesia 2720.1916
## 8631 ID Indonesia 2595.2988
## 8632 ID Indonesia 2513.6716
## 8633 ID Indonesia 2402.6675
## 8634 ID Indonesia 2289.4220
## 8635 ID Indonesia 2199.0939
## 8636 ID Indonesia 2108.6418
## 8637 ID Indonesia 2034.7615
## 8638 ID Indonesia 1968.3011
## 8639 ID Indonesia 1909.2919
## 8640 ID Indonesia 1867.5488
## 8641 ID Indonesia 1804.7052
## 8642 ID Indonesia 1815.6981
## 8643 ID Indonesia 2119.9181
## 8644 ID Indonesia 2054.3858
## 8645 ID Indonesia 1934.1234
## 8646 ID Indonesia 1815.0182
## 8647 ID Indonesia 1714.8776
## 8648 ID Indonesia 1636.9549
## 8649 ID Indonesia 1563.2950
## 8650 ID Indonesia 1489.7429
## 8651 ID Indonesia 1414.3514
## 8652 ID Indonesia 1336.4202
## 8653 ID Indonesia 1289.3365
## 8654 ID Indonesia 1252.2138
## 8655 ID Indonesia 1208.2510
## 8656 ID Indonesia 1204.4597
## 8657 ID Indonesia 1152.3984
## 8658 ID Indonesia 1129.1815
## 8659 ID Indonesia 1130.1923
## 8660 ID Indonesia 1072.4502
## 8661 ID Indonesia 998.2301
## 8662 ID Indonesia 954.1291
## 8663 ID Indonesia 914.5380
## 8664 ID Indonesia 865.6041
## 8665 ID Indonesia 828.7021
## 8666 ID Indonesia 804.7672
## 8667 ID Indonesia 769.9479
## 8668 ID Indonesia 730.9584
## 8669 ID Indonesia 701.0726
## 8670 ID Indonesia 672.6767
## 8671 ID Indonesia 642.4104
## 8672 ID Indonesia 617.8495
## 8673 ID Indonesia 572.3816
## 8674 ID Indonesia 580.1523
## 8675 ID Indonesia 579.9246
## 8676 ID Indonesia 589.4169
## 8677 ID Indonesia 584.7892
## 8678 ID Indonesia 614.3141
## 8679 ID Indonesia 619.4049
## 8680 ID Indonesia 601.4469
## 8681 IR Iran, Islamic Rep. NA
## 8682 IR Iran, Islamic Rep. 5333.0468
## 8683 IR Iran, Islamic Rep. 5308.9199
## 8684 IR Iran, Islamic Rep. 5454.2978
## 8685 IR Iran, Islamic Rep. 5657.9701
## 8686 IR Iran, Islamic Rep. 5582.8929
## 8687 IR Iran, Islamic Rep. 5200.6808
## 8688 IR Iran, Islamic Rep. 5345.7619
## 8689 IR Iran, Islamic Rep. 5157.4390
## 8690 IR Iran, Islamic Rep. 5302.4615
## 8691 IR Iran, Islamic Rep. 5575.6823
## 8692 IR Iran, Islamic Rep. 5496.2153
## 8693 IR Iran, Islamic Rep. 5254.6868
## 8694 IR Iran, Islamic Rep. 5260.2910
## 8695 IR Iran, Islamic Rep. 5304.8047
## 8696 IR Iran, Islamic Rep. 4959.1250
## 8697 IR Iran, Islamic Rep. 4776.6324
## 8698 IR Iran, Islamic Rep. 4683.4273
## 8699 IR Iran, Islamic Rep. 4543.3451
## 8700 IR Iran, Islamic Rep. 4234.1401
## 8701 IR Iran, Islamic Rep. 3966.9104
## 8702 IR Iran, Islamic Rep. 3922.9801
## 8703 IR Iran, Islamic Rep. 3753.3704
## 8704 IR Iran, Islamic Rep. 3727.3642
## 8705 IR Iran, Islamic Rep. 3699.7361
## 8706 IR Iran, Islamic Rep. 3699.7454
## 8707 IR Iran, Islamic Rep. 3527.0761
## 8708 IR Iran, Islamic Rep. 3492.8114
## 8709 IR Iran, Islamic Rep. 3604.7255
## 8710 IR Iran, Islamic Rep. 3717.2602
## 8711 IR Iran, Islamic Rep. 3667.2927
## 8712 IR Iran, Islamic Rep. 3329.3427
## 8713 IR Iran, Islamic Rep. 3013.4466
## 8714 IR Iran, Islamic Rep. 2932.6665
## 8715 IR Iran, Islamic Rep. 3237.4683
## 8716 IR Iran, Islamic Rep. 3370.3431
## 8717 IR Iran, Islamic Rep. 3886.8462
## 8718 IR Iran, Islamic Rep. 3972.8642
## 8719 IR Iran, Islamic Rep. 4458.3349
## 8720 IR Iran, Islamic Rep. 4182.8169
## 8721 IR Iran, Islamic Rep. 3536.9540
## 8722 IR Iran, Islamic Rep. 3900.9984
## 8723 IR Iran, Islamic Rep. 5164.5636
## 8724 IR Iran, Islamic Rep. 6078.5546
## 8725 IR Iran, Islamic Rep. 7206.0896
## 8726 IR Iran, Islamic Rep. 7646.5411
## 8727 IR Iran, Islamic Rep. 6664.2317
## 8728 IR Iran, Islamic Rep. 6884.4567
## 8729 IR Iran, Islamic Rep. 6692.4212
## 8730 IR Iran, Islamic Rep. 6400.8765
## 8731 IR Iran, Islamic Rep. 5741.8658
## 8732 IR Iran, Islamic Rep. 5185.9089
## 8733 IR Iran, Islamic Rep. 4801.1459
## 8734 IR Iran, Islamic Rep. 4268.8354
## 8735 IR Iran, Islamic Rep. 3832.7082
## 8736 IR Iran, Islamic Rep. 3538.2671
## 8737 IR Iran, Islamic Rep. 3258.4008
## 8738 IR Iran, Islamic Rep. 2858.2137
## 8739 IR Iran, Islamic Rep. 2704.7339
## 8740 IR Iran, Islamic Rep. 2593.4866
## 8741 IR Iran, Islamic Rep. 2466.5733
## 8742 IR Iran, Islamic Rep. 2292.8891
## 8743 IQ Iraq 4465.7562
## 8744 IQ Iraq 4448.1837
## 8745 IQ Iraq 5132.7011
## 8746 IQ Iraq 4975.3810
## 8747 IQ Iraq 4961.4045
## 8748 IQ Iraq 5183.4090
## 8749 IQ Iraq 4688.3180
## 8750 IQ Iraq 4627.8348
## 8751 IQ Iraq 4793.5394
## 8752 IQ Iraq 4630.7365
## 8753 IQ Iraq 4218.3824
## 8754 IQ Iraq 4052.0626
## 8755 IQ Iraq 3909.2916
## 8756 IQ Iraq 3859.7582
## 8757 IQ Iraq 3626.9459
## 8758 IQ Iraq 3619.8859
## 8759 IQ Iraq 3493.3447
## 8760 IQ Iraq 3515.3468
## 8761 IQ Iraq 2351.7127
## 8762 IQ Iraq 3818.8454
## 8763 IQ Iraq 4284.2599
## 8764 IQ Iraq 4337.4172
## 8765 IQ Iraq 3822.8337
## 8766 IQ Iraq 3352.3078
## 8767 IQ Iraq 2564.0567
## 8768 IQ Iraq 2181.7028
## 8769 IQ Iraq 2026.9367
## 8770 IQ Iraq 2046.8220
## 8771 IQ Iraq 2031.6033
## 8772 IQ Iraq 1606.0967
## 8773 IQ Iraq 1246.0601
## 8774 IQ Iraq 3559.3958
## 8775 IQ Iraq 2311.6739
## 8776 IQ Iraq 2441.0423
## 8777 IQ Iraq 2494.8585
## 8778 IQ Iraq 2332.2944
## 8779 IQ Iraq 2279.4251
## 8780 IQ Iraq 2300.8062
## 8781 IQ Iraq 2394.5673
## 8782 IQ Iraq 2827.8357
## 8783 IQ Iraq 2809.5522
## 8784 IQ Iraq 2911.1778
## 8785 IQ Iraq 2402.9243
## 8786 IQ Iraq 2049.6262
## 8787 IQ Iraq 1806.9721
## 8788 IQ Iraq 1831.0814
## 8789 IQ Iraq 1614.0569
## 8790 IQ Iraq 1482.0868
## 8791 IQ Iraq 1318.5113
## 8792 IQ Iraq 1304.5560
## 8793 IQ Iraq 1299.7395
## 8794 IQ Iraq 1275.4670
## 8795 IQ Iraq 1262.3307
## 8796 IQ Iraq 1265.5606
## 8797 IQ Iraq NA
## 8798 IQ Iraq NA
## 8799 IQ Iraq NA
## 8800 IQ Iraq NA
## 8801 IQ Iraq NA
## 8802 IQ Iraq NA
## 8803 IQ Iraq NA
## 8804 IQ Iraq NA
## 8805 IE Ireland 88588.4841
## 8806 IE Ireland 78732.5533
## 8807 IE Ireland 75143.0185
## 8808 IE Ireland 72607.6319
## 8809 IE Ireland 67424.2286
## 8810 IE Ireland 62568.6266
## 8811 IE Ireland 62012.4849
## 8812 IE Ireland 50010.4342
## 8813 IE Ireland 46339.4693
## 8814 IE Ireland 46001.2733
## 8815 IE Ireland 46220.8132
## 8816 IE Ireland 45932.0137
## 8817 IE Ireland 45386.4052
## 8818 IE Ireland 48313.9671
## 8819 IE Ireland 51625.2761
## 8820 IE Ireland 50462.2653
## 8821 IE Ireland 49381.7756
## 8822 IE Ireland 47731.4846
## 8823 IE Ireland 45523.0558
## 8824 IE Ireland 44918.8073
## 8825 IE Ireland 43138.6171
## 8826 IE Ireland 41623.0575
## 8827 IE Ireland 38557.4495
## 8828 IE Ireland 35282.0031
## 8829 IE Ireland 32781.2302
## 8830 IE Ireland 29826.2922
## 8831 IE Ireland 27998.8192
## 8832 IE Ireland 25669.6172
## 8833 IE Ireland 24368.4003
## 8834 IE Ireland 23848.3651
## 8835 IE Ireland 23234.8246
## 8836 IE Ireland 22926.3960
## 8837 IE Ireland 21154.6893
## 8838 IE Ireland 19913.2872
## 8839 IE Ireland 18845.0770
## 8840 IE Ireland 18007.3326
## 8841 IE Ireland 18093.0145
## 8842 IE Ireland 17579.5623
## 8843 IE Ireland 16950.7439
## 8844 IE Ireland 17113.1487
## 8845 IE Ireland 16890.0280
## 8846 IE Ireland 16539.0205
## 8847 IE Ireland 16230.6587
## 8848 IE Ireland 15957.9512
## 8849 IE Ireland 15100.7290
## 8850 IE Ireland 14145.1249
## 8851 IE Ireland 14162.6723
## 8852 IE Ireland 13626.8060
## 8853 IE Ireland 13288.3252
## 8854 IE Ireland 12894.3731
## 8855 IE Ireland 12289.8526
## 8856 IE Ireland 12017.4828
## 8857 IE Ireland NA
## 8858 IE Ireland NA
## 8859 IE Ireland NA
## 8860 IE Ireland NA
## 8861 IE Ireland NA
## 8862 IE Ireland NA
## 8863 IE Ireland NA
## 8864 IE Ireland NA
## 8865 IE Ireland NA
## 8866 IE Ireland NA
## 8867 IM Isle of Man NA
## 8868 IM Isle of Man NA
## 8869 IM Isle of Man 96105.3032
## 8870 IM Isle of Man 96449.3396
## 8871 IM Isle of Man 94883.2885
## 8872 IM Isle of Man 90975.3085
## 8873 IM Isle of Man 85126.9705
## 8874 IM Isle of Man 85194.6244
## 8875 IM Isle of Man 80538.4642
## 8876 IM Isle of Man 76833.1981
## 8877 IM Isle of Man 71304.0148
## 8878 IM Isle of Man 69933.0832
## 8879 IM Isle of Man 68015.8807
## 8880 IM Isle of Man 67306.1069
## 8881 IM Isle of Man 65025.6392
## 8882 IM Isle of Man 61324.6777
## 8883 IM Isle of Man 57642.3418
## 8884 IM Isle of Man 54963.4873
## 8885 IM Isle of Man 52668.5910
## 8886 IM Isle of Man 50042.6314
## 8887 IM Isle of Man 47491.6299
## 8888 IM Isle of Man 45506.4691
## 8889 IM Isle of Man 43753.9735
## 8890 IM Isle of Man 39026.2905
## 8891 IM Isle of Man 34889.5618
## 8892 IM Isle of Man 32552.9157
## 8893 IM Isle of Man 30540.2347
## 8894 IM Isle of Man 29473.5969
## 8895 IM Isle of Man 28431.6451
## 8896 IM Isle of Man 27776.8741
## 8897 IM Isle of Man 27686.1852
## 8898 IM Isle of Man 27495.3900
## 8899 IM Isle of Man 26782.4960
## 8900 IM Isle of Man 25559.6465
## 8901 IM Isle of Man 23354.8226
## 8902 IM Isle of Man 21667.5896
## 8903 IM Isle of Man 18453.1555
## 8904 IM Isle of Man 18510.0812
## 8905 IM Isle of Man NA
## 8906 IM Isle of Man NA
## 8907 IM Isle of Man NA
## 8908 IM Isle of Man NA
## 8909 IM Isle of Man NA
## 8910 IM Isle of Man NA
## 8911 IM Isle of Man NA
## 8912 IM Isle of Man NA
## 8913 IM Isle of Man NA
## 8914 IM Isle of Man NA
## 8915 IM Isle of Man NA
## 8916 IM Isle of Man NA
## 8917 IM Isle of Man NA
## 8918 IM Isle of Man NA
## 8919 IM Isle of Man NA
## 8920 IM Isle of Man NA
## 8921 IM Isle of Man NA
## 8922 IM Isle of Man NA
## 8923 IM Isle of Man NA
## 8924 IM Isle of Man NA
## 8925 IM Isle of Man NA
## 8926 IM Isle of Man NA
## 8927 IM Isle of Man NA
## 8928 IM Isle of Man NA
## 8929 IL Israel 39913.0985
## 8930 IL Israel 37488.4550
## 8931 IL Israel 38995.2305
## 8932 IL Israel 38301.4537
## 8933 IL Israel 37550.7277
## 8934 IL Israel 36680.3221
## 8935 IL Israel 35808.4364
## 8936 IL Israel 35710.8863
## 8937 IL Israel 34960.9434
## 8938 IL Israel 33995.4277
## 8939 IL Israel 33678.1315
## 8940 IL Israel 32504.7134
## 8941 IL Israel 31323.3120
## 8942 IL Israel 31718.4891
## 8943 IL Israel 31207.6020
## 8944 IL Israel 29939.9372
## 8945 IL Israel 28809.6425
## 8946 IL Israel 28151.2719
## 8947 IL Israel 27310.9659
## 8948 IL Israel 27492.5620
## 8949 IL Israel 28106.9451
## 8950 IL Israel 28747.9291
## 8951 IL Israel 27107.2211
## 8952 IL Israel 26847.7314
## 8953 IL Israel 26362.1535
## 8954 IL Israel 26008.2786
## 8955 IL Israel 25179.9699
## 8956 IL Israel NA
## 8957 IL Israel NA
## 8958 IL Israel NA
## 8959 IL Israel NA
## 8960 IL Israel NA
## 8961 IL Israel NA
## 8962 IL Israel NA
## 8963 IL Israel NA
## 8964 IL Israel NA
## 8965 IL Israel NA
## 8966 IL Israel NA
## 8967 IL Israel NA
## 8968 IL Israel NA
## 8969 IL Israel NA
## 8970 IL Israel NA
## 8971 IL Israel NA
## 8972 IL Israel NA
## 8973 IL Israel NA
## 8974 IL Israel NA
## 8975 IL Israel NA
## 8976 IL Israel NA
## 8977 IL Israel NA
## 8978 IL Israel NA
## 8979 IL Israel NA
## 8980 IL Israel NA
## 8981 IL Israel NA
## 8982 IL Israel NA
## 8983 IL Israel NA
## 8984 IL Israel NA
## 8985 IL Israel NA
## 8986 IL Israel NA
## 8987 IL Israel NA
## 8988 IL Israel NA
## 8989 IL Israel NA
## 8990 IL Israel NA
## 8991 IT Italy 31511.7949
## 8992 IT Italy 29358.1294
## 8993 IT Italy 32119.7444
## 8994 IT Italy 31593.4803
## 8995 IT Italy 31244.2271
## 8996 IT Italy 30685.6459
## 8997 IT Italy 30242.3861
## 8998 IT Italy 29979.9187
## 8999 IT Italy 30257.6274
## 9000 IT Italy 31184.5584
## 9001 IT Italy 32229.4568
## 9002 IT Italy 32058.1740
## 9003 IT Italy 31615.2708
## 9004 IT Italy 33530.3601
## 9005 IT Italy 34081.0903
## 9006 IT Italy 33751.7000
## 9007 IT Italy 33257.7698
## 9008 IT Italy 33150.4762
## 9009 IT Italy 32897.3908
## 9010 IT Italy 32998.2032
## 9011 IT Italy 32963.6706
## 9012 IT Italy 32350.9044
## 9013 IT Italy 31184.6164
## 9014 IT Italy 30690.9117
## 9015 IT Italy 30153.7752
## 9016 IT Italy 29627.4869
## 9017 IT Italy 29265.0890
## 9018 IT Italy 28444.4103
## 9019 IT Italy 27851.1214
## 9020 IT Italy 28107.8590
## 9021 IT Italy 27894.2428
## 9022 IT Italy 27490.6320
## 9023 IT Italy 26977.9327
## 9024 IT Italy 26113.3555
## 9025 IT Italy 25074.2673
## 9026 IT Italy 24301.1434
## 9027 IT Italy 23626.7493
## 9028 IT Italy 22990.2903
## 9029 IT Italy 22276.8124
## 9030 IT Italy 22027.3545
## 9031 IT Italy 21952.8849
## 9032 IT Italy 21795.2545
## 9033 IT Italy 21115.9195
## 9034 IT Italy 19986.0626
## 9035 IT Italy 19427.9111
## 9036 IT Italy 19023.5042
## 9037 IT Italy 17846.9746
## 9038 IT Italy 18337.1606
## 9039 IT Italy 17495.2850
## 9040 IT Italy 16442.6580
## 9041 IT Italy 15947.7221
## 9042 IT Italy 15736.1836
## 9043 IT Italy 15027.8575
## 9044 IT Italy 14244.5255
## 9045 IT Italy 13454.2758
## 9046 IT Italy 12644.3214
## 9047 IT Italy 12023.4127
## 9048 IT Italy 11741.3794
## 9049 IT Italy 11516.1768
## 9050 IT Italy 10984.3107
## 9051 IT Italy 10412.9048
## 9052 IT Italy 9687.6470
## 9053 JM Jamaica 4728.1547
## 9054 JM Jamaica 4539.0019
## 9055 JM Jamaica 5065.3749
## 9056 JM Jamaica 5043.5408
## 9057 JM Jamaica 4973.7242
## 9058 JM Jamaica 4949.3695
## 9059 JM Jamaica 4907.9274
## 9060 JM Jamaica 4889.9863
## 9061 JM Jamaica 4884.3920
## 9062 JM Jamaica 4887.5870
## 9063 JM Jamaica 4945.9488
## 9064 JM Jamaica 4888.5791
## 9065 JM Jamaica 4986.8165
## 9066 JM Jamaica 5239.5328
## 9067 JM Jamaica 5308.4403
## 9068 JM Jamaica 5259.7481
## 9069 JM Jamaica 5138.4474
## 9070 JM Jamaica 5120.9294
## 9071 JM Jamaica 5083.0882
## 9072 JM Jamaica 4933.5343
## 9073 JM Jamaica 4869.7257
## 9074 JM Jamaica 4841.3157
## 9075 JM Jamaica 4839.2878
## 9076 JM Jamaica 4832.8088
## 9077 JM Jamaica 4996.1299
## 9078 JM Jamaica 5103.7046
## 9079 JM Jamaica 5159.7820
## 9080 JM Jamaica 5090.8676
## 9081 JM Jamaica 5070.8343
## 9082 JM Jamaica 4678.7281
## 9083 JM Jamaica 4629.8455
## 9084 JM Jamaica 4451.6351
## 9085 JM Jamaica 4301.3976
## 9086 JM Jamaica 4037.0953
## 9087 JM Jamaica 3905.6905
## 9088 JM Jamaica 3647.8654
## 9089 JM Jamaica 3615.1914
## 9090 JM Jamaica 3771.9037
## 9091 JM Jamaica 3889.3932
## 9092 JM Jamaica 3880.8908
## 9093 JM Jamaica 3866.4942
## 9094 JM Jamaica 3826.4259
## 9095 JM Jamaica 4115.5146
## 9096 JM Jamaica 4212.7039
## 9097 JM Jamaica 4265.7679
## 9098 JM Jamaica 4433.7629
## 9099 JM Jamaica 4815.9530
## 9100 JM Jamaica 4900.0935
## 9101 JM Jamaica 5197.9912
## 9102 JM Jamaica 5590.3075
## 9103 JM Jamaica 4813.8451
## 9104 JM Jamaica 4770.1075
## 9105 JM Jamaica 4316.3616
## 9106 JM Jamaica 4141.7029
## 9107 JM Jamaica 3965.6964
## 9108 JM Jamaica 3945.1294
## 9109 JM Jamaica NA
## 9110 JM Jamaica NA
## 9111 JM Jamaica NA
## 9112 JM Jamaica NA
## 9113 JM Jamaica NA
## 9114 JM Jamaica NA
## 9115 JP Japan 35278.4205
## 9116 JP Japan 34556.4399
## 9117 JP Japan 36081.0653
## 9118 JP Japan 36117.2277
## 9119 JP Japan 35861.9729
## 9120 JP Japan 35242.1994
## 9121 JP Japan 34960.6394
## 9122 JP Japan 34386.9059
## 9123 JP Japan 34239.8862
## 9124 JP Japan 33518.4449
## 9125 JP Japan 33011.1342
## 9126 JP Japan 32942.2021
## 9127 JP Japan 31651.0838
## 9128 JP Japan 33557.6454
## 9129 JP Japan 33990.0360
## 9130 JP Japan 33531.5186
## 9131 JP Japan 33098.5475
## 9132 JP Japan 32515.1158
## 9133 JP Japan 31830.2176
## 9134 JP Japan 31416.1242
## 9135 JP Japan 31476.0521
## 9136 JP Japan 31430.6311
## 9137 JP Japan 30636.2661
## 9138 JP Japan 30795.0889
## 9139 JP Japan 31276.1931
## 9140 JP Japan 31046.1702
## 9141 JP Japan 30171.1638
## 9142 JP Japan 29466.7552
## 9143 JP Japan 29232.4398
## 9144 JP Japan 29462.6540
## 9145 JP Japan 29308.2741
## 9146 JP Japan 28422.2131
## 9147 JP Japan 27199.9400
## 9148 JP Japan 26026.8649
## 9149 JP Japan 24503.0846
## 9150 JP Japan 23527.7125
## 9151 JP Japan 22898.9942
## 9152 JP Japan 21912.1519
## 9153 JP Japan 21122.9648
## 9154 JP Japan 20525.2959
## 9155 JP Japan 20011.8293
## 9156 JP Japan 19334.3747
## 9157 JP Japan 18953.3339
## 9158 JP Japan 18120.7284
## 9159 JP Japan 17370.6165
## 9160 JP Japan 16801.9250
## 9161 JP Japan 16333.6748
## 9162 JP Japan 16046.7847
## 9163 JP Japan 16463.2792
## 9164 JP Japan 15455.1369
## 9165 JP Japan 14456.8212
## 9166 JP Japan 14114.3158
## 9167 JP Japan 13935.6863
## 9168 JP Japan 12537.8809
## 9169 JP Japan 11232.9061
## 9170 JP Japan 10217.4142
## 9171 JP Japan 9319.7066
## 9172 JP Japan 8902.4956
## 9173 JP Japan 8055.0414
## 9174 JP Japan 7501.4454
## 9175 JP Japan 6952.1096
## 9176 JP Japan 6260.6760
## 9177 JO Jordan 4091.5742
## 9178 JO Jordan 4028.9630
## 9179 JO Jordan 4133.5498
## 9180 JO Jordan 4109.7524
## 9181 JO Jordan 4105.7210
## 9182 JO Jordan 4119.2521
## 9183 JO Jordan 4164.1088
## 9184 JO Jordan 4221.0895
## 9185 JO Jordan 4274.5479
## 9186 JO Jordan 4386.7451
## 9187 JO Jordan 4521.4081
## 9188 JO Jordan 4644.1694
## 9189 JO Jordan 4781.6051
## 9190 JO Jordan 4786.7485
## 9191 JO Jordan 4678.8351
## 9192 JO Jordan 4515.5911
## 9193 JO Jordan 4341.1887
## 9194 JO Jordan 4147.5374
## 9195 JO Jordan 3923.0338
## 9196 JO Jordan 3848.8236
## 9197 JO Jordan 3708.2526
## 9198 JO Jordan 3587.8267
## 9199 JO Jordan 3503.7685
## 9200 JO Jordan 3449.0697
## 9201 JO Jordan 3414.1222
## 9202 JO Jordan 3385.5652
## 9203 JO Jordan 3420.4252
## 9204 JO Jordan 3351.0536
## 9205 JO Jordan 3350.9916
## 9206 JO Jordan 3387.6082
## 9207 JO Jordan 3133.5850
## 9208 JO Jordan 3252.2835
## 9209 JO Jordan 3421.0725
## 9210 JO Jordan 4000.2639
## 9211 JO Jordan 4099.6661
## 9212 JO Jordan 4161.3900
## 9213 JO Jordan 4101.0051
## 9214 JO Jordan 4390.0978
## 9215 JO Jordan 4387.5692
## 9216 JO Jordan 4676.0190
## 9217 JO Jordan 4543.9207
## 9218 JO Jordan 4019.4323
## 9219 JO Jordan 3732.6271
## 9220 JO Jordan 3179.8407
## 9221 JO Jordan 2847.3300
## 9222 JO Jordan 2698.7217
## 9223 JO Jordan NA
## 9224 JO Jordan NA
## 9225 JO Jordan NA
## 9226 JO Jordan NA
## 9227 JO Jordan NA
## 9228 JO Jordan NA
## 9229 JO Jordan NA
## 9230 JO Jordan NA
## 9231 JO Jordan NA
## 9232 JO Jordan NA
## 9233 JO Jordan NA
## 9234 JO Jordan NA
## 9235 JO Jordan NA
## 9236 JO Jordan NA
## 9237 JO Jordan NA
## 9238 JO Jordan NA
## 9239 KZ Kazakhstan 11264.9126
## 9240 KZ Kazakhstan 10974.2463
## 9241 KZ Kazakhstan 11402.7601
## 9242 KZ Kazakhstan 11053.3621
## 9243 KZ Kazakhstan 10758.5209
## 9244 KZ Kazakhstan 10476.3476
## 9245 KZ Kazakhstan 10510.7719
## 9246 KZ Kazakhstan 10539.0447
## 9247 KZ Kazakhstan 10264.2981
## 9248 KZ Kazakhstan 9823.6939
## 9249 KZ Kazakhstan 9506.7341
## 9250 KZ Kazakhstan 8979.3323
## 9251 KZ Kazakhstan 8487.5448
## 9252 KZ Kazakhstan 8554.8236
## 9253 KZ Kazakhstan 8438.1046
## 9254 KZ Kazakhstan 7837.6291
## 9255 KZ Kazakhstan 7155.3437
## 9256 KZ Kazakhstan 6580.8850
## 9257 KZ Kazakhstan 6046.3280
## 9258 KZ Kazakhstan 5550.5056
## 9259 KZ Kazakhstan 5055.3139
## 9260 KZ Kazakhstan 4446.4525
## 9261 KZ Kazakhstan 4037.4538
## 9262 KZ Kazakhstan 3893.9387
## 9263 KZ Kazakhstan 3901.3390
## 9264 KZ Kazakhstan 3776.0839
## 9265 KZ Kazakhstan 3700.7545
## 9266 KZ Kazakhstan 3949.0467
## 9267 KZ Kazakhstan 4453.5648
## 9268 KZ Kazakhstan 4887.3758
## 9269 KZ Kazakhstan 5156.9461
## 9270 KZ Kazakhstan 5831.0804
## 9271 KZ Kazakhstan NA
## 9272 KZ Kazakhstan NA
## 9273 KZ Kazakhstan NA
## 9274 KZ Kazakhstan NA
## 9275 KZ Kazakhstan NA
## 9276 KZ Kazakhstan NA
## 9277 KZ Kazakhstan NA
## 9278 KZ Kazakhstan NA
## 9279 KZ Kazakhstan NA
## 9280 KZ Kazakhstan NA
## 9281 KZ Kazakhstan NA
## 9282 KZ Kazakhstan NA
## 9283 KZ Kazakhstan NA
## 9284 KZ Kazakhstan NA
## 9285 KZ Kazakhstan NA
## 9286 KZ Kazakhstan NA
## 9287 KZ Kazakhstan NA
## 9288 KZ Kazakhstan NA
## 9289 KZ Kazakhstan NA
## 9290 KZ Kazakhstan NA
## 9291 KZ Kazakhstan NA
## 9292 KZ Kazakhstan NA
## 9293 KZ Kazakhstan NA
## 9294 KZ Kazakhstan NA
## 9295 KZ Kazakhstan NA
## 9296 KZ Kazakhstan NA
## 9297 KZ Kazakhstan NA
## 9298 KZ Kazakhstan NA
## 9299 KZ Kazakhstan NA
## 9300 KZ Kazakhstan NA
## 9301 KE Kenya 1643.5691
## 9302 KE Kenya 1563.1787
## 9303 KE Kenya 1602.7884
## 9304 KE Kenya 1559.8591
## 9305 KE Kenya 1510.9081
## 9306 KE Kenya 1489.7588
## 9307 KE Kenya 1464.5540
## 9308 KE Kenya 1430.4452
## 9309 KE Kenya 1397.3787
## 9310 KE Kenya 1381.9687
## 9311 KE Kenya 1357.2536
## 9312 KE Kenya 1326.3858
## 9313 KE Kenya 1261.3485
## 9314 KE Kenya 1255.0251
## 9315 KE Kenya 1287.2498
## 9316 KE Kenya 1238.5370
## 9317 KE Kenya 1195.7738
## 9318 KE Kenya 1160.4385
## 9319 KE Kenya 1134.5349
## 9320 KE Kenya 1132.4865
## 9321 KE Kenya 1157.2956
## 9322 KE Kenya 1145.9846
## 9323 KE Kenya 1170.8674
## 9324 KE Kenya 1176.5758
## 9325 KE Kenya 1171.4251
## 9326 KE Kenya 1199.5812
## 9327 KE Kenya 1185.8785
## 9328 KE Kenya 1170.2971
## 9329 KE Kenya 1175.8021
## 9330 KE Kenya 1209.1433
## 9331 KE Kenya 1258.8705
## 9332 KE Kenya 1282.7183
## 9333 KE Kenya 1273.4876
## 9334 KE Kenya 1259.3385
## 9335 KE Kenya 1228.5713
## 9336 KE Kenya 1202.4312
## 9337 KE Kenya 1163.9825
## 9338 KE Kenya 1158.5776
## 9339 KE Kenya 1182.7388
## 9340 KE Kenya 1213.2317
## 9341 KE Kenya 1242.3275
## 9342 KE Kenya 1244.3078
## 9343 KE Kenya 1224.6169
## 9344 KE Kenya 1182.2928
## 9345 KE Kenya 1148.6450
## 9346 KE Kenya 1089.8312
## 9347 KE Kenya 1107.7436
## 9348 KE Kenya 1139.9186
## 9349 KE Kenya 1136.8101
## 9350 KE Kenya 1113.7002
## 9351 KE Kenya 986.3760
## 9352 KE Kenya 836.7620
## 9353 KE Kenya 909.0470
## 9354 KE Kenya 871.6486
## 9355 KE Kenya 835.1358
## 9356 KE Kenya 835.5380
## 9357 KE Kenya 752.8260
## 9358 KE Kenya 762.6027
## 9359 KE Kenya 750.4724
## 9360 KE Kenya 712.3702
## 9361 KE Kenya 671.7410
## 9362 KE Kenya 751.4767
## 9363 KI Kiribati NA
## 9364 KI Kiribati 1473.8880
## 9365 KI Kiribati 1505.1552
## 9366 KI Kiribati 1536.3918
## 9367 KI Kiribati 1481.0131
## 9368 KI Kiribati 1506.0717
## 9369 KI Kiribati 1535.1628
## 9370 KI Kiribati 1416.9879
## 9371 KI Kiribati 1452.6135
## 9372 KI Kiribati 1414.6117
## 9373 KI Kiribati 1366.3681
## 9374 KI Kiribati 1366.2480
## 9375 KI Kiribati 1409.1347
## 9376 KI Kiribati 1428.5993
## 9377 KI Kiribati 1492.8082
## 9378 KI Kiribati 1496.9987
## 9379 KI Kiribati 1530.5409
## 9380 KI Kiribati 1487.6743
## 9381 KI Kiribati 1540.5393
## 9382 KI Kiribati 1536.7393
## 9383 KI Kiribati 1505.9113
## 9384 KI Kiribati 1554.4447
## 9385 KI Kiribati 1488.3280
## 9386 KI Kiribati 1537.7344
## 9387 KI Kiribati 1467.7598
## 9388 KI Kiribati 1467.1914
## 9389 KI Kiribati 1464.7925
## 9390 KI Kiribati 1484.8152
## 9391 KI Kiribati 1478.0991
## 9392 KI Kiribati 1483.8583
## 9393 KI Kiribati 1492.4131
## 9394 KI Kiribati 1519.1715
## 9395 KI Kiribati 1565.9167
## 9396 KI Kiribati 1661.7097
## 9397 KI Kiribati 1563.7866
## 9398 KI Kiribati 1767.3313
## 9399 KI Kiribati 1824.2510
## 9400 KI Kiribati 1998.7974
## 9401 KI Kiribati 1937.7054
## 9402 KI Kiribati 1980.5690
## 9403 KI Kiribati 1878.0567
## 9404 KI Kiribati 1968.6319
## 9405 KI Kiribati 2391.2115
## 9406 KI Kiribati 2744.7145
## 9407 KI Kiribati 2756.8008
## 9408 KI Kiribati 2933.3680
## 9409 KI Kiribati 4064.3192
## 9410 KI Kiribati 3913.5107
## 9411 KI Kiribati 2732.3731
## 9412 KI Kiribati 2293.3710
## 9413 KI Kiribati 2077.5405
## 9414 KI Kiribati 2161.0309
## 9415 KI Kiribati NA
## 9416 KI Kiribati NA
## 9417 KI Kiribati NA
## 9418 KI Kiribati NA
## 9419 KI Kiribati NA
## 9420 KI Kiribati NA
## 9421 KI Kiribati NA
## 9422 KI Kiribati NA
## 9423 KI Kiribati NA
## 9424 KI Kiribati NA
## 9425 KP Korea, Dem. People's Rep. NA
## 9426 KP Korea, Dem. People's Rep. NA
## 9427 KP Korea, Dem. People's Rep. NA
## 9428 KP Korea, Dem. People's Rep. NA
## 9429 KP Korea, Dem. People's Rep. NA
## 9430 KP Korea, Dem. People's Rep. NA
## 9431 KP Korea, Dem. People's Rep. NA
## 9432 KP Korea, Dem. People's Rep. NA
## 9433 KP Korea, Dem. People's Rep. NA
## 9434 KP Korea, Dem. People's Rep. NA
## 9435 KP Korea, Dem. People's Rep. NA
## 9436 KP Korea, Dem. People's Rep. NA
## 9437 KP Korea, Dem. People's Rep. NA
## 9438 KP Korea, Dem. People's Rep. NA
## 9439 KP Korea, Dem. People's Rep. NA
## 9440 KP Korea, Dem. People's Rep. NA
## 9441 KP Korea, Dem. People's Rep. NA
## 9442 KP Korea, Dem. People's Rep. NA
## 9443 KP Korea, Dem. People's Rep. NA
## 9444 KP Korea, Dem. People's Rep. NA
## 9445 KP Korea, Dem. People's Rep. NA
## 9446 KP Korea, Dem. People's Rep. NA
## 9447 KP Korea, Dem. People's Rep. NA
## 9448 KP Korea, Dem. People's Rep. NA
## 9449 KP Korea, Dem. People's Rep. NA
## 9450 KP Korea, Dem. People's Rep. NA
## 9451 KP Korea, Dem. People's Rep. NA
## 9452 KP Korea, Dem. People's Rep. NA
## 9453 KP Korea, Dem. People's Rep. NA
## 9454 KP Korea, Dem. People's Rep. NA
## 9455 KP Korea, Dem. People's Rep. NA
## 9456 KP Korea, Dem. People's Rep. NA
## 9457 KP Korea, Dem. People's Rep. NA
## 9458 KP Korea, Dem. People's Rep. NA
## 9459 KP Korea, Dem. People's Rep. NA
## 9460 KP Korea, Dem. People's Rep. NA
## 9461 KP Korea, Dem. People's Rep. NA
## 9462 KP Korea, Dem. People's Rep. NA
## 9463 KP Korea, Dem. People's Rep. NA
## 9464 KP Korea, Dem. People's Rep. NA
## 9465 KP Korea, Dem. People's Rep. NA
## 9466 KP Korea, Dem. People's Rep. NA
## 9467 KP Korea, Dem. People's Rep. NA
## 9468 KP Korea, Dem. People's Rep. NA
## 9469 KP Korea, Dem. People's Rep. NA
## 9470 KP Korea, Dem. People's Rep. NA
## 9471 KP Korea, Dem. People's Rep. NA
## 9472 KP Korea, Dem. People's Rep. NA
## 9473 KP Korea, Dem. People's Rep. NA
## 9474 KP Korea, Dem. People's Rep. NA
## 9475 KP Korea, Dem. People's Rep. NA
## 9476 KP Korea, Dem. People's Rep. NA
## 9477 KP Korea, Dem. People's Rep. NA
## 9478 KP Korea, Dem. People's Rep. NA
## 9479 KP Korea, Dem. People's Rep. NA
## 9480 KP Korea, Dem. People's Rep. NA
## 9481 KP Korea, Dem. People's Rep. NA
## 9482 KP Korea, Dem. People's Rep. NA
## 9483 KP Korea, Dem. People's Rep. NA
## 9484 KP Korea, Dem. People's Rep. NA
## 9485 KP Korea, Dem. People's Rep. NA
## 9486 KP Korea, Dem. People's Rep. NA
## 9487 KR Korea, Rep. 32644.6714
## 9488 KR Korea, Rep. 31327.4094
## 9489 KR Korea, Rep. 31640.2146
## 9490 KR Korea, Rep. 31053.6379
## 9491 KR Korea, Rep. 30307.3952
## 9492 KR Korea, Rep. 29461.7840
## 9493 KR Korea, Rep. 28732.2311
## 9494 KR Korea, Rep. 28094.9177
## 9495 KR Korea, Rep. 27394.6503
## 9496 KR Korea, Rep. 26675.4402
## 9497 KR Korea, Rep. 26186.8975
## 9498 KR Korea, Rep. 25451.0042
## 9499 KR Korea, Rep. 23948.4722
## 9500 KR Korea, Rep. 23882.7305
## 9501 KR Korea, Rep. 23360.9057
## 9502 KR Korea, Rep. 22192.1851
## 9503 KR Korea, Rep. 21193.3575
## 9504 KR Korea, Rep. 20361.0693
## 9505 KR Korea, Rep. 19431.9711
## 9506 KR Korea, Rep. 18936.9517
## 9507 KR Korea, Rep. 17680.8455
## 9508 KR Korea, Rep. 16992.4791
## 9509 KR Korea, Rep. 15711.5640
## 9510 KR Korea, Rep. 14195.8131
## 9511 KR Korea, Rep. 15071.7564
## 9512 KR Korea, Rep. 14329.5393
## 9513 KR Korea, Rep. 13408.6814
## 9514 KR Korea, Rep. 12356.2783
## 9515 KR Korea, Rep. 11422.5147
## 9516 KR Korea, Rep. 10796.6047
## 9517 KR Korea, Rep. 10272.6207
## 9518 KR Korea, Rep. 9365.3950
## 9519 KR Korea, Rep. 8607.8658
## 9520 KR Korea, Rep. 8119.1680
## 9521 KR Korea, Rep. 7321.3928
## 9522 KR Korea, Rep. 6559.2907
## 9523 KR Korea, Rep. 5950.8004
## 9524 KR Korea, Rep. 5572.8326
## 9525 KR Korea, Rep. 5103.5230
## 9526 KR Korea, Rep. 4568.2591
## 9527 KR Korea, Rep. 4282.3434
## 9528 KR Korea, Rep. 4055.7908
## 9529 KR Korea, Rep. 4188.4223
## 9530 KR Korea, Rep. 3913.1239
## 9531 KR Korea, Rep. 3580.8192
## 9532 KR Korea, Rep. 3237.6830
## 9533 KR Korea, Rep. 2905.6238
## 9534 KR Korea, Rep. 2740.0886
## 9535 KR Korea, Rep. 2545.3162
## 9536 KR Korea, Rep. 2254.7980
## 9537 KR Korea, Rep. 2142.9007
## 9538 KR Korea, Rep. 1977.0710
## 9539 KR Korea, Rep. 1836.1459
## 9540 KR Korea, Rep. 1639.4530
## 9541 KR Korea, Rep. 1482.7265
## 9542 KR Korea, Rep. 1391.4202
## 9543 KR Korea, Rep. 1274.0415
## 9544 KR Korea, Rep. 1217.7263
## 9545 KR Korea, Rep. 1141.8207
## 9546 KR Korea, Rep. 1076.9208
## 9547 KR Korea, Rep. 1066.6105
## 9548 KR Korea, Rep. 1027.4685
## 9549 XK Kosovo 4316.3184
## 9550 XK Kosovo 3990.9703
## 9551 XK Kosovo 4219.0807
## 9552 XK Kosovo 4009.1064
## 9553 XK Kosovo 3890.1962
## 9554 XK Kosovo 3739.1815
## 9555 XK Kosovo 3520.7664
## 9556 XK Kosovo 3279.0400
## 9557 XK Kosovo 3163.4602
## 9558 XK Kosovo 3021.3672
## 9559 XK Kosovo 2997.2194
## 9560 XK Kosovo 2843.3800
## 9561 XK Kosovo 2731.3832
## 9562 XK Kosovo 2621.4236
## 9563 XK Kosovo NA
## 9564 XK Kosovo NA
## 9565 XK Kosovo NA
## 9566 XK Kosovo NA
## 9567 XK Kosovo NA
## 9568 XK Kosovo NA
## 9569 XK Kosovo NA
## 9570 XK Kosovo NA
## 9571 XK Kosovo NA
## 9572 XK Kosovo NA
## 9573 XK Kosovo NA
## 9574 XK Kosovo NA
## 9575 XK Kosovo NA
## 9576 XK Kosovo NA
## 9577 XK Kosovo NA
## 9578 XK Kosovo NA
## 9579 XK Kosovo NA
## 9580 XK Kosovo NA
## 9581 XK Kosovo NA
## 9582 XK Kosovo NA
## 9583 XK Kosovo NA
## 9584 XK Kosovo NA
## 9585 XK Kosovo NA
## 9586 XK Kosovo NA
## 9587 XK Kosovo NA
## 9588 XK Kosovo NA
## 9589 XK Kosovo NA
## 9590 XK Kosovo NA
## 9591 XK Kosovo NA
## 9592 XK Kosovo NA
## 9593 XK Kosovo NA
## 9594 XK Kosovo NA
## 9595 XK Kosovo NA
## 9596 XK Kosovo NA
## 9597 XK Kosovo NA
## 9598 XK Kosovo NA
## 9599 XK Kosovo NA
## 9600 XK Kosovo NA
## 9601 XK Kosovo NA
## 9602 XK Kosovo NA
## 9603 XK Kosovo NA
## 9604 XK Kosovo NA
## 9605 XK Kosovo NA
## 9606 XK Kosovo NA
## 9607 XK Kosovo NA
## 9608 XK Kosovo NA
## 9609 XK Kosovo NA
## 9610 XK Kosovo NA
## 9611 KW Kuwait NA
## 9612 KW Kuwait 24429.2205
## 9613 KW Kuwait 27207.1318
## 9614 KW Kuwait 27819.4480
## 9615 KW Kuwait 27702.1879
## 9616 KW Kuwait 29801.2380
## 9617 KW Kuwait 29869.5528
## 9618 KW Kuwait 30857.1604
## 9619 KW Kuwait 32136.1332
## 9620 KW Kuwait 33455.2390
## 9621 KW Kuwait 33166.9196
## 9622 KW Kuwait 32035.3785
## 9623 KW Kuwait 34800.3088
## 9624 KW Kuwait 39777.2869
## 9625 KW Kuwait 41170.6708
## 9626 KW Kuwait 40976.6769
## 9627 KW Kuwait 39849.5969
## 9628 KW Kuwait 37168.5540
## 9629 KW Kuwait 34322.2468
## 9630 KW Kuwait 29590.9721
## 9631 KW Kuwait 29185.6140
## 9632 KW Kuwait 29951.5666
## 9633 KW Kuwait 29978.8255
## 9634 KW Kuwait 32534.0128
## 9635 KW Kuwait 33602.6468
## 9636 KW Kuwait 34472.6275
## 9637 KW Kuwait 34712.3110
## 9638 KW Kuwait NA
## 9639 KW Kuwait NA
## 9640 KW Kuwait NA
## 9641 KW Kuwait NA
## 9642 KW Kuwait NA
## 9643 KW Kuwait NA
## 9644 KW Kuwait NA
## 9645 KW Kuwait NA
## 9646 KW Kuwait NA
## 9647 KW Kuwait NA
## 9648 KW Kuwait NA
## 9649 KW Kuwait NA
## 9650 KW Kuwait NA
## 9651 KW Kuwait NA
## 9652 KW Kuwait NA
## 9653 KW Kuwait NA
## 9654 KW Kuwait NA
## 9655 KW Kuwait NA
## 9656 KW Kuwait NA
## 9657 KW Kuwait NA
## 9658 KW Kuwait NA
## 9659 KW Kuwait NA
## 9660 KW Kuwait NA
## 9661 KW Kuwait NA
## 9662 KW Kuwait NA
## 9663 KW Kuwait NA
## 9664 KW Kuwait NA
## 9665 KW Kuwait NA
## 9666 KW Kuwait NA
## 9667 KW Kuwait NA
## 9668 KW Kuwait NA
## 9669 KW Kuwait NA
## 9670 KW Kuwait NA
## 9671 KW Kuwait NA
## 9672 KW Kuwait NA
## 9673 KG Kyrgyz Republic 1122.9701
## 9674 KG Kyrgyz Republic 1102.6644
## 9675 KG Kyrgyz Republic 1226.8245
## 9676 KG Kyrgyz Republic 1197.6107
## 9677 KG Kyrgyz Republic 1177.4387
## 9678 KG Kyrgyz Republic 1146.1032
## 9679 KG Kyrgyz Republic 1121.0828
## 9680 KG Kyrgyz Republic 1101.7053
## 9681 KG Kyrgyz Republic 1080.5482
## 9682 KG Kyrgyz Republic 993.7374
## 9683 KG Kyrgyz Republic 1011.3155
## 9684 KG Kyrgyz Republic 966.1507
## 9685 KG Kyrgyz Republic 982.3772
## 9686 KG Kyrgyz Republic 966.4154
## 9687 KG Kyrgyz Republic 900.0255
## 9688 KG Kyrgyz Republic 837.1338
## 9689 KG Kyrgyz Republic 820.7160
## 9690 KG Kyrgyz Republic 831.4843
## 9691 KG Kyrgyz Republic 786.3518
## 9692 KG Kyrgyz Republic 742.4437
## 9693 KG Kyrgyz Republic 749.4198
## 9694 KG Kyrgyz Republic 718.3373
## 9695 KG Kyrgyz Republic 689.4175
## 9696 KG Kyrgyz Republic 675.0605
## 9697 KG Kyrgyz Republic 671.2531
## 9698 KG Kyrgyz Republic 619.6729
## 9699 KG Kyrgyz Republic 587.3052
## 9700 KG Kyrgyz Republic 627.2168
## 9701 KG Kyrgyz Republic 784.5784
## 9702 KG Kyrgyz Republic 928.3156
## 9703 KG Kyrgyz Republic 1089.9085
## 9704 KG Kyrgyz Republic 1203.4821
## 9705 KG Kyrgyz Republic 1160.6762
## 9706 KG Kyrgyz Republic 1153.0252
## 9707 KG Kyrgyz Republic 1036.7103
## 9708 KG Kyrgyz Republic 1022.8667
## 9709 KG Kyrgyz Republic NA
## 9710 KG Kyrgyz Republic NA
## 9711 KG Kyrgyz Republic NA
## 9712 KG Kyrgyz Republic NA
## 9713 KG Kyrgyz Republic NA
## 9714 KG Kyrgyz Republic NA
## 9715 KG Kyrgyz Republic NA
## 9716 KG Kyrgyz Republic NA
## 9717 KG Kyrgyz Republic NA
## 9718 KG Kyrgyz Republic NA
## 9719 KG Kyrgyz Republic NA
## 9720 KG Kyrgyz Republic NA
## 9721 KG Kyrgyz Republic NA
## 9722 KG Kyrgyz Republic NA
## 9723 KG Kyrgyz Republic NA
## 9724 KG Kyrgyz Republic NA
## 9725 KG Kyrgyz Republic NA
## 9726 KG Kyrgyz Republic NA
## 9727 KG Kyrgyz Republic NA
## 9728 KG Kyrgyz Republic NA
## 9729 KG Kyrgyz Republic NA
## 9730 KG Kyrgyz Republic NA
## 9731 KG Kyrgyz Republic NA
## 9732 KG Kyrgyz Republic NA
## 9733 KG Kyrgyz Republic NA
## 9734 KG Kyrgyz Republic NA
## 9735 LA Lao PDR 2582.1699
## 9736 LA Lao PDR 2554.4255
## 9737 LA Lao PDR 2579.2537
## 9738 LA Lao PDR 2483.1616
## 9739 LA Lao PDR 2373.5974
## 9740 LA Lao PDR 2255.3119
## 9741 LA Lao PDR 2140.0443
## 9742 LA Lao PDR 2025.4722
## 9743 LA Lao PDR 1910.5311
## 9744 LA Lao PDR 1795.1376
## 9745 LA Lao PDR 1687.1474
## 9746 LA Lao PDR 1586.2029
## 9747 LA Lao PDR 1485.4766
## 9748 LA Lao PDR 1405.1235
## 9749 LA Lao PDR 1325.4416
## 9750 LA Lao PDR 1252.6939
## 9751 LA Lao PDR 1172.2173
## 9752 LA Lao PDR 1111.7245
## 9753 LA Lao PDR 1061.3064
## 9754 LA Lao PDR 1015.7901
## 9755 LA Lao PDR 973.8598
## 9756 LA Lao PDR 935.7513
## 9757 LA Lao PDR 899.3912
## 9758 LA Lao PDR 852.9355
## 9759 LA Lao PDR 835.7031
## 9760 LA Lao PDR 797.6200
## 9761 LA Lao PDR 762.0556
## 9762 LA Lao PDR 728.6273
## 9763 LA Lao PDR 690.5618
## 9764 LA Lao PDR 669.3389
## 9765 LA Lao PDR 651.6210
## 9766 LA Lao PDR 642.4946
## 9767 LA Lao PDR 619.5281
## 9768 LA Lao PDR 558.4642
## 9769 LA Lao PDR 586.7442
## 9770 LA Lao PDR 612.6957
## 9771 LA Lao PDR 600.9989
## 9772 LA Lao PDR 588.1993
## 9773 LA Lao PDR NA
## 9774 LA Lao PDR NA
## 9775 LA Lao PDR NA
## 9776 LA Lao PDR NA
## 9777 LA Lao PDR NA
## 9778 LA Lao PDR NA
## 9779 LA Lao PDR NA
## 9780 LA Lao PDR NA
## 9781 LA Lao PDR NA
## 9782 LA Lao PDR NA
## 9783 LA Lao PDR NA
## 9784 LA Lao PDR NA
## 9785 LA Lao PDR NA
## 9786 LA Lao PDR NA
## 9787 LA Lao PDR NA
## 9788 LA Lao PDR NA
## 9789 LA Lao PDR NA
## 9790 LA Lao PDR NA
## 9791 LA Lao PDR NA
## 9792 LA Lao PDR NA
## 9793 LA Lao PDR NA
## 9794 LA Lao PDR NA
## 9795 LA Lao PDR NA
## 9796 LA Lao PDR NA
## 9797 LV Latvia 16406.2260
## 9798 LV Latvia 15559.5946
## 9799 LV Latvia 16056.0352
## 9800 LV Latvia 15558.2761
## 9801 LV Latvia 14845.2772
## 9802 LV Latvia 14242.4328
## 9803 LV Latvia 13786.4568
## 9804 LV Latvia 13162.6841
## 9805 LV Latvia 12796.1677
## 9806 LV Latvia 12410.3080
## 9807 LV Latvia 11451.4514
## 9808 LV Latvia 10963.6787
## 9809 LV Latvia 11240.4012
## 9810 LV Latvia 12893.4363
## 9811 LV Latvia 13186.2473
## 9812 LV Latvia 11896.2208
## 9813 LV Latvia 10527.9127
## 9814 LV Latvia 9406.8031
## 9815 LV Latvia 8593.0311
## 9816 LV Latvia 7849.2826
## 9817 LV Latvia 7245.1448
## 9818 LV Latvia 6726.5049
## 9819 LV Latvia 6304.1693
## 9820 LV Latvia 6085.3411
## 9821 LV Latvia 5669.0442
## 9822 LV Latvia 5157.0905
## 9823 LV Latvia 4970.6857
## 9824 LV Latvia NA
## 9825 LV Latvia NA
## 9826 LV Latvia NA
## 9827 LV Latvia NA
## 9828 LV Latvia NA
## 9829 LV Latvia NA
## 9830 LV Latvia NA
## 9831 LV Latvia NA
## 9832 LV Latvia NA
## 9833 LV Latvia NA
## 9834 LV Latvia NA
## 9835 LV Latvia NA
## 9836 LV Latvia NA
## 9837 LV Latvia NA
## 9838 LV Latvia NA
## 9839 LV Latvia NA
## 9840 LV Latvia NA
## 9841 LV Latvia NA
## 9842 LV Latvia NA
## 9843 LV Latvia NA
## 9844 LV Latvia NA
## 9845 LV Latvia NA
## 9846 LV Latvia NA
## 9847 LV Latvia NA
## 9848 LV Latvia NA
## 9849 LV Latvia NA
## 9850 LV Latvia NA
## 9851 LV Latvia NA
## 9852 LV Latvia NA
## 9853 LV Latvia NA
## 9854 LV Latvia NA
## 9855 LV Latvia NA
## 9856 LV Latvia NA
## 9857 LV Latvia NA
## 9858 LV Latvia NA
## 9859 LB Lebanon 4576.6087
## 9860 LB Lebanon 5072.4558
## 9861 LB Lebanon 6815.9090
## 9862 LB Lebanon 7318.2875
## 9863 LB Lebanon 7502.6545
## 9864 LB Lebanon 7551.8904
## 9865 LB Lebanon 7643.0087
## 9866 LB Lebanon 7937.9015
## 9867 LB Lebanon 8201.3854
## 9868 LB Lebanon 8434.4966
## 9869 LB Lebanon 8754.1066
## 9870 LB Lebanon 9115.0595
## 9871 LB Lebanon 8687.4333
## 9872 LB Lebanon 7960.8919
## 9873 LB Lebanon 7294.9578
## 9874 LB Lebanon 6684.2414
## 9875 LB Lebanon 6667.6988
## 9876 LB Lebanon 6677.1639
## 9877 LB Lebanon 6517.2480
## 9878 LB Lebanon 6624.7462
## 9879 LB Lebanon 6712.3591
## 9880 LB Lebanon 6713.4948
## 9881 LB Lebanon 6792.5459
## 9882 LB Lebanon 6928.7268
## 9883 LB Lebanon 6747.8255
## 9884 LB Lebanon 6765.7101
## 9885 LB Lebanon 6221.3528
## 9886 LB Lebanon 6059.1439
## 9887 LB Lebanon 5876.3344
## 9888 LB Lebanon 5598.3751
## 9889 LB Lebanon 5062.1552
## 9890 LB Lebanon 3530.6504
## 9891 LB Lebanon 2868.6845
## 9892 LB Lebanon 5062.3093
## 9893 LB Lebanon NA
## 9894 LB Lebanon NA
## 9895 LB Lebanon NA
## 9896 LB Lebanon NA
## 9897 LB Lebanon NA
## 9898 LB Lebanon NA
## 9899 LB Lebanon NA
## 9900 LB Lebanon NA
## 9901 LB Lebanon NA
## 9902 LB Lebanon NA
## 9903 LB Lebanon NA
## 9904 LB Lebanon NA
## 9905 LB Lebanon NA
## 9906 LB Lebanon NA
## 9907 LB Lebanon NA
## 9908 LB Lebanon NA
## 9909 LB Lebanon NA
## 9910 LB Lebanon NA
## 9911 LB Lebanon NA
## 9912 LB Lebanon NA
## 9913 LB Lebanon NA
## 9914 LB Lebanon NA
## 9915 LB Lebanon NA
## 9916 LB Lebanon NA
## 9917 LB Lebanon NA
## 9918 LB Lebanon NA
## 9919 LB Lebanon NA
## 9920 LB Lebanon NA
## 9921 LS Lesotho 1035.8002
## 9922 LS Lesotho 1033.4321
## 9923 LS Lesotho 1126.8438
## 9924 LS Lesotho 1109.2559
## 9925 LS Lesotho 1132.0093
## 9926 LS Lesotho 1178.0185
## 9927 LS Lesotho 1146.0647
## 9928 LS Lesotho 1119.7717
## 9929 LS Lesotho 1109.0371
## 9930 LS Lesotho 1096.8285
## 9931 LS Lesotho 1037.2485
## 9932 LS Lesotho 995.5814
## 9933 LS Lesotho 948.3595
## 9934 LS Lesotho 961.8700
## 9935 LS Lesotho 911.6284
## 9936 LS Lesotho 873.6626
## 9937 LS Lesotho 835.6098
## 9938 LS Lesotho 803.6559
## 9939 LS Lesotho 785.4254
## 9940 LS Lesotho 746.9263
## 9941 LS Lesotho 739.4073
## 9942 LS Lesotho 715.0085
## 9943 LS Lesotho 692.7872
## 9944 LS Lesotho 697.1707
## 9945 LS Lesotho 696.8945
## 9946 LS Lesotho 683.7348
## 9947 LS Lesotho 659.6680
## 9948 LS Lesotho 651.4401
## 9949 LS Lesotho 627.8675
## 9950 LS Lesotho 620.1755
## 9951 LS Lesotho 593.0668
## 9952 LS Lesotho 567.0600
## 9953 LS Lesotho 546.6666
## 9954 LS Lesotho 527.9907
## 9955 LS Lesotho 496.7073
## 9956 LS Lesotho 504.0681
## 9957 LS Lesotho 492.7280
## 9958 LS Lesotho 491.9423
## 9959 LS Lesotho 478.0007
## 9960 LS Lesotho 481.0650
## 9961 LS Lesotho 473.0904
## 9962 LS Lesotho 482.9900
## 9963 LS Lesotho 510.9509
## 9964 LS Lesotho 511.2825
## 9965 LS Lesotho 445.0333
## 9966 LS Lesotho 376.0703
## 9967 LS Lesotho 348.1986
## 9968 LS Lesotho 413.3445
## 9969 LS Lesotho 381.8202
## 9970 LS Lesotho 309.2918
## 9971 LS Lesotho 317.1285
## 9972 LS Lesotho 308.6465
## 9973 LS Lesotho 308.9827
## 9974 LS Lesotho 311.1495
## 9975 LS Lesotho 319.2424
## 9976 LS Lesotho 294.0933
## 9977 LS Lesotho 301.5311
## 9978 LS Lesotho 301.2313
## 9979 LS Lesotho 283.8283
## 9980 LS Lesotho 261.5889
## 9981 LS Lesotho 231.1330
## 9982 LS Lesotho 231.1370
## 9983 LR Liberia 625.4920
## 9984 LR Liberia 616.0054
## 9985 LR Liberia 650.4134
## 9986 LR Liberia 683.2513
## 9987 LR Liberia 692.2030
## 9988 LR Liberia 692.6189
## 9989 LR Liberia 721.5811
## 9990 LR Liberia 740.3760
## 9991 LR Liberia 754.4585
## 9992 LR Liberia 713.0673
## 9993 LR Liberia 679.7146
## 9994 LR Liberia 648.5527
## 9995 LR Liberia 633.6107
## 9996 LR Liberia 626.1106
## 9997 LR Liberia 608.9904
## 9998 LR Liberia 578.1373
## 9999 LR Liberia 553.5676
## 10000 LR Liberia 539.6262
## 10001 LR Liberia 535.8640
## 10002 LR Liberia 780.3815
## 10003 LR Liberia 770.1062
## 10004 LR Liberia 775.9638
## 10005 LR Liberia NA
## 10006 LR Liberia NA
## 10007 LR Liberia NA
## 10008 LR Liberia NA
## 10009 LR Liberia NA
## 10010 LR Liberia NA
## 10011 LR Liberia NA
## 10012 LR Liberia NA
## 10013 LR Liberia NA
## 10014 LR Liberia NA
## 10015 LR Liberia NA
## 10016 LR Liberia NA
## 10017 LR Liberia NA
## 10018 LR Liberia NA
## 10019 LR Liberia NA
## 10020 LR Liberia NA
## 10021 LR Liberia NA
## 10022 LR Liberia NA
## 10023 LR Liberia NA
## 10024 LR Liberia NA
## 10025 LR Liberia NA
## 10026 LR Liberia NA
## 10027 LR Liberia NA
## 10028 LR Liberia NA
## 10029 LR Liberia NA
## 10030 LR Liberia NA
## 10031 LR Liberia NA
## 10032 LR Liberia NA
## 10033 LR Liberia NA
## 10034 LR Liberia NA
## 10035 LR Liberia NA
## 10036 LR Liberia NA
## 10037 LR Liberia NA
## 10038 LR Liberia NA
## 10039 LR Liberia NA
## 10040 LR Liberia NA
## 10041 LR Liberia NA
## 10042 LR Liberia NA
## 10043 LR Liberia NA
## 10044 LR Liberia NA
## 10045 LY Libya 8753.3870
## 10046 LY Libya 6747.6389
## 10047 LY Libya 8993.0861
## 10048 LY Libya 10276.8043
## 10049 LY Libya 9662.2822
## 10050 LY Libya 7392.2238
## 10051 LY Libya 7590.4430
## 10052 LY Libya 7722.6604
## 10053 LY Libya 10101.1986
## 10054 LY Libya 12386.0326
## 10055 LY Libya 6670.3463
## 10056 LY Libya 13539.4929
## 10057 LY Libya 13025.2420
## 10058 LY Libya 13793.9697
## 10059 LY Libya 14010.4978
## 10060 LY Libya 13385.7920
## 10061 LY Libya 12760.0621
## 10062 LY Libya 11582.7579
## 10063 LY Libya 11264.8450
## 10064 LY Libya 10128.6672
## 10065 LY Libya 10391.7791
## 10066 LY Libya 10746.7778
## 10067 LY Libya 10526.4538
## 10068 LY Libya NA
## 10069 LY Libya NA
## 10070 LY Libya NA
## 10071 LY Libya NA
## 10072 LY Libya NA
## 10073 LY Libya NA
## 10074 LY Libya NA
## 10075 LY Libya NA
## 10076 LY Libya NA
## 10077 LY Libya NA
## 10078 LY Libya NA
## 10079 LY Libya NA
## 10080 LY Libya NA
## 10081 LY Libya NA
## 10082 LY Libya NA
## 10083 LY Libya NA
## 10084 LY Libya NA
## 10085 LY Libya NA
## 10086 LY Libya NA
## 10087 LY Libya NA
## 10088 LY Libya NA
## 10089 LY Libya NA
## 10090 LY Libya NA
## 10091 LY Libya NA
## 10092 LY Libya NA
## 10093 LY Libya NA
## 10094 LY Libya NA
## 10095 LY Libya NA
## 10096 LY Libya NA
## 10097 LY Libya NA
## 10098 LY Libya NA
## 10099 LY Libya NA
## 10100 LY Libya NA
## 10101 LY Libya NA
## 10102 LY Libya NA
## 10103 LY Libya NA
## 10104 LY Libya NA
## 10105 LY Libya NA
## 10106 LY Libya NA
## 10107 LI Liechtenstein NA
## 10108 LI Liechtenstein NA
## 10109 LI Liechtenstein NA
## 10110 LI Liechtenstein NA
## 10111 LI Liechtenstein NA
## 10112 LI Liechtenstein NA
## 10113 LI Liechtenstein 167313.2663
## 10114 LI Liechtenstein NA
## 10115 LI Liechtenstein NA
## 10116 LI Liechtenstein NA
## 10117 LI Liechtenstein NA
## 10118 LI Liechtenstein NA
## 10119 LI Liechtenstein NA
## 10120 LI Liechtenstein NA
## 10121 LI Liechtenstein NA
## 10122 LI Liechtenstein NA
## 10123 LI Liechtenstein NA
## 10124 LI Liechtenstein NA
## 10125 LI Liechtenstein NA
## 10126 LI Liechtenstein NA
## 10127 LI Liechtenstein NA
## 10128 LI Liechtenstein NA
## 10129 LI Liechtenstein NA
## 10130 LI Liechtenstein NA
## 10131 LI Liechtenstein NA
## 10132 LI Liechtenstein NA
## 10133 LI Liechtenstein NA
## 10134 LI Liechtenstein NA
## 10135 LI Liechtenstein NA
## 10136 LI Liechtenstein NA
## 10137 LI Liechtenstein NA
## 10138 LI Liechtenstein NA
## 10139 LI Liechtenstein NA
## 10140 LI Liechtenstein NA
## 10141 LI Liechtenstein NA
## 10142 LI Liechtenstein NA
## 10143 LI Liechtenstein NA
## 10144 LI Liechtenstein NA
## 10145 LI Liechtenstein NA
## 10146 LI Liechtenstein NA
## 10147 LI Liechtenstein NA
## 10148 LI Liechtenstein NA
## 10149 LI Liechtenstein NA
## 10150 LI Liechtenstein NA
## 10151 LI Liechtenstein NA
## 10152 LI Liechtenstein NA
## 10153 LI Liechtenstein NA
## 10154 LI Liechtenstein NA
## 10155 LI Liechtenstein NA
## 10156 LI Liechtenstein NA
## 10157 LI Liechtenstein NA
## 10158 LI Liechtenstein NA
## 10159 LI Liechtenstein NA
## 10160 LI Liechtenstein NA
## 10161 LI Liechtenstein NA
## 10162 LI Liechtenstein NA
## 10163 LI Liechtenstein NA
## 10164 LI Liechtenstein NA
## 10165 LI Liechtenstein NA
## 10166 LI Liechtenstein NA
## 10167 LI Liechtenstein NA
## 10168 LI Liechtenstein NA
## 10169 LT Lithuania 18072.2884
## 10170 LT Lithuania 17213.8143
## 10171 LT Lithuania 17241.2553
## 10172 LT Lithuania 16443.5853
## 10173 LT Lithuania 15661.9963
## 10174 LT Lithuania 14810.2518
## 10175 LT Lithuania 14263.9646
## 10176 LT Lithuania 13850.0001
## 10177 LT Lithuania 13262.3345
## 10178 LT Lithuania 12678.6927
## 10179 LT Lithuania 12046.7214
## 10180 LT Lithuania 11106.9502
## 10181 LT Lithuania 10699.7895
## 10182 LT Lithuania 12425.3981
## 10183 LT Lithuania 11984.9233
## 10184 LT Lithuania 10659.4002
## 10185 LT Lithuania 9766.4876
## 10186 LT Lithuania 8919.0817
## 10187 LT Lithuania 8275.8034
## 10188 LT Lithuania 7424.3948
## 10189 LT Lithuania 6899.2368
## 10190 LT Lithuania 6423.4207
## 10191 LT Lithuania 6151.0830
## 10192 LT Lithuania 6178.1238
## 10193 LT Lithuania 5706.8953
## 10194 LT Lithuania 5230.2602
## 10195 LT Lithuania 4936.0202
## 10196 LT Lithuania NA
## 10197 LT Lithuania NA
## 10198 LT Lithuania NA
## 10199 LT Lithuania NA
## 10200 LT Lithuania NA
## 10201 LT Lithuania NA
## 10202 LT Lithuania NA
## 10203 LT Lithuania NA
## 10204 LT Lithuania NA
## 10205 LT Lithuania NA
## 10206 LT Lithuania NA
## 10207 LT Lithuania NA
## 10208 LT Lithuania NA
## 10209 LT Lithuania NA
## 10210 LT Lithuania NA
## 10211 LT Lithuania NA
## 10212 LT Lithuania NA
## 10213 LT Lithuania NA
## 10214 LT Lithuania NA
## 10215 LT Lithuania NA
## 10216 LT Lithuania NA
## 10217 LT Lithuania NA
## 10218 LT Lithuania NA
## 10219 LT Lithuania NA
## 10220 LT Lithuania NA
## 10221 LT Lithuania NA
## 10222 LT Lithuania NA
## 10223 LT Lithuania NA
## 10224 LT Lithuania NA
## 10225 LT Lithuania NA
## 10226 LT Lithuania NA
## 10227 LT Lithuania NA
## 10228 LT Lithuania NA
## 10229 LT Lithuania NA
## 10230 LT Lithuania NA
## 10231 LU Luxembourg 110584.3305
## 10232 LU Luxembourg 104879.2562
## 10233 LU Luxembourg 108570.0277
## 10234 LU Luxembourg 107201.8399
## 10235 LU Luxembourg 107142.1276
## 10236 LU Luxembourg 108351.4522
## 10237 LU Luxembourg 105462.0126
## 10238 LU Luxembourg 105583.9370
## 10239 LU Luxembourg 105338.9561
## 10240 LU Luxembourg 104487.7442
## 10241 LU Luxembourg 105290.2490
## 10242 LU Luxembourg 106544.0572
## 10243 LU Luxembourg 104574.3499
## 10244 LU Luxembourg 110094.7923
## 10245 LU Luxembourg 112417.8785
## 10246 LU Luxembourg 105614.1799
## 10247 LU Luxembourg 101222.0457
## 10248 LU Luxembourg 100292.5685
## 10249 LU Luxembourg 97597.9969
## 10250 LU Luxembourg 96269.5794
## 10251 LU Luxembourg 94243.7073
## 10252 LU Luxembourg 92527.7118
## 10253 LU Luxembourg 87695.3396
## 10254 LU Luxembourg 82170.2399
## 10255 LU Luxembourg 77993.0585
## 10256 LU Luxembourg 74916.5068
## 10257 LU Luxembourg 74896.0966
## 10258 LU Luxembourg 74883.1419
## 10259 LU Luxembourg 73116.1947
## 10260 LU Luxembourg 71116.9401
## 10261 LU Luxembourg 70779.9729
## 10262 LU Luxembourg 66027.0758
## 10263 LU Luxembourg 63481.5847
## 10264 LU Luxembourg 58381.7543
## 10265 LU Luxembourg 54218.2754
## 10266 LU Luxembourg 52496.6662
## 10267 LU Luxembourg 47945.8484
## 10268 LU Luxembourg 46733.9236
## 10269 LU Luxembourg 44056.2515
## 10270 LU Luxembourg 42788.9486
## 10271 LU Luxembourg 42345.0452
## 10272 LU Luxembourg 42705.3385
## 10273 LU Luxembourg 42500.2549
## 10274 LU Luxembourg 41623.6010
## 10275 LU Luxembourg 40065.6914
## 10276 LU Luxembourg 39515.0353
## 10277 LU Luxembourg 38729.5605
## 10278 LU Luxembourg 41908.9753
## 10279 LU Luxembourg 40742.7919
## 10280 LU Luxembourg 38033.7402
## 10281 LU Luxembourg 36114.9765
## 10282 LU Luxembourg 35513.8010
## 10283 LU Luxembourg 32125.4868
## 10284 LU Luxembourg 29355.7128
## 10285 LU Luxembourg 28248.7452
## 10286 LU Luxembourg 28280.5167
## 10287 LU Luxembourg 28173.2666
## 10288 LU Luxembourg 28706.5896
## 10289 LU Luxembourg 26912.9550
## 10290 LU Luxembourg 26289.9029
## 10291 LU Luxembourg 26257.1662
## 10292 LU Luxembourg 25520.1824
## 10293 MO Macao SAR, China 42093.3984
## 10294 MO Macao SAR, China 36172.2928
## 10295 MO Macao SAR, China 79747.4575
## 10296 MO Macao SAR, China 82943.6803
## 10297 MO Macao SAR, China 79040.3877
## 10298 MO Macao SAR, China 73009.7305
## 10299 MO Macao SAR, China 74818.9481
## 10300 MO Macao SAR, China 97247.5554
## 10301 MO Macao SAR, China 101489.3835
## 10302 MO Macao SAR, China 93801.7603
## 10303 MO Macao SAR, China 87924.0301
## 10304 MO Macao SAR, China 73991.0048
## 10305 MO Macao SAR, China 60461.8572
## 10306 MO Macao SAR, China 60995.3522
## 10307 MO Macao SAR, China 60249.1696
## 10308 MO Macao SAR, China 53770.4739
## 10309 MO Macao SAR, China 48495.2072
## 10310 MO Macao SAR, China 45943.2705
## 10311 MO Macao SAR, China 37183.5701
## 10312 MO Macao SAR, China 34148.2852
## 10313 MO Macao SAR, China 32133.8251
## 10314 MO Macao SAR, China 31973.2587
## 10315 MO Macao SAR, China 30913.7992
## 10316 MO Macao SAR, China 32338.1347
## 10317 MO Macao SAR, China 34585.1632
## 10318 MO Macao SAR, China 35385.2821
## 10319 MO Macao SAR, China 36258.5824
## 10320 MO Macao SAR, China 35818.0803
## 10321 MO Macao SAR, China 35063.3469
## 10322 MO Macao SAR, China 34060.1391
## 10323 MO Macao SAR, China 30800.3602
## 10324 MO Macao SAR, China 30560.6063
## 10325 MO Macao SAR, China 29240.6562
## 10326 MO Macao SAR, China 28884.0586
## 10327 MO Macao SAR, China 27886.0295
## 10328 MO Macao SAR, China 25437.0440
## 10329 MO Macao SAR, China 24859.3786
## 10330 MO Macao SAR, China 25729.2481
## 10331 MO Macao SAR, China 24721.9414
## 10332 MO Macao SAR, China 23343.6364
## 10333 MO Macao SAR, China NA
## 10334 MO Macao SAR, China NA
## 10335 MO Macao SAR, China NA
## 10336 MO Macao SAR, China NA
## 10337 MO Macao SAR, China NA
## 10338 MO Macao SAR, China NA
## 10339 MO Macao SAR, China NA
## 10340 MO Macao SAR, China NA
## 10341 MO Macao SAR, China NA
## 10342 MO Macao SAR, China NA
## 10343 MO Macao SAR, China NA
## 10344 MO Macao SAR, China NA
## 10345 MO Macao SAR, China NA
## 10346 MO Macao SAR, China NA
## 10347 MO Macao SAR, China NA
## 10348 MO Macao SAR, China NA
## 10349 MO Macao SAR, China NA
## 10350 MO Macao SAR, China NA
## 10351 MO Macao SAR, China NA
## 10352 MO Macao SAR, China NA
## 10353 MO Macao SAR, China NA
## 10354 MO Macao SAR, China NA
## 10355 MG Madagascar 449.6783
## 10356 MG Madagascar 442.1696
## 10357 MG Madagascar 488.9137
## 10358 MG Madagascar 480.9153
## 10359 MG Madagascar 478.6107
## 10360 MG Madagascar 473.0052
## 10361 MG Madagascar 467.2354
## 10362 MG Madagascar 465.4163
## 10363 MG Madagascar 462.7078
## 10364 MG Madagascar 464.7432
## 10365 MG Madagascar 463.6627
## 10366 MG Madagascar 469.2405
## 10367 MG Madagascar 479.5600
## 10368 MG Madagascar 513.7331
## 10369 MG Madagascar 495.3631
## 10370 MG Madagascar 482.3349
## 10371 MG Madagascar 471.1949
## 10372 MG Madagascar 463.2880
## 10373 MG Madagascar 453.4934
## 10374 MG Madagascar 425.7393
## 10375 MG Madagascar 501.1185
## 10376 MG Madagascar 487.6601
## 10377 MG Madagascar 481.6471
## 10378 MG Madagascar 474.7456
## 10379 MG Madagascar 471.5269
## 10380 MG Madagascar 469.2919
## 10381 MG Madagascar 473.9627
## 10382 MG Madagascar 480.7238
## 10383 MG Madagascar 495.7642
## 10384 MG Madagascar 500.3357
## 10385 MG Madagascar 509.3413
## 10386 MG Madagascar 559.7549
## 10387 MG Madagascar 558.6667
## 10388 MG Madagascar 552.2933
## 10389 MG Madagascar 549.3780
## 10390 MG Madagascar 558.5052
## 10391 MG Madagascar 563.4779
## 10392 MG Madagascar 573.1325
## 10393 MG Madagascar 579.6092
## 10394 MG Madagascar 591.2445
## 10395 MG Madagascar 620.3505
## 10396 MG Madagascar 707.8534
## 10397 MG Madagascar 721.6109
## 10398 MG Madagascar 675.9901
## 10399 MG Madagascar 714.6251
## 10400 MG Madagascar 718.3019
## 10401 MG Madagascar 762.3665
## 10402 MG Madagascar 774.4400
## 10403 MG Madagascar 780.7958
## 10404 MG Madagascar 824.4149
## 10405 MG Madagascar 858.3669
## 10406 MG Madagascar 848.7142
## 10407 MG Madagascar 828.1365
## 10408 MG Madagascar 819.8702
## 10409 MG Madagascar 787.7985
## 10410 MG Madagascar 766.0688
## 10411 MG Madagascar 770.0068
## 10412 MG Madagascar 793.3131
## 10413 MG Madagascar 782.3876
## 10414 MG Madagascar 809.4720
## 10415 MG Madagascar 811.0335
## 10416 MG Madagascar 814.1078
## 10417 MW Malawi 394.1760
## 10418 MW Malawi 394.0032
## 10419 MW Malawi 401.3927
## 10420 MW Malawi 390.8407
## 10421 MW Malawi 384.4208
## 10422 MW Malawi 379.6239
## 10423 MW Malawi 380.5970
## 10424 MW Malawi 380.5890
## 10425 MW Malawi 370.3008
## 10426 MW Malawi 362.1316
## 10427 MW Malawi 365.7361
## 10428 MW Malawi 358.9409
## 10429 MW Malawi 345.6350
## 10430 MW Malawi 328.3659
## 10431 MW Malawi 313.8881
## 10432 MW Malawi 294.5204
## 10433 MW Malawi 289.0469
## 10434 MW Malawi 287.2722
## 10435 MW Malawi 279.3512
## 10436 MW Malawi 270.7370
## 10437 MW Malawi 272.7703
## 10438 MW Malawi 294.3439
## 10439 MW Malawi 297.6371
## 10440 MW Malawi 297.1156
## 10441 MW Malawi 293.9840
## 10442 MW Malawi 290.0846
## 10443 MW Malawi 275.2047
## 10444 MW Malawi 238.1524
## 10445 MW Malawi 266.2880
## 10446 MW Malawi 243.3706
## 10447 MW Malawi 264.9712
## 10448 MW Malawi 248.7713
## 10449 MW Malawi 243.9039
## 10450 MW Malawi 252.8975
## 10451 MW Malawi 260.0293
## 10452 MW Malawi 271.7159
## 10453 MW Malawi 287.2160
## 10454 MW Malawi 286.6366
## 10455 MW Malawi 281.2066
## 10456 MW Malawi 278.2240
## 10457 MW Malawi 277.9308
## 10458 MW Malawi 301.0582
## 10459 MW Malawi 308.4728
## 10460 MW Malawi 304.4333
## 10461 MW Malawi 286.0801
## 10462 MW Malawi 281.1418
## 10463 MW Malawi 275.7584
## 10464 MW Malawi 267.3708
## 10465 MW Malawi 256.4096
## 10466 MW Malawi 257.4576
## 10467 MW Malawi 248.8529
## 10468 MW Malawi 219.8292
## 10469 MW Malawi 224.5859
## 10470 MW Malawi 217.7042
## 10471 MW Malawi 227.7880
## 10472 MW Malawi 217.8366
## 10473 MW Malawi 197.2818
## 10474 MW Malawi 178.0349
## 10475 MW Malawi 177.7600
## 10476 MW Malawi 184.7223
## 10477 MW Malawi 187.9655
## 10478 MW Malawi 178.8129
## 10479 MY Malaysia 10827.3269
## 10480 MY Malaysia 10631.5077
## 10481 MY Malaysia 11414.5784
## 10482 MY Malaysia 11075.5797
## 10483 MY Malaysia 10707.7483
## 10484 MY Malaysia 10258.0415
## 10485 MY Malaysia 9955.2427
## 10486 MY Malaysia 9601.1780
## 10487 MY Malaysia 9179.3668
## 10488 MY Malaysia 8888.7025
## 10489 MY Malaysia 8550.1546
## 10490 MY Malaysia 8247.7823
## 10491 MY Malaysia 7808.6580
## 10492 MY Malaysia 8073.9344
## 10493 MY Malaysia 7850.4265
## 10494 MY Malaysia 7531.3649
## 10495 MY Malaysia 7274.9711
## 10496 MY Malaysia 7043.7762
## 10497 MY Malaysia 6727.6710
## 10498 MY Malaysia 6488.3847
## 10499 MY Malaysia 6286.1349
## 10500 MY Malaysia 6392.5809
## 10501 MY Malaysia 6010.4654
## 10502 MY Malaysia 5802.8783
## 10503 MY Malaysia 6424.1731
## 10504 MY Malaysia 6141.1105
## 10505 MY Malaysia 5727.1151
## 10506 MY Malaysia 5347.7168
## 10507 MY Malaysia 5020.4308
## 10508 MY Malaysia 4684.3256
## 10509 MY Malaysia 4414.2137
## 10510 MY Malaysia 4139.1108
## 10511 MY Malaysia 3905.5472
## 10512 MY Malaysia 3687.6661
## 10513 MY Malaysia 3455.9282
## 10514 MY Malaysia 3383.2921
## 10515 MY Malaysia 3437.1278
## 10516 MY Malaysia 3565.6801
## 10517 MY Malaysia 3392.1075
## 10518 MY Malaysia 3269.3247
## 10519 MY Malaysia 3159.5354
## 10520 MY Malaysia 3026.3722
## 10521 MY Malaysia 2887.4991
## 10522 MY Malaysia 2708.4775
## 10523 MY Malaysia 2605.5233
## 10524 MY Malaysia 2480.4231
## 10525 MY Malaysia 2279.3587
## 10526 MY Malaysia 2316.6918
## 10527 MY Malaysia 2190.1494
## 10528 MY Malaysia 2007.1884
## 10529 MY Malaysia 1878.3499
## 10530 MY Malaysia 1747.8648
## 10531 MY Malaysia 1688.9602
## 10532 MY Malaysia 1649.5549
## 10533 MY Malaysia 1565.9455
## 10534 MY Malaysia 1547.2516
## 10535 MY Malaysia 1474.7731
## 10536 MY Malaysia 1409.8899
## 10537 MY Malaysia 1379.9366
## 10538 MY Malaysia 1327.2165
## 10539 MY Malaysia 1287.8082
## 10540 MY Malaysia 1235.2398
## 10541 MV Maldives 8673.8254
## 10542 MV Maldives 6660.8333
## 10543 MV Maldives 10197.0928
## 10544 MV Maldives 9822.5396
## 10545 MV Maldives 9437.9063
## 10546 MV Maldives 9190.0033
## 10547 MV Maldives 9033.4103
## 10548 MV Maldives 9181.7117
## 10549 MV Maldives 8954.5566
## 10550 MV Maldives 8732.6292
## 10551 MV Maldives 8892.9114
## 10552 MV Maldives 8521.8381
## 10553 MV Maldives 8222.0445
## 10554 MV Maldives 9119.2964
## 10555 MV Maldives 8534.9042
## 10556 MV Maldives 8109.5741
## 10557 MV Maldives 6589.1272
## 10558 MV Maldives 7788.1669
## 10559 MV Maldives 7553.2915
## 10560 MV Maldives 6832.0224
## 10561 MV Maldives 6544.2979
## 10562 MV Maldives 6981.5480
## 10563 MV Maldives 6867.3735
## 10564 MV Maldives 6590.2617
## 10565 MV Maldives 6237.8789
## 10566 MV Maldives 5858.0332
## 10567 MV Maldives 5538.7930
## 10568 MV Maldives NA
## 10569 MV Maldives NA
## 10570 MV Maldives NA
## 10571 MV Maldives NA
## 10572 MV Maldives NA
## 10573 MV Maldives NA
## 10574 MV Maldives NA
## 10575 MV Maldives NA
## 10576 MV Maldives NA
## 10577 MV Maldives NA
## 10578 MV Maldives NA
## 10579 MV Maldives NA
## 10580 MV Maldives NA
## 10581 MV Maldives NA
## 10582 MV Maldives NA
## 10583 MV Maldives NA
## 10584 MV Maldives NA
## 10585 MV Maldives NA
## 10586 MV Maldives NA
## 10587 MV Maldives NA
## 10588 MV Maldives NA
## 10589 MV Maldives NA
## 10590 MV Maldives NA
## 10591 MV Maldives NA
## 10592 MV Maldives NA
## 10593 MV Maldives NA
## 10594 MV Maldives NA
## 10595 MV Maldives NA
## 10596 MV Maldives NA
## 10597 MV Maldives NA
## 10598 MV Maldives NA
## 10599 MV Maldives NA
## 10600 MV Maldives NA
## 10601 MV Maldives NA
## 10602 MV Maldives NA
## 10603 ML Mali 782.3606
## 10604 ML Mali 781.7315
## 10605 ML Mali 815.3791
## 10606 ML Mali 802.0336
## 10607 ML Mali 789.0726
## 10608 ML Mali 772.1318
## 10609 ML Mali 751.4729
## 10610 ML Mali 728.8783
## 10611 ML Mali 700.6976
## 10612 ML Mali 705.1394
## 10613 ML Mali 732.3974
## 10614 ML Mali 731.5338
## 10615 ML Mali 716.9128
## 10616 ML Mali 706.7108
## 10617 ML Mali 697.3486
## 10618 ML Mali 696.6751
## 10619 ML Mali 687.9349
## 10620 ML Mali 666.9554
## 10621 ML Mali 677.8866
## 10622 ML Mali 640.7978
## 10623 ML Mali 640.5307
## 10624 ML Mali 571.6577
## 10625 ML Mali 588.3179
## 10626 ML Mali 571.7567
## 10627 ML Mali 545.5290
## 10628 ML Mali 533.9827
## 10629 ML Mali 511.8976
## 10630 ML Mali 520.8517
## 10631 ML Mali 515.5624
## 10632 ML Mali 513.0833
## 10633 ML Mali 543.3341
## 10634 ML Mali 496.9065
## 10635 ML Mali 519.0584
## 10636 ML Mali 505.8904
## 10637 ML Mali 477.4660
## 10638 ML Mali 484.7058
## 10639 ML Mali 479.2874
## 10640 ML Mali 405.5501
## 10641 ML Mali 414.7866
## 10642 ML Mali 415.9970
## 10643 ML Mali 458.6933
## 10644 ML Mali 461.0912
## 10645 ML Mali 491.2029
## 10646 ML Mali 453.1103
## 10647 ML Mali 467.9802
## 10648 ML Mali 447.7511
## 10649 ML Mali 401.0226
## 10650 ML Mali 365.6861
## 10651 ML Mali 378.0211
## 10652 ML Mali 390.3875
## 10653 ML Mali 375.1142
## 10654 ML Mali 371.5887
## 10655 ML Mali 355.3369
## 10656 ML Mali 359.4597
## 10657 ML Mali 351.1402
## 10658 ML Mali NA
## 10659 ML Mali NA
## 10660 ML Mali NA
## 10661 ML Mali NA
## 10662 ML Mali NA
## 10663 ML Mali NA
## 10664 ML Mali NA
## 10665 MT Malta 27737.9403
## 10666 MT Malta 25427.0818
## 10667 MT Malta 28363.6102
## 10668 MT Malta 27867.5391
## 10669 MT Malta 27215.6035
## 10670 MT Malta 25181.3653
## 10671 MT Malta 24921.6037
## 10672 MT Malta 23286.1231
## 10673 MT Malta 22070.9673
## 10674 MT Malta 21221.5116
## 10675 MT Malta 20566.3364
## 10676 MT Malta 20557.6464
## 10677 MT Malta 19573.7711
## 10678 MT Malta 19948.0828
## 10679 MT Malta 19338.3447
## 10680 MT Malta 18521.5561
## 10681 MT Malta 18133.9716
## 10682 MT Malta 17652.6398
## 10683 MT Malta 17746.7060
## 10684 MT Malta 17164.5221
## 10685 MT Malta 16860.4481
## 10686 MT Malta 17189.4893
## 10687 MT Malta 14455.7006
## 10688 MT Malta 13886.2307
## 10689 MT Malta 13295.3116
## 10690 MT Malta 12727.2427
## 10691 MT Malta 12344.7716
## 10692 MT Malta 11689.7137
## 10693 MT Malta 11168.4172
## 10694 MT Malta 10796.7461
## 10695 MT Malta 10419.9151
## 10696 MT Malta 10074.2644
## 10697 MT Malta 9571.1477
## 10698 MT Malta 8934.0339
## 10699 MT Malta 8308.5839
## 10700 MT Malta 8035.6868
## 10701 MT Malta 7865.4935
## 10702 MT Malta 7803.1579
## 10703 MT Malta 7731.9234
## 10704 MT Malta 7889.9927
## 10705 MT Malta 7881.0212
## 10706 MT Malta 7684.6886
## 10707 MT Malta 7254.2880
## 10708 MT Malta 6632.4014
## 10709 MT Malta 6028.9044
## 10710 MT Malta 5395.1335
## 10711 MT Malta 4634.0727
## 10712 MT Malta 3904.5058
## 10713 MT Malta 3545.9810
## 10714 MT Malta 3401.9984
## 10715 MT Malta 3211.6803
## 10716 MT Malta 3135.2716
## 10717 MT Malta NA
## 10718 MT Malta NA
## 10719 MT Malta NA
## 10720 MT Malta NA
## 10721 MT Malta NA
## 10722 MT Malta NA
## 10723 MT Malta NA
## 10724 MT Malta NA
## 10725 MT Malta NA
## 10726 MT Malta NA
## 10727 MH Marshall Islands 3396.7476
## 10728 MH Marshall Islands 3508.7982
## 10729 MH Marshall Islands 3612.6023
## 10730 MH Marshall Islands 3409.4929
## 10731 MH Marshall Islands 3312.1751
## 10732 MH Marshall Islands 3226.2408
## 10733 MH Marshall Islands 3199.8868
## 10734 MH Marshall Islands 3163.4367
## 10735 MH Marshall Islands 3207.8127
## 10736 MH Marshall Islands 3095.9197
## 10737 MH Marshall Islands 3179.1858
## 10738 MH Marshall Islands 3208.0233
## 10739 MH Marshall Islands 3013.1331
## 10740 MH Marshall Islands 2924.7677
## 10741 MH Marshall Islands 3124.0856
## 10742 MH Marshall Islands 3041.5727
## 10743 MH Marshall Islands 3080.3428
## 10744 MH Marshall Islands 3052.6617
## 10745 MH Marshall Islands 3081.1372
## 10746 MH Marshall Islands 3197.3457
## 10747 MH Marshall Islands 3139.4040
## 10748 MH Marshall Islands 2976.8412
## 10749 MH Marshall Islands 2956.6445
## 10750 MH Marshall Islands 2997.9129
## 10751 MH Marshall Islands 3016.8692
## 10752 MH Marshall Islands 3220.2561
## 10753 MH Marshall Islands 3595.0569
## 10754 MH Marshall Islands 3338.0750
## 10755 MH Marshall Islands 3177.1875
## 10756 MH Marshall Islands 3032.8378
## 10757 MH Marshall Islands 2879.7678
## 10758 MH Marshall Islands 2946.5162
## 10759 MH Marshall Islands 2959.7640
## 10760 MH Marshall Islands 3129.1626
## 10761 MH Marshall Islands 3035.5004
## 10762 MH Marshall Islands 2910.6113
## 10763 MH Marshall Islands 2451.7273
## 10764 MH Marshall Islands 2741.7706
## 10765 MH Marshall Islands 2767.0842
## 10766 MH Marshall Islands 2507.0553
## 10767 MH Marshall Islands 2500.0539
## 10768 MH Marshall Islands NA
## 10769 MH Marshall Islands NA
## 10770 MH Marshall Islands NA
## 10771 MH Marshall Islands NA
## 10772 MH Marshall Islands NA
## 10773 MH Marshall Islands NA
## 10774 MH Marshall Islands NA
## 10775 MH Marshall Islands NA
## 10776 MH Marshall Islands NA
## 10777 MH Marshall Islands NA
## 10778 MH Marshall Islands NA
## 10779 MH Marshall Islands NA
## 10780 MH Marshall Islands NA
## 10781 MH Marshall Islands NA
## 10782 MH Marshall Islands NA
## 10783 MH Marshall Islands NA
## 10784 MH Marshall Islands NA
## 10785 MH Marshall Islands NA
## 10786 MH Marshall Islands NA
## 10787 MH Marshall Islands NA
## 10788 MH Marshall Islands NA
## 10789 MR Mauritania 1543.9476
## 10790 MR Mauritania 1549.9588
## 10791 MR Mauritania 1620.9967
## 10792 MR Mauritania 1575.3138
## 10793 MR Mauritania 1549.5779
## 10794 MR Mauritania 1499.8378
## 10795 MR Mauritania 1524.0733
## 10796 MR Mauritania 1488.7780
## 10797 MR Mauritania 1470.1549
## 10798 MR Mauritania 1453.8135
## 10799 MR Mauritania 1433.3371
## 10800 MR Mauritania 1417.0509
## 10801 MR Mauritania 1421.8840
## 10802 MR Mauritania 1462.3689
## 10803 MR Mauritania 1510.1666
## 10804 MR Mauritania 1585.3579
## 10805 MR Mauritania 1378.5967
## 10806 MR Mauritania 1306.5214
## 10807 MR Mauritania 1283.3257
## 10808 MR Mauritania 1234.3263
## 10809 MR Mauritania 1251.6079
## 10810 MR Mauritania 1296.3231
## 10811 MR Mauritania 1385.3335
## 10812 MR Mauritania 1371.2423
## 10813 MR Mauritania 1368.5286
## 10814 MR Mauritania 1462.6781
## 10815 MR Mauritania 1417.6576
## 10816 MR Mauritania 1324.1523
## 10817 MR Mauritania 1401.3638
## 10818 MR Mauritania 1358.1471
## 10819 MR Mauritania 1368.1085
## 10820 MR Mauritania 1379.4665
## 10821 MR Mauritania 1441.5033
## 10822 MR Mauritania 1412.4596
## 10823 MR Mauritania 1426.0012
## 10824 MR Mauritania 1437.7087
## 10825 MR Mauritania 1397.9342
## 10826 MR Mauritania 1395.9459
## 10827 MR Mauritania 1484.4147
## 10828 MR Mauritania 1473.1866
## 10829 MR Mauritania 1553.3240
## 10830 MR Mauritania 1546.2049
## 10831 MR Mauritania 1540.2373
## 10832 MR Mauritania 1513.4767
## 10833 MR Mauritania 1566.3089
## 10834 MR Mauritania 1643.7945
## 10835 MR Mauritania 1559.6374
## 10836 MR Mauritania 1693.3467
## 10837 MR Mauritania 1555.1084
## 10838 MR Mauritania 1678.9812
## 10839 MR Mauritania 1742.5971
## 10840 MR Mauritania 1763.1119
## 10841 MR Mauritania 1622.5489
## 10842 MR Mauritania 1651.7771
## 10843 MR Mauritania 1545.0727
## 10844 MR Mauritania 1537.7413
## 10845 MR Mauritania 1581.1712
## 10846 MR Mauritania 1402.8809
## 10847 MR Mauritania 1131.8380
## 10848 MR Mauritania 1189.3895
## 10849 MR Mauritania 1216.0133
## 10850 MR Mauritania NA
## 10851 MU Mauritius 9421.7979
## 10852 MU Mauritius 9058.2084
## 10853 MU Mauritius 10643.7711
## 10854 MU Mauritius 10335.8486
## 10855 MU Mauritius 9966.7697
## 10856 MU Mauritius 9609.2510
## 10857 MU Mauritius 9260.4473
## 10858 MU Mauritius 8954.5575
## 10859 MU Mauritius 8646.9922
## 10860 MU Mauritius 8384.3238
## 10861 MU Mauritius 8123.5970
## 10862 MU Mauritius 7817.8411
## 10863 MU Mauritius 7507.8280
## 10864 MU Mauritius 7286.2459
## 10865 MU Mauritius 6938.8497
## 10866 MU Mauritius 6592.9507
## 10867 MU Mauritius 6316.4430
## 10868 MU Mauritius 6242.9818
## 10869 MU Mauritius 6021.5218
## 10870 MU Mauritius 5725.9663
## 10871 MU Mauritius 5674.2224
## 10872 MU Mauritius 5533.9769
## 10873 MU Mauritius 5164.9555
## 10874 MU Mauritius 5097.9305
## 10875 MU Mauritius 4856.9057
## 10876 MU Mauritius 4653.4379
## 10877 MU Mauritius 4452.4783
## 10878 MU Mauritius 4306.2894
## 10879 MU Mauritius 4193.5530
## 10880 MU Mauritius 4038.3344
## 10881 MU Mauritius 3841.6261
## 10882 MU Mauritius 3718.3924
## 10883 MU Mauritius 3493.8777
## 10884 MU Mauritius 3370.2538
## 10885 MU Mauritius 3177.7244
## 10886 MU Mauritius 2940.1740
## 10887 MU Mauritius 2699.7297
## 10888 MU Mauritius 2544.9010
## 10889 MU Mauritius 2456.2495
## 10890 MU Mauritius 2469.4654
## 10891 MU Mauritius 2369.5804
## 10892 MU Mauritius 2271.3496
## 10893 MU Mauritius 2568.3809
## 10894 MU Mauritius 2524.6913
## 10895 MU Mauritius 2463.5286
## 10896 MU Mauritius 2350.0711
## 10897 MU Mauritius NA
## 10898 MU Mauritius NA
## 10899 MU Mauritius NA
## 10900 MU Mauritius NA
## 10901 MU Mauritius NA
## 10902 MU Mauritius NA
## 10903 MU Mauritius NA
## 10904 MU Mauritius NA
## 10905 MU Mauritius NA
## 10906 MU Mauritius NA
## 10907 MU Mauritius NA
## 10908 MU Mauritius NA
## 10909 MU Mauritius NA
## 10910 MU Mauritius NA
## 10911 MU Mauritius NA
## 10912 MU Mauritius NA
## 10913 MX Mexico 9255.2138
## 10914 MX Mexico 8922.6125
## 10915 MX Mexico 9819.5329
## 10916 MX Mexico 9945.7768
## 10917 MX Mexico 9842.4007
## 10918 MX Mexico 9751.5691
## 10919 MX Mexico 9616.6456
## 10920 MX Mexico 9426.3246
## 10921 MX Mexico 9282.9919
## 10922 MX Mexico 9280.2586
## 10923 MX Mexico 9076.3015
## 10924 MX Mexico 8878.5614
## 10925 MX Mexico 8568.6181
## 10926 MX Mexico 9181.4000
## 10927 MX Mexico 9214.3535
## 10928 MX Mexico 9142.8048
## 10929 MX Mexico 8877.8513
## 10930 MX Mexico 8801.3219
## 10931 MX Mexico 8587.0886
## 10932 MX Mexico 8580.8873
## 10933 MX Mexico 8702.9849
## 10934 MX Mexico 8861.8696
## 10935 MX Mexico 8567.0784
## 10936 MX Mexico 8461.4927
## 10937 MX Mexico 8168.9162
## 10938 MX Mexico 7765.6050
## 10939 MX Mexico 7390.7147
## 10940 MX Mexico 8018.7210
## 10941 MX Mexico 7773.1618
## 10942 MX Mexico 7760.9056
## 10943 MX Mexico 7632.4428
## 10944 MX Mexico 7460.6966
## 10945 MX Mexico 7229.1202
## 10946 MX Mexico 7079.8557
## 10947 MX Mexico 7130.3665
## 10948 MX Mexico 7154.2482
## 10949 MX Mexico 7538.4735
## 10950 MX Mexico 7538.8950
## 10951 MX Mexico 7455.0074
## 10952 MX Mexico 7903.7411
## 10953 MX Mexico 8134.1137
## 10954 MX Mexico 7677.2031
## 10955 MX Mexico 7202.3100
## 10956 MX Mexico 6731.4056
## 10957 MX Mexico 6337.7224
## 10958 MX Mexico 6292.8026
## 10959 MX Mexico 6191.8096
## 10960 MX Mexico 6021.2216
## 10961 MX Mexico 5858.3810
## 10962 MX Mexico 5593.7247
## 10963 MX Mexico 5325.5506
## 10964 MX Mexico 5290.2043
## 10965 MX Mexico 5121.1940
## 10966 MX Mexico 5106.6346
## 10967 MX Mexico 4813.5356
## 10968 MX Mexico 4690.7934
## 10969 MX Mexico 4561.1360
## 10970 MX Mexico 4393.4622
## 10971 MX Mexico 4049.9678
## 10972 MX Mexico 3864.3539
## 10973 MX Mexico 3808.6138
## 10974 MX Mexico 3741.9298
## 10975 FM Micronesia, Fed. Sts. 2719.6846
## 10976 FM Micronesia, Fed. Sts. 2839.3884
## 10977 FM Micronesia, Fed. Sts. 2921.1456
## 10978 FM Micronesia, Fed. Sts. 2917.2422
## 10979 FM Micronesia, Fed. Sts. 2941.8733
## 10980 FM Micronesia, Fed. Sts. 2897.4176
## 10981 FM Micronesia, Fed. Sts. 2906.6170
## 10982 FM Micronesia, Fed. Sts. 2815.4975
## 10983 FM Micronesia, Fed. Sts. 2923.3597
## 10984 FM Micronesia, Fed. Sts. 3076.1654
## 10985 FM Micronesia, Fed. Sts. 3166.7439
## 10986 FM Micronesia, Fed. Sts. 3084.7539
## 10987 FM Micronesia, Fed. Sts. 3014.9860
## 10988 FM Micronesia, Fed. Sts. 2965.7382
## 10989 FM Micronesia, Fed. Sts. 3012.9471
## 10990 FM Micronesia, Fed. Sts. 3042.1582
## 10991 FM Micronesia, Fed. Sts. 3022.7957
## 10992 FM Micronesia, Fed. Sts. 2948.7235
## 10993 FM Micronesia, Fed. Sts. 3034.5233
## 10994 FM Micronesia, Fed. Sts. 2984.0662
## 10995 FM Micronesia, Fed. Sts. 2963.8722
## 10996 FM Micronesia, Fed. Sts. 2894.6429
## 10997 FM Micronesia, Fed. Sts. 2751.8445
## 10998 FM Micronesia, Fed. Sts. 2703.5720
## 10999 FM Micronesia, Fed. Sts. 2622.1719
## 11000 FM Micronesia, Fed. Sts. 2795.5291
## 11001 FM Micronesia, Fed. Sts. 2908.2538
## 11002 FM Micronesia, Fed. Sts. 2756.2011
## 11003 FM Micronesia, Fed. Sts. 2827.7926
## 11004 FM Micronesia, Fed. Sts. 2679.7871
## 11005 FM Micronesia, Fed. Sts. 2644.5200
## 11006 FM Micronesia, Fed. Sts. 2524.9473
## 11007 FM Micronesia, Fed. Sts. 2491.9098
## 11008 FM Micronesia, Fed. Sts. 2461.4145
## 11009 FM Micronesia, Fed. Sts. 2453.5556
## 11010 FM Micronesia, Fed. Sts. 2481.8635
## 11011 FM Micronesia, Fed. Sts. NA
## 11012 FM Micronesia, Fed. Sts. NA
## 11013 FM Micronesia, Fed. Sts. NA
## 11014 FM Micronesia, Fed. Sts. NA
## 11015 FM Micronesia, Fed. Sts. NA
## 11016 FM Micronesia, Fed. Sts. NA
## 11017 FM Micronesia, Fed. Sts. NA
## 11018 FM Micronesia, Fed. Sts. NA
## 11019 FM Micronesia, Fed. Sts. NA
## 11020 FM Micronesia, Fed. Sts. NA
## 11021 FM Micronesia, Fed. Sts. NA
## 11022 FM Micronesia, Fed. Sts. NA
## 11023 FM Micronesia, Fed. Sts. NA
## 11024 FM Micronesia, Fed. Sts. NA
## 11025 FM Micronesia, Fed. Sts. NA
## 11026 FM Micronesia, Fed. Sts. NA
## 11027 FM Micronesia, Fed. Sts. NA
## 11028 FM Micronesia, Fed. Sts. NA
## 11029 FM Micronesia, Fed. Sts. NA
## 11030 FM Micronesia, Fed. Sts. NA
## 11031 FM Micronesia, Fed. Sts. NA
## 11032 FM Micronesia, Fed. Sts. NA
## 11033 FM Micronesia, Fed. Sts. NA
## 11034 FM Micronesia, Fed. Sts. NA
## 11035 FM Micronesia, Fed. Sts. NA
## 11036 FM Micronesia, Fed. Sts. NA
## 11037 MD Moldova 3753.8930
## 11038 MD Moldova 3235.9458
## 11039 MD Moldova 3435.4820
## 11040 MD Moldova 3260.5317
## 11041 MD Moldova 3072.8010
## 11042 MD Moldova 2885.8780
## 11043 MD Moldova 2732.4607
## 11044 MD Moldova 2720.2184
## 11045 MD Moldova 2589.1147
## 11046 MD Moldova 2373.7430
## 11047 MD Moldova 2387.5117
## 11048 MD Moldova 2254.9358
## 11049 MD Moldova 2103.3474
## 11050 MD Moldova 2234.7808
## 11051 MD Moldova 2069.1377
## 11052 MD Moldova 2004.2220
## 11053 MD Moldova 1907.1176
## 11054 MD Moldova 1769.7515
## 11055 MD Moldova 1643.7408
## 11056 MD Moldova 1537.6349
## 11057 MD Moldova 1423.0780
## 11058 MD Moldova 1338.2650
## 11059 MD Moldova 1307.9778
## 11060 MD Moldova 1351.4457
## 11061 MD Moldova 1445.4653
## 11062 MD Moldova 1416.7936
## 11063 MD Moldova 1502.2474
## 11064 MD Moldova NA
## 11065 MD Moldova NA
## 11066 MD Moldova NA
## 11067 MD Moldova NA
## 11068 MD Moldova NA
## 11069 MD Moldova NA
## 11070 MD Moldova NA
## 11071 MD Moldova NA
## 11072 MD Moldova NA
## 11073 MD Moldova NA
## 11074 MD Moldova NA
## 11075 MD Moldova NA
## 11076 MD Moldova NA
## 11077 MD Moldova NA
## 11078 MD Moldova NA
## 11079 MD Moldova NA
## 11080 MD Moldova NA
## 11081 MD Moldova NA
## 11082 MD Moldova NA
## 11083 MD Moldova NA
## 11084 MD Moldova NA
## 11085 MD Moldova NA
## 11086 MD Moldova NA
## 11087 MD Moldova NA
## 11088 MD Moldova NA
## 11089 MD Moldova NA
## 11090 MD Moldova NA
## 11091 MD Moldova NA
## 11092 MD Moldova NA
## 11093 MD Moldova NA
## 11094 MD Moldova NA
## 11095 MD Moldova NA
## 11096 MD Moldova NA
## 11097 MD Moldova NA
## 11098 MD Moldova NA
## 11099 MC Monaco NA
## 11100 MC Monaco 159221.6168
## 11101 MC Monaco 181709.3436
## 11102 MC Monaco 171223.9805
## 11103 MC Monaco 162819.3849
## 11104 MC Monaco 170153.5378
## 11105 MC Monaco 165989.5051
## 11106 MC Monaco 160000.3677
## 11107 MC Monaco 150972.2203
## 11108 MC Monaco 139442.7181
## 11109 MC Monaco 139708.4569
## 11110 MC Monaco 132094.0117
## 11111 MC Monaco 130794.9050
## 11112 MC Monaco 148993.1027
## 11113 MC Monaco 149446.5950
## 11114 MC Monaco 131881.8464
## 11115 MC Monaco 125925.4655
## 11116 MC Monaco 124848.4362
## 11117 MC Monaco 123143.4287
## 11118 MC Monaco 123081.2064
## 11119 MC Monaco 123068.6602
## 11120 MC Monaco 121655.1589
## 11121 MC Monaco 118224.5559
## 11122 MC Monaco 115470.0006
## 11123 MC Monaco 112582.1232
## 11124 MC Monaco 111066.9079
## 11125 MC Monaco 110811.9083
## 11126 MC Monaco 109566.2657
## 11127 MC Monaco 108226.0630
## 11128 MC Monaco 110270.4729
## 11129 MC Monaco 109628.2426
## 11130 MC Monaco 109249.2580
## 11131 MC Monaco 106885.9858
## 11132 MC Monaco 102883.8031
## 11133 MC Monaco 98616.9848
## 11134 MC Monaco 96577.2920
## 11135 MC Monaco 94965.1278
## 11136 MC Monaco 94434.0513
## 11137 MC Monaco 94443.9383
## 11138 MC Monaco 94875.5510
## 11139 MC Monaco 94228.7217
## 11140 MC Monaco 94798.4665
## 11141 MC Monaco 94502.4079
## 11142 MC Monaco 92329.5650
## 11143 MC Monaco 89778.1614
## 11144 MC Monaco 87675.8817
## 11145 MC Monaco 85037.5526
## 11146 MC Monaco 87166.2879
## 11147 MC Monaco 84743.6129
## 11148 MC Monaco 80840.9159
## 11149 MC Monaco 78318.2611
## 11150 MC Monaco 75168.6790
## 11151 MC Monaco NA
## 11152 MC Monaco NA
## 11153 MC Monaco NA
## 11154 MC Monaco NA
## 11155 MC Monaco NA
## 11156 MC Monaco NA
## 11157 MC Monaco NA
## 11158 MC Monaco NA
## 11159 MC Monaco NA
## 11160 MC Monaco NA
## 11161 MN Mongolia 4121.2388
## 11162 MN Mongolia 4126.6991
## 11163 MN Mongolia 4394.9881
## 11164 MN Mongolia 4233.9727
## 11165 MN Mongolia 4000.8378
## 11166 MN Mongolia 3858.5152
## 11167 MN Mongolia 3875.3217
## 11168 MN Mongolia 3860.3257
## 11169 MN Mongolia 3650.6015
## 11170 MN Mongolia 3335.7936
## 11171 MN Mongolia 3028.1617
## 11172 MN Mongolia 2629.6483
## 11173 MN Mongolia 2514.9166
## 11174 MN Mongolia 2587.7779
## 11175 MN Mongolia 2411.1665
## 11176 MN Mongolia 2216.9229
## 11177 MN Mongolia 2068.3985
## 11178 MN Mongolia 1951.7134
## 11179 MN Mongolia 1783.9988
## 11180 MN Mongolia 1684.6196
## 11181 MN Mongolia 1624.2234
## 11182 MN Mongolia 1592.2340
## 11183 MN Mongolia 1588.2300
## 11184 MN Mongolia 1554.3677
## 11185 MN Mongolia 1516.9604
## 11186 MN Mongolia 1472.1499
## 11187 MN Mongolia 1451.5915
## 11188 MN Mongolia 1375.0768
## 11189 MN Mongolia 1356.6197
## 11190 MN Mongolia 1413.3178
## 11191 MN Mongolia 1575.4469
## 11192 MN Mongolia 1752.1347
## 11193 MN Mongolia 1846.2267
## 11194 MN Mongolia 1815.6831
## 11195 MN Mongolia 1775.3249
## 11196 MN Mongolia 1765.4998
## 11197 MN Mongolia 1659.8814
## 11198 MN Mongolia 1612.8094
## 11199 MN Mongolia 1562.4526
## 11200 MN Mongolia 1514.0983
## 11201 MN Mongolia 1433.1913
## 11202 MN Mongolia NA
## 11203 MN Mongolia NA
## 11204 MN Mongolia NA
## 11205 MN Mongolia NA
## 11206 MN Mongolia NA
## 11207 MN Mongolia NA
## 11208 MN Mongolia NA
## 11209 MN Mongolia NA
## 11210 MN Mongolia NA
## 11211 MN Mongolia NA
## 11212 MN Mongolia NA
## 11213 MN Mongolia NA
## 11214 MN Mongolia NA
## 11215 MN Mongolia NA
## 11216 MN Mongolia NA
## 11217 MN Mongolia NA
## 11218 MN Mongolia NA
## 11219 MN Mongolia NA
## 11220 MN Mongolia NA
## 11221 MN Mongolia NA
## 11222 MN Mongolia NA
## 11223 ME Montenegro 7339.0820
## 11224 ME Montenegro 6515.5337
## 11225 ME Montenegro 7684.1804
## 11226 ME Montenegro 7381.8042
## 11227 ME Montenegro 7023.4305
## 11228 ME Montenegro 6707.8473
## 11229 ME Montenegro 6517.1896
## 11230 ME Montenegro 6307.0156
## 11231 ME Montenegro 6202.5038
## 11232 ME Montenegro 5995.7716
## 11233 ME Montenegro 6168.8455
## 11234 ME Montenegro 5982.1965
## 11235 ME Montenegro 5833.6568
## 11236 ME Montenegro 6205.8183
## 11237 ME Montenegro 5798.0622
## 11238 ME Montenegro 5435.8837
## 11239 ME Montenegro 5013.1935
## 11240 ME Montenegro 4819.1456
## 11241 ME Montenegro 4623.0739
## 11242 ME Montenegro 4529.1212
## 11243 ME Montenegro 4462.3478
## 11244 ME Montenegro 4431.5984
## 11245 ME Montenegro 4290.8948
## 11246 ME Montenegro 4723.1412
## 11247 ME Montenegro 4488.7925
## 11248 ME Montenegro NA
## 11249 ME Montenegro NA
## 11250 ME Montenegro NA
## 11251 ME Montenegro NA
## 11252 ME Montenegro NA
## 11253 ME Montenegro NA
## 11254 ME Montenegro NA
## 11255 ME Montenegro NA
## 11256 ME Montenegro NA
## 11257 ME Montenegro NA
## 11258 ME Montenegro NA
## 11259 ME Montenegro NA
## 11260 ME Montenegro NA
## 11261 ME Montenegro NA
## 11262 ME Montenegro NA
## 11263 ME Montenegro NA
## 11264 ME Montenegro NA
## 11265 ME Montenegro NA
## 11266 ME Montenegro NA
## 11267 ME Montenegro NA
## 11268 ME Montenegro NA
## 11269 ME Montenegro NA
## 11270 ME Montenegro NA
## 11271 ME Montenegro NA
## 11272 ME Montenegro NA
## 11273 ME Montenegro NA
## 11274 ME Montenegro NA
## 11275 ME Montenegro NA
## 11276 ME Montenegro NA
## 11277 ME Montenegro NA
## 11278 ME Montenegro NA
## 11279 ME Montenegro NA
## 11280 ME Montenegro NA
## 11281 ME Montenegro NA
## 11282 ME Montenegro NA
## 11283 ME Montenegro NA
## 11284 ME Montenegro NA
## 11285 MA Morocco 2990.8079
## 11286 MA Morocco 2818.7717
## 11287 MA Morocco 3044.9062
## 11288 MA Morocco 3004.6323
## 11289 MA Morocco 2950.2122
## 11290 MA Morocco 2867.0159
## 11291 MA Morocco 2875.2581
## 11292 MA Morocco 2788.7209
## 11293 MA Morocco 2754.8491
## 11294 MA Morocco 2673.0457
## 11295 MA Morocco 2631.4541
## 11296 MA Morocco 2534.2590
## 11297 MA Morocco 2472.7932
## 11298 MA Morocco 2401.6018
## 11299 MA Morocco 2294.5142
## 11300 MA Morocco 2242.3970
## 11301 MA Morocco 2109.0623
## 11302 MA Morocco 2065.9993
## 11303 MA Morocco 1994.8154
## 11304 MA Morocco 1905.0720
## 11305 MA Morocco 1869.6669
## 11306 MA Morocco 1763.4008
## 11307 MA Morocco 1751.7129
## 11308 MA Morocco 1754.8540
## 11309 MA Morocco 1657.7773
## 11310 MA Morocco 1707.1971
## 11311 MA Morocco 1541.3970
## 11312 MA Morocco 1654.8721
## 11313 MA Morocco 1521.2167
## 11314 MA Morocco 1559.2325
## 11315 MA Morocco 1621.2856
## 11316 MA Morocco 1539.9675
## 11317 MA Morocco 1516.9860
## 11318 MA Morocco 1503.1130
## 11319 MA Morocco 1369.9081
## 11320 MA Morocco 1402.4783
## 11321 MA Morocco 1311.0658
## 11322 MA Morocco 1264.7358
## 11323 MA Morocco 1216.5342
## 11324 MA Morocco 1229.1628
## 11325 MA Morocco 1156.0591
## 11326 MA Morocco 1205.7748
## 11327 MA Morocco 1192.2429
## 11328 MA Morocco 1165.8539
## 11329 MA Morocco 1168.2811
## 11330 MA Morocco 1127.8535
## 11331 MA Morocco 1041.3403
## 11332 MA Morocco 989.6376
## 11333 MA Morocco 957.1430
## 11334 MA Morocco 943.4558
## 11335 MA Morocco 940.2456
## 11336 MA Morocco 909.5479
## 11337 MA Morocco 887.9555
## 11338 MA Morocco 838.3213
## 11339 MA Morocco 781.1280
## 11340 MA Morocco 727.6240
## 11341 MA Morocco NA
## 11342 MA Morocco NA
## 11343 MA Morocco NA
## 11344 MA Morocco NA
## 11345 MA Morocco NA
## 11346 MA Morocco NA
## 11347 MZ Mozambique 570.8040
## 11348 MZ Mozambique 574.5955
## 11349 MZ Mozambique 598.8137
## 11350 MZ Mozambique 602.5305
## 11351 MZ Mozambique 599.6919
## 11352 MZ Mozambique 595.0780
## 11353 MZ Mozambique 589.8594
## 11354 MZ Mozambique 568.5917
## 11355 MZ Mozambique 544.4479
## 11356 MZ Mozambique 523.2944
## 11357 MZ Mozambique 501.5006
## 11358 MZ Mozambique 479.8848
## 11359 MZ Mozambique 463.1198
## 11360 MZ Mozambique 447.6846
## 11361 MZ Mozambique 428.7696
## 11362 MZ Mozambique 409.2050
## 11363 MZ Mozambique 383.7110
## 11364 MZ Mozambique 370.3412
## 11365 MZ Mozambique 353.4608
## 11366 MZ Mozambique 340.7050
## 11367 MZ Mozambique 321.0180
## 11368 MZ Mozambique 294.6471
## 11369 MZ Mozambique 299.1090
## 11370 MZ Mozambique 274.6344
## 11371 MZ Mozambique 256.1736
## 11372 MZ Mozambique 236.4607
## 11373 MZ Mozambique 219.1929
## 11374 MZ Mozambique 222.0241
## 11375 MZ Mozambique 216.7771
## 11376 MZ Mozambique 204.0242
## 11377 MZ Mozambique 225.1295
## 11378 MZ Mozambique 220.1906
## 11379 MZ Mozambique 221.0977
## 11380 MZ Mozambique 208.3837
## 11381 MZ Mozambique 192.1642
## 11382 MZ Mozambique 167.2458
## 11383 MZ Mozambique 171.7755
## 11384 MZ Mozambique 171.8012
## 11385 MZ Mozambique 186.6447
## 11386 MZ Mozambique 225.9454
## 11387 MZ Mozambique 248.3286
## 11388 MZ Mozambique 242.2561
## 11389 MZ Mozambique NA
## 11390 MZ Mozambique NA
## 11391 MZ Mozambique NA
## 11392 MZ Mozambique NA
## 11393 MZ Mozambique NA
## 11394 MZ Mozambique NA
## 11395 MZ Mozambique NA
## 11396 MZ Mozambique NA
## 11397 MZ Mozambique NA
## 11398 MZ Mozambique NA
## 11399 MZ Mozambique NA
## 11400 MZ Mozambique NA
## 11401 MZ Mozambique NA
## 11402 MZ Mozambique NA
## 11403 MZ Mozambique NA
## 11404 MZ Mozambique NA
## 11405 MZ Mozambique NA
## 11406 MZ Mozambique NA
## 11407 MZ Mozambique NA
## 11408 MZ Mozambique NA
## 11409 MM Myanmar 1292.0928
## 11410 MM Myanmar 1586.9023
## 11411 MM Myanmar 1548.4566
## 11412 MM Myanmar 1459.6430
## 11413 MM Myanmar 1380.1528
## 11414 MM Myanmar 1313.4076
## 11415 MM Myanmar 1196.7433
## 11416 MM Myanmar 1167.6310
## 11417 MM Myanmar 1088.0595
## 11418 MM Myanmar 1017.0143
## 11419 MM Myanmar 962.9954
## 11420 MM Myanmar 902.5419
## 11421 MM Myanmar 825.6949
## 11422 MM Myanmar 752.6491
## 11423 MM Myanmar 681.8170
## 11424 MM Myanmar 609.9960
## 11425 MM Myanmar 542.2191
## 11426 MM Myanmar 481.2338
## 11427 MM Myanmar 426.9196
## 11428 MM Myanmar 381.3894
## 11429 MM Myanmar 344.8804
## 11430 MM Myanmar 309.9657
## 11431 MM Myanmar 278.9415
## 11432 MM Myanmar 260.3536
## 11433 MM Myanmar 249.3625
## 11434 MM Myanmar 238.2125
## 11435 MM Myanmar 226.0822
## 11436 MM Myanmar 213.4097
## 11437 MM Myanmar 202.1590
## 11438 MM Myanmar 189.7497
## 11439 MM Myanmar 183.8163
## 11440 MM Myanmar 184.3322
## 11441 MM Myanmar 181.1795
## 11442 MM Myanmar 192.3328
## 11443 MM Myanmar 211.7604
## 11444 MM Myanmar 221.2054
## 11445 MM Myanmar 223.4646
## 11446 MM Myanmar 219.3947
## 11447 MM Myanmar 213.9171
## 11448 MM Myanmar 208.0872
## 11449 MM Myanmar 200.6220
## 11450 MM Myanmar 191.4087
## 11451 MM Myanmar 183.5342
## 11452 MM Myanmar 177.2885
## 11453 MM Myanmar 170.6324
## 11454 MM Myanmar 164.6137
## 11455 MM Myanmar 160.1690
## 11456 MM Myanmar 156.4726
## 11457 MM Myanmar 156.7099
## 11458 MM Myanmar 159.2384
## 11459 MM Myanmar 157.8283
## 11460 MM Myanmar 154.5370
## 11461 MM Myanmar 151.9078
## 11462 MM Myanmar 144.7800
## 11463 MM Myanmar 144.2013
## 11464 MM Myanmar 155.9909
## 11465 MM Myanmar 155.6885
## 11466 MM Myanmar 155.8956
## 11467 MM Myanmar 154.5562
## 11468 MM Myanmar 145.1738
## 11469 MM Myanmar 145.0386
## 11470 MM Myanmar NA
## 11471 NA Namibia 4098.6566
## 11472 NA Namibia 4074.5112
## 11473 NA Namibia 4504.6174
## 11474 NA Namibia 4632.3909
## 11475 NA Namibia 4670.9493
## 11476 NA Namibia 4808.6508
## 11477 NA Namibia 4896.6153
## 11478 NA Namibia 4782.0319
## 11479 NA Namibia 4587.9789
## 11480 NA Namibia 4420.7269
## 11481 NA Namibia 4282.0368
## 11482 NA Namibia 4147.3154
## 11483 NA Namibia 3982.2264
## 11484 NA Namibia 4043.6459
## 11485 NA Namibia 4011.6394
## 11486 NA Namibia 3875.0221
## 11487 NA Namibia 3680.6592
## 11488 NA Namibia 3647.4039
## 11489 NA Namibia 3298.2797
## 11490 NA Namibia 3211.2836
## 11491 NA Namibia 3111.3366
## 11492 NA Namibia 3124.9504
## 11493 NA Namibia 3072.0959
## 11494 NA Namibia 3027.2709
## 11495 NA Namibia 2988.8051
## 11496 NA Namibia 2927.5226
## 11497 NA Namibia 2898.8742
## 11498 NA Namibia 2853.2577
## 11499 NA Namibia 2870.9809
## 11500 NA Namibia 2990.4126
## 11501 NA Namibia 2866.4695
## 11502 NA Namibia 2730.5257
## 11503 NA Namibia 2766.2599
## 11504 NA Namibia 2816.2943
## 11505 NA Namibia 2901.5813
## 11506 NA Namibia 2907.9292
## 11507 NA Namibia 2872.3812
## 11508 NA Namibia 2947.3397
## 11509 NA Namibia 3034.3773
## 11510 NA Namibia 3164.9089
## 11511 NA Namibia 3248.5946
## 11512 NA Namibia 3287.9542
## 11513 NA Namibia NA
## 11514 NA Namibia NA
## 11515 NA Namibia NA
## 11516 NA Namibia NA
## 11517 NA Namibia NA
## 11518 NA Namibia NA
## 11519 NA Namibia NA
## 11520 NA Namibia NA
## 11521 NA Namibia NA
## 11522 NA Namibia NA
## 11523 NA Namibia NA
## 11524 NA Namibia NA
## 11525 NA Namibia NA
## 11526 NA Namibia NA
## 11527 NA Namibia NA
## 11528 NA Namibia NA
## 11529 NA Namibia NA
## 11530 NA Namibia NA
## 11531 NA Namibia NA
## 11532 NA Namibia NA
## 11533 NR Nauru 8462.2343
## 11534 NR Nauru 8367.1886
## 11535 NR Nauru 8325.9017
## 11536 NR Nauru 8392.9581
## 11537 NR Nauru 7986.1427
## 11538 NR Nauru 8556.4260
## 11539 NR Nauru 8341.0123
## 11540 NR Nauru 8109.5652
## 11541 NR Nauru 6458.4014
## 11542 NR Nauru 4979.8378
## 11543 NR Nauru 4501.4461
## 11544 NR Nauru 4116.7550
## 11545 NR Nauru 3728.9231
## 11546 NR Nauru 3440.6676
## 11547 NR Nauru 2824.8127
## 11548 NR Nauru 3668.8741
## 11549 NR Nauru 3347.2462
## 11550 NR Nauru 3431.6369
## 11551 NR Nauru NA
## 11552 NR Nauru NA
## 11553 NR Nauru NA
## 11554 NR Nauru NA
## 11555 NR Nauru NA
## 11556 NR Nauru NA
## 11557 NR Nauru NA
## 11558 NR Nauru NA
## 11559 NR Nauru NA
## 11560 NR Nauru NA
## 11561 NR Nauru NA
## 11562 NR Nauru NA
## 11563 NR Nauru NA
## 11564 NR Nauru NA
## 11565 NR Nauru NA
## 11566 NR Nauru NA
## 11567 NR Nauru NA
## 11568 NR Nauru NA
## 11569 NR Nauru NA
## 11570 NR Nauru NA
## 11571 NR Nauru NA
## 11572 NR Nauru NA
## 11573 NR Nauru NA
## 11574 NR Nauru NA
## 11575 NR Nauru NA
## 11576 NR Nauru NA
## 11577 NR Nauru NA
## 11578 NR Nauru NA
## 11579 NR Nauru NA
## 11580 NR Nauru NA
## 11581 NR Nauru NA
## 11582 NR Nauru NA
## 11583 NR Nauru NA
## 11584 NR Nauru NA
## 11585 NR Nauru NA
## 11586 NR Nauru NA
## 11587 NR Nauru NA
## 11588 NR Nauru NA
## 11589 NR Nauru NA
## 11590 NR Nauru NA
## 11591 NR Nauru NA
## 11592 NR Nauru NA
## 11593 NR Nauru NA
## 11594 NR Nauru NA
## 11595 NP Nepal 1049.6760
## 11596 NP Nepal 1025.5091
## 11597 NP Nepal 1069.7891
## 11598 NP Nepal 1021.3319
## 11599 NP Nepal 964.8978
## 11600 NP Nepal 897.4038
## 11601 NP Nepal 901.7496
## 11602 NP Nepal 870.7817
## 11603 NP Nepal 821.0732
## 11604 NP Nepal 790.9881
## 11605 NP Nepal 754.2413
## 11606 NP Nepal 730.0427
## 11607 NP Nepal 699.8562
## 11608 NP Nepal 674.9538
## 11609 NP Nepal 642.9684
## 11610 NP Nepal 629.2918
## 11611 NP Nepal 616.4268
## 11612 NP Nepal 603.3215
## 11613 NP Nepal 584.1115
## 11614 NP Nepal 570.0166
## 11615 NP Nepal 578.1837
## 11616 NP Nepal 561.0588
## 11617 NP Nepal 537.9920
## 11618 NP Nepal 525.3586
## 11619 NP Nepal 520.6587
## 11620 NP Nepal 506.7291
## 11621 NP Nepal 492.5622
## 11622 NP Nepal 488.1589
## 11623 NP Nepal 463.2257
## 11624 NP Nepal 458.3947
## 11625 NP Nepal 452.4033
## 11626 NP Nepal 436.5675
## 11627 NP Nepal 427.6444
## 11628 NP Nepal 419.5476
## 11629 NP Nepal 398.3404
## 11630 NP Nepal 400.4239
## 11631 NP Nepal 391.6029
## 11632 NP Nepal 377.4591
## 11633 NP Nepal 352.1976
## 11634 NP Nepal 371.5721
## 11635 NP Nepal 366.4794
## 11636 NP Nepal 346.1643
## 11637 NP Nepal 362.5807
## 11638 NP Nepal 362.3191
## 11639 NP Nepal 354.9240
## 11640 NP Nepal 352.2911
## 11641 NP Nepal 344.9690
## 11642 NP Nepal 347.5028
## 11643 NP Nepal 333.9002
## 11644 NP Nepal 342.6728
## 11645 NP Nepal 339.3001
## 11646 NP Nepal 350.4969
## 11647 NP Nepal 348.6234
## 11648 NP Nepal 340.3637
## 11649 NP Nepal 344.6425
## 11650 NP Nepal 356.7400
## 11651 NP Nepal 339.3382
## 11652 NP Nepal 349.4890
## 11653 NP Nepal 330.5043
## 11654 NP Nepal 329.6883
## 11655 NP Nepal 328.7351
## 11656 NP Nepal 327.7573
## 11657 NL Netherlands 48424.0910
## 11658 NL Netherlands 46345.3472
## 11659 NL Netherlands 48443.7321
## 11660 NL Netherlands 47826.8191
## 11661 NL Netherlands 46997.3455
## 11662 NL Netherlands 45938.7850
## 11663 NL Netherlands 45193.4032
## 11664 NL Netherlands 44521.8945
## 11665 NL Netherlands 44055.3043
## 11666 NL Netherlands 44242.9735
## 11667 NL Netherlands 44869.3129
## 11668 NL Netherlands 44390.5044
## 11669 NL Netherlands 44027.6026
## 11670 NL Netherlands 45939.1482
## 11671 NL Netherlands 45138.6784
## 11672 NL Netherlands 43592.3027
## 11673 NL Netherlands 42201.7754
## 11674 NL Netherlands 41450.4043
## 11675 NL Netherlands 40785.1222
## 11676 NL Netherlands 40914.3255
## 11677 NL Netherlands 41087.0422
## 11678 NL Netherlands 40456.9422
## 11679 NL Netherlands 39106.3882
## 11680 NL Netherlands 37480.7094
## 11681 NL Netherlands 36032.0402
## 11682 NL Netherlands 34715.1616
## 11683 NL Netherlands 33696.7438
## 11684 NL Netherlands 32840.2781
## 11685 NL Netherlands 32088.7066
## 11686 NL Netherlands 31911.8354
## 11687 NL Netherlands 31614.6529
## 11688 NL Netherlands 31106.0520
## 11689 NL Netherlands 30063.3708
## 11690 NL Netherlands 28964.0213
## 11691 NL Netherlands 28181.9596
## 11692 NL Netherlands 27823.9997
## 11693 NL Netherlands 27220.2194
## 11694 NL Netherlands 26659.5857
## 11695 NL Netherlands 25970.4839
## 11696 NL Netherlands 25540.4796
## 11697 NL Netherlands 25980.2182
## 11698 NL Netherlands 26365.6720
## 11699 NL Netherlands 26223.2462
## 11700 NL Netherlands 25883.5491
## 11701 NL Netherlands 25359.5366
## 11702 NL Netherlands 24883.6038
## 11703 NL Netherlands 24009.7580
## 11704 NL Netherlands 24224.2438
## 11705 NL Netherlands 23603.1815
## 11706 NL Netherlands 22570.4807
## 11707 NL Netherlands 22021.6476
## 11708 NL Netherlands 21362.8477
## 11709 NL Netherlands 20377.9238
## 11710 NL Netherlands 19369.8882
## 11711 NL Netherlands 18392.0437
## 11712 NL Netherlands 17668.7260
## 11713 NL Netherlands 17423.2549
## 11714 NL Netherlands 16258.8024
## 11715 NL Netherlands 15218.4582
## 11716 NL Netherlands 14885.5239
## 11717 NL Netherlands 14131.9602
## 11718 NL Netherlands 14276.8701
## 11719 NC New Caledonia NA
## 11720 NC New Caledonia NA
## 11721 NC New Caledonia NA
## 11722 NC New Caledonia NA
## 11723 NC New Caledonia NA
## 11724 NC New Caledonia NA
## 11725 NC New Caledonia 32520.3046
## 11726 NC New Caledonia NA
## 11727 NC New Caledonia NA
## 11728 NC New Caledonia NA
## 11729 NC New Caledonia NA
## 11730 NC New Caledonia NA
## 11731 NC New Caledonia NA
## 11732 NC New Caledonia NA
## 11733 NC New Caledonia NA
## 11734 NC New Caledonia NA
## 11735 NC New Caledonia NA
## 11736 NC New Caledonia NA
## 11737 NC New Caledonia NA
## 11738 NC New Caledonia NA
## 11739 NC New Caledonia NA
## 11740 NC New Caledonia NA
## 11741 NC New Caledonia NA
## 11742 NC New Caledonia NA
## 11743 NC New Caledonia NA
## 11744 NC New Caledonia NA
## 11745 NC New Caledonia NA
## 11746 NC New Caledonia NA
## 11747 NC New Caledonia NA
## 11748 NC New Caledonia NA
## 11749 NC New Caledonia NA
## 11750 NC New Caledonia NA
## 11751 NC New Caledonia NA
## 11752 NC New Caledonia NA
## 11753 NC New Caledonia NA
## 11754 NC New Caledonia NA
## 11755 NC New Caledonia NA
## 11756 NC New Caledonia NA
## 11757 NC New Caledonia NA
## 11758 NC New Caledonia NA
## 11759 NC New Caledonia NA
## 11760 NC New Caledonia NA
## 11761 NC New Caledonia NA
## 11762 NC New Caledonia NA
## 11763 NC New Caledonia NA
## 11764 NC New Caledonia NA
## 11765 NC New Caledonia NA
## 11766 NC New Caledonia NA
## 11767 NC New Caledonia NA
## 11768 NC New Caledonia NA
## 11769 NC New Caledonia NA
## 11770 NC New Caledonia NA
## 11771 NC New Caledonia NA
## 11772 NC New Caledonia NA
## 11773 NC New Caledonia NA
## 11774 NC New Caledonia NA
## 11775 NC New Caledonia NA
## 11776 NC New Caledonia NA
## 11777 NC New Caledonia NA
## 11778 NC New Caledonia NA
## 11779 NC New Caledonia NA
## 11780 NC New Caledonia NA
## 11781 NZ New Zealand 40778.9619
## 11782 NZ New Zealand 39216.2249
## 11783 NZ New Zealand 40599.0315
## 11784 NZ New Zealand 40365.1957
## 11785 NZ New Zealand 39759.1507
## 11786 NZ New Zealand 39195.8077
## 11787 NZ New Zealand 38630.7266
## 11788 NZ New Zealand 38002.3873
## 11789 NZ New Zealand 37218.8257
## 11790 NZ New Zealand 36521.4909
## 11791 NZ New Zealand 35915.8397
## 11792 NZ New Zealand 35393.7555
## 11793 NZ New Zealand 35252.2316
## 11794 NZ New Zealand 35654.6200
## 11795 NZ New Zealand 36362.6887
## 11796 NZ New Zealand 35624.5541
## 11797 NZ New Zealand 35051.6108
## 11798 NZ New Zealand 34310.1622
## 11799 NZ New Zealand 33475.4039
## 11800 NZ New Zealand 32656.7428
## 11801 NZ New Zealand 31745.0469
## 11802 NZ New Zealand 30863.4571
## 11803 NZ New Zealand 30168.8850
## 11804 NZ New Zealand 28760.0853
## 11805 NZ New Zealand 28786.8450
## 11806 NZ New Zealand 28581.2522
## 11807 NZ New Zealand 28023.9907
## 11808 NZ New Zealand 27154.9979
## 11809 NZ New Zealand 26178.3906
## 11810 NZ New Zealand 24887.8617
## 11811 NZ New Zealand 24876.2291
## 11812 NZ New Zealand 26399.0289
## 11813 NZ New Zealand 26603.1836
## 11814 NZ New Zealand 26688.1690
## 11815 NZ New Zealand 26856.6438
## 11816 NZ New Zealand 26828.6982
## 11817 NZ New Zealand 26115.5544
## 11818 NZ New Zealand 25859.6630
## 11819 NZ New Zealand 24891.2510
## 11820 NZ New Zealand 24380.6439
## 11821 NZ New Zealand 24397.2493
## 11822 NZ New Zealand 23401.7326
## 11823 NZ New Zealand 23134.0630
## 11824 NZ New Zealand 22549.4471
## 11825 NZ New Zealand 22485.1235
## 11826 NZ New Zealand NA
## 11827 NZ New Zealand NA
## 11828 NZ New Zealand NA
## 11829 NZ New Zealand NA
## 11830 NZ New Zealand NA
## 11831 NZ New Zealand NA
## 11832 NZ New Zealand NA
## 11833 NZ New Zealand NA
## 11834 NZ New Zealand NA
## 11835 NZ New Zealand NA
## 11836 NZ New Zealand NA
## 11837 NZ New Zealand NA
## 11838 NZ New Zealand NA
## 11839 NZ New Zealand NA
## 11840 NZ New Zealand NA
## 11841 NZ New Zealand NA
## 11842 NZ New Zealand NA
## 11843 NI Nicaragua 2098.2929
## 11844 NI Nicaragua 1923.9159
## 11845 NI Nicaragua 1982.6286
## 11846 NI Nicaragua 2086.0095
## 11847 NI Nicaragua 2185.8887
## 11848 NI Nicaragua 2115.9461
## 11849 NI Nicaragua 2049.8517
## 11850 NI Nicaragua 1981.7483
## 11851 NI Nicaragua 1916.2787
## 11852 NI Nicaragua 1850.6892
## 11853 NI Nicaragua 1761.2165
## 11854 NI Nicaragua 1679.0272
## 11855 NI Nicaragua 1630.0920
## 11856 NI Nicaragua 1708.8240
## 11857 NI Nicaragua 1674.9187
## 11858 NI Nicaragua 1616.0568
## 11859 NI Nicaragua 1573.0306
## 11860 NI Nicaragua 1529.1728
## 11861 NI Nicaragua 1472.0168
## 11862 NI Nicaragua 1455.8482
## 11863 NI Nicaragua 1465.7232
## 11864 NI Nicaragua 1444.9319
## 11865 NI Nicaragua 1409.7682
## 11866 NI Nicaragua 1338.6617
## 11867 NI Nicaragua 1312.9402
## 11868 NI Nicaragua 1285.7754
## 11869 NI Nicaragua 1232.2996
## 11870 NI Nicaragua 1187.2931
## 11871 NI Nicaragua 1173.7937
## 11872 NI Nicaragua 1204.8794
## 11873 NI Nicaragua 1227.5075
## 11874 NI Nicaragua 1257.5752
## 11875 NI Nicaragua 1286.1179
## 11876 NI Nicaragua 1337.5091
## 11877 NI Nicaragua 1561.2544
## 11878 NI Nicaragua 1607.9522
## 11879 NI Nicaragua 1663.1028
## 11880 NI Nicaragua 1777.3623
## 11881 NI Nicaragua 1853.0827
## 11882 NI Nicaragua 1819.8558
## 11883 NI Nicaragua 1886.7032
## 11884 NI Nicaragua 1842.5511
## 11885 NI Nicaragua 1813.5934
## 11886 NI Nicaragua 2541.7325
## 11887 NI Nicaragua 2843.2599
## 11888 NI Nicaragua 2705.7279
## 11889 NI Nicaragua 2652.4816
## 11890 NI Nicaragua 2739.9582
## 11891 NI Nicaragua 2474.6392
## 11892 NI Nicaragua 2398.1174
## 11893 NI Nicaragua 2419.1598
## 11894 NI Nicaragua 2414.5788
## 11895 NI Nicaragua 2456.0509
## 11896 NI Nicaragua 2382.9595
## 11897 NI Nicaragua 2423.4220
## 11898 NI Nicaragua 2334.9483
## 11899 NI Nicaragua 2329.8274
## 11900 NI Nicaragua 2192.8331
## 11901 NI Nicaragua 2023.9339
## 11902 NI Nicaragua 1882.4630
## 11903 NI Nicaragua 1751.0716
## 11904 NI Nicaragua 1680.9719
## 11905 NE Niger 510.1443
## 11906 NE Niger 522.5556
## 11907 NE Niger 523.8842
## 11908 NE Niger 513.6268
## 11909 NE Niger 497.7199
## 11910 NE Niger 492.5640
## 11911 NE Niger 484.1531
## 11912 NE Niger 482.1362
## 11913 NE Niger 470.0865
## 11914 NE Niger 464.1477
## 11915 NE Niger 436.5497
## 11916 NE Niger 443.3513
## 11917 NE Niger 424.3268
## 11918 NE Niger 432.3194
## 11919 NE Niger 416.7468
## 11920 NE Niger 419.5158
## 11921 NE Niger 411.1275
## 11922 NE Niger 397.5924
## 11923 NE Niger 411.1206
## 11924 NE Niger 417.5046
## 11925 NE Niger 412.7854
## 11926 NE Niger 399.0728
## 11927 NE Niger 418.7985
## 11928 NE Niger 435.0113
## 11929 NE Niger 409.8467
## 11930 NE Niger 418.1243
## 11931 NE Niger 432.5067
## 11932 NE Niger 436.9583
## 11933 NE Niger 443.9151
## 11934 NE Niger 457.6529
## 11935 NE Niger 463.7262
## 11936 NE Niger 480.9853
## 11937 NE Niger 502.7940
## 11938 NE Niger 513.3221
## 11939 NE Niger 494.7038
## 11940 NE Niger 508.8512
## 11941 NE Niger 492.4952
## 11942 NE Niger 470.5904
## 11943 NE Niger 582.2706
## 11944 NE Niger 623.3462
## 11945 NE Niger 627.8786
## 11946 NE Niger 647.3451
## 11947 NE Niger 683.0534
## 11948 NE Niger 656.2252
## 11949 NE Niger 595.3198
## 11950 NE Niger 568.5872
## 11951 NE Niger 581.1110
## 11952 NE Niger 614.9037
## 11953 NE Niger 581.2854
## 11954 NE Niger 720.4275
## 11955 NE Niger 781.0071
## 11956 NE Niger 759.8984
## 11957 NE Niger 758.3342
## 11958 NE Niger 825.3077
## 11959 NE Niger 845.8275
## 11960 NE Niger 869.2481
## 11961 NE Niger 897.9668
## 11962 NE Niger 864.4354
## 11963 NE Niger 888.7352
## 11964 NE Niger 836.0998
## 11965 NE Niger 780.3312
## 11966 NE Niger 767.8825
## 11967 NG Nigeria 2421.6195
## 11968 NG Nigeria 2396.0365
## 11969 NG Nigeria 2502.6523
## 11970 NG Nigeria 2512.1924
## 11971 NG Nigeria 2529.3852
## 11972 NG Nigeria 2575.4554
## 11973 NG Nigeria 2687.4801
## 11974 NG Nigeria 2688.2672
## 11975 NG Nigeria 2597.0090
## 11976 NG Nigeria 2500.6412
## 11977 NG Nigeria 2464.3450
## 11978 NG Nigeria 2403.6453
## 11979 NG Nigeria 2285.7346
## 11980 NG Nigeria 2172.7938
## 11981 NG Nigeria 2089.7772
## 11982 NG Nigeria 2012.8448
## 11983 NG Nigeria 1948.0484
## 11984 NG Nigeria 1878.1507
## 11985 NG Nigeria 1763.6940
## 11986 NG Nigeria 1685.2009
## 11987 NG Nigeria 1498.5229
## 11988 NG Nigeria 1450.7838
## 11989 NG Nigeria 1416.5164
## 11990 NG Nigeria 1443.8885
## 11991 NG Nigeria 1443.0632
## 11992 NG Nigeria 1437.2162
## 11993 NG Nigeria 1414.1014
## 11994 NG Nigeria 1450.8076
## 11995 NG Nigeria 1514.9319
## 11996 NG Nigeria 1585.6035
## 11997 NG Nigeria 1554.1197
## 11998 NG Nigeria 1588.5023
## 11999 NG Nigeria 1458.2689
## 12000 NG Nigeria 1468.6797
## 12001 NG Nigeria 1404.8041
## 12002 NG Nigeria 1397.4556
## 12003 NG Nigeria 1433.4341
## 12004 NG Nigeria 1388.5347
## 12005 NG Nigeria 1440.1637
## 12006 NG Nigeria 1658.2796
## 12007 NG Nigeria 1826.2007
## 12008 NG Nigeria 2159.9154
## 12009 NG Nigeria 2132.6670
## 12010 NG Nigeria 2057.8864
## 12011 NG Nigeria 2250.9868
## 12012 NG Nigeria 2187.5995
## 12013 NG Nigeria 2064.6645
## 12014 NG Nigeria 2238.4993
## 12015 NG Nigeria 2066.0943
## 12016 NG Nigeria 2008.7891
## 12017 NG Nigeria 1989.8358
## 12018 NG Nigeria 1782.7511
## 12019 NG Nigeria 1459.0914
## 12020 NG Nigeria 1201.4024
## 12021 NG Nigeria 1243.6439
## 12022 NG Nigeria 1508.4231
## 12023 NG Nigeria 1609.6424
## 12024 NG Nigeria 1567.8640
## 12025 NG Nigeria 1526.0622
## 12026 NG Nigeria 1435.4686
## 12027 NG Nigeria 1407.8170
## 12028 NG Nigeria 1433.9199
## 12029 MK North Macedonia 5287.0684
## 12030 MK North Macedonia 5067.2136
## 12031 MK North Macedonia 5386.2003
## 12032 MK North Macedonia 5184.6945
## 12033 MK North Macedonia 5043.6922
## 12034 MK North Macedonia 4994.5590
## 12035 MK North Macedonia 4861.5540
## 12036 MK North Macedonia 4687.2964
## 12037 MK North Macedonia 4530.6821
## 12038 MK North Macedonia 4408.2964
## 12039 MK North Macedonia 4433.8875
## 12040 MK North Macedonia 4339.9644
## 12041 MK North Macedonia 4207.8049
## 12042 MK North Macedonia 4230.7331
## 12043 MK North Macedonia 4017.7921
## 12044 MK North Macedonia 3779.6750
## 12045 MK North Macedonia 3600.9523
## 12046 MK North Macedonia 3445.8069
## 12047 MK North Macedonia 3301.3121
## 12048 MK North Macedonia 3240.1092
## 12049 MK North Macedonia 3169.3237
## 12050 MK North Macedonia 3283.3779
## 12051 MK North Macedonia 3154.8478
## 12052 MK North Macedonia 3038.1385
## 12053 MK North Macedonia 2954.5225
## 12054 MK North Macedonia 2923.4566
## 12055 MK North Macedonia 2898.2223
## 12056 MK North Macedonia 2933.1803
## 12057 MK North Macedonia 2982.1957
## 12058 MK North Macedonia 3215.4130
## 12059 MK North Macedonia 3433.3247
## 12060 MK North Macedonia 3653.7790
## 12061 MK North Macedonia NA
## 12062 MK North Macedonia NA
## 12063 MK North Macedonia NA
## 12064 MK North Macedonia NA
## 12065 MK North Macedonia NA
## 12066 MK North Macedonia NA
## 12067 MK North Macedonia NA
## 12068 MK North Macedonia NA
## 12069 MK North Macedonia NA
## 12070 MK North Macedonia NA
## 12071 MK North Macedonia NA
## 12072 MK North Macedonia NA
## 12073 MK North Macedonia NA
## 12074 MK North Macedonia NA
## 12075 MK North Macedonia NA
## 12076 MK North Macedonia NA
## 12077 MK North Macedonia NA
## 12078 MK North Macedonia NA
## 12079 MK North Macedonia NA
## 12080 MK North Macedonia NA
## 12081 MK North Macedonia NA
## 12082 MK North Macedonia NA
## 12083 MK North Macedonia NA
## 12084 MK North Macedonia NA
## 12085 MK North Macedonia NA
## 12086 MK North Macedonia NA
## 12087 MK North Macedonia NA
## 12088 MK North Macedonia NA
## 12089 MK North Macedonia NA
## 12090 MK North Macedonia NA
## 12091 MP Northern Mariana Islands NA
## 12092 MP Northern Mariana Islands NA
## 12093 MP Northern Mariana Islands 18141.8824
## 12094 MP Northern Mariana Islands 20533.1275
## 12095 MP Northern Mariana Islands 25609.2301
## 12096 MP Northern Mariana Islands 20927.0882
## 12097 MP Northern Mariana Islands 16314.3835
## 12098 MP Northern Mariana Islands 15916.8583
## 12099 MP Northern Mariana Islands 15422.2103
## 12100 MP Northern Mariana Islands 15152.2964
## 12101 MP Northern Mariana Islands 15111.9624
## 12102 MP Northern Mariana Islands 16329.5328
## 12103 MP Northern Mariana Islands 16038.4522
## 12104 MP Northern Mariana Islands 19305.7060
## 12105 MP Northern Mariana Islands 21475.2798
## 12106 MP Northern Mariana Islands 22737.1955
## 12107 MP Northern Mariana Islands 24129.4584
## 12108 MP Northern Mariana Islands 27305.9738
## 12109 MP Northern Mariana Islands 27826.0397
## 12110 MP Northern Mariana Islands 27513.4416
## 12111 MP Northern Mariana Islands NA
## 12112 MP Northern Mariana Islands NA
## 12113 MP Northern Mariana Islands NA
## 12114 MP Northern Mariana Islands NA
## 12115 MP Northern Mariana Islands NA
## 12116 MP Northern Mariana Islands NA
## 12117 MP Northern Mariana Islands NA
## 12118 MP Northern Mariana Islands NA
## 12119 MP Northern Mariana Islands NA
## 12120 MP Northern Mariana Islands NA
## 12121 MP Northern Mariana Islands NA
## 12122 MP Northern Mariana Islands NA
## 12123 MP Northern Mariana Islands NA
## 12124 MP Northern Mariana Islands NA
## 12125 MP Northern Mariana Islands NA
## 12126 MP Northern Mariana Islands NA
## 12127 MP Northern Mariana Islands NA
## 12128 MP Northern Mariana Islands NA
## 12129 MP Northern Mariana Islands NA
## 12130 MP Northern Mariana Islands NA
## 12131 MP Northern Mariana Islands NA
## 12132 MP Northern Mariana Islands NA
## 12133 MP Northern Mariana Islands NA
## 12134 MP Northern Mariana Islands NA
## 12135 MP Northern Mariana Islands NA
## 12136 MP Northern Mariana Islands NA
## 12137 MP Northern Mariana Islands NA
## 12138 MP Northern Mariana Islands NA
## 12139 MP Northern Mariana Islands NA
## 12140 MP Northern Mariana Islands NA
## 12141 MP Northern Mariana Islands NA
## 12142 MP Northern Mariana Islands NA
## 12143 MP Northern Mariana Islands NA
## 12144 MP Northern Mariana Islands NA
## 12145 MP Northern Mariana Islands NA
## 12146 MP Northern Mariana Islands NA
## 12147 MP Northern Mariana Islands NA
## 12148 MP Northern Mariana Islands NA
## 12149 MP Northern Mariana Islands NA
## 12150 MP Northern Mariana Islands NA
## 12151 MP Northern Mariana Islands NA
## 12152 MP Northern Mariana Islands NA
## 12153 NO Norway 77544.0339
## 12154 NO Norway 75017.1567
## 12155 NO Norway 76005.2248
## 12156 NO Norway 75953.5820
## 12157 NO Norway 75610.6495
## 12158 NO Norway 74493.1179
## 12159 NO Norway 74355.5159
## 12160 NO Norway 73650.3135
## 12161 NO Norway 73046.9050
## 12162 NO Norway 73178.7849
## 12163 NO Norway 72194.7810
## 12164 NO Norway 72426.5652
## 12165 NO Norway 72823.3024
## 12166 NO Norway 75043.5295
## 12167 NO Norway 75624.4412
## 12168 NO Norway 74189.5668
## 12169 NO Norway 73036.7404
## 12170 NO Norway 71654.6365
## 12171 NO Norway 69327.4265
## 12172 NO Norway 69106.3090
## 12173 NO Norway 68489.4679
## 12174 NO Norway 67437.7434
## 12175 NO Norway 65768.9857
## 12176 NO Norway 64914.2553
## 12177 NO Norway 63631.9411
## 12178 NO Norway 60766.6340
## 12179 NO Norway 58151.5992
## 12180 NO Norway 56122.1143
## 12181 NO Norway 53726.4755
## 12182 NO Norway 52551.9514
## 12183 NO Norway 51032.0603
## 12184 NO Norway 49741.4258
## 12185 NO Norway 48966.6649
## 12186 NO Norway 48663.9479
## 12187 NO Norway 49051.6798
## 12188 NO Norway 48432.5868
## 12189 NO Norway 46717.2207
## 12190 NO Norway 44392.0834
## 12191 NO Norway 41976.9233
## 12192 NO Norway 40506.8624
## 12193 NO Norway 40560.4480
## 12194 NO Norway 40059.9802
## 12195 NO Norway 38434.4715
## 12196 NO Norway 36949.9668
## 12197 NO Norway 35709.5593
## 12198 NO Norway 34428.3332
## 12199 NO Norway 32686.0926
## 12200 NO Norway 31316.1597
## 12201 NO Norway 30321.5170
## 12202 NO Norway 29210.2826
## 12203 NO Norway 27944.9020
## 12204 NO Norway 26630.9505
## 12205 NO Norway 26313.7774
## 12206 NO Norway 25385.5198
## 12207 NO Norway 25034.0716
## 12208 NO Norway 23758.0470
## 12209 NO Norway 23074.7569
## 12210 NO Norway 22087.3702
## 12211 NO Norway 21193.1478
## 12212 NO Norway 20575.2206
## 12213 NO Norway 20173.5164
## 12214 NO Norway 19134.0599
## 12215 OM Oman NA
## 12216 OM Oman 15743.2243
## 12217 OM Oman 16694.1323
## 12218 OM Oman 17393.5490
## 12219 OM Oman 17774.4519
## 12220 OM Oman 18459.2248
## 12221 OM Oman 18444.9270
## 12222 OM Oman 18610.8116
## 12223 OM Oman 19654.2161
## 12224 OM Oman 20102.2405
## 12225 OM Oman 19868.1183
## 12226 OM Oman 20640.3078
## 12227 OM Oman 21458.3868
## 12228 OM Oman 21142.8863
## 12229 OM Oman 20230.2994
## 12230 OM Oman 19941.3383
## 12231 OM Oman 19448.4652
## 12232 OM Oman 19485.9515
## 12233 OM Oman 19715.9282
## 12234 OM Oman 20701.5881
## 12235 OM Oman 21295.9619
## 12236 OM Oman 20624.7883
## 12237 OM Oman 19468.9565
## 12238 OM Oman 19430.8186
## 12239 OM Oman 18948.2784
## 12240 OM Oman 17974.8050
## 12241 OM Oman 17699.7659
## 12242 OM Oman 17295.6624
## 12243 OM Oman 17263.5193
## 12244 OM Oman 17008.9372
## 12245 OM Oman 16430.4473
## 12246 OM Oman 16187.1067
## 12247 OM Oman 16869.2066
## 12248 OM Oman 15661.5643
## 12249 OM Oman 15311.5446
## 12250 OM Oman 16453.2890
## 12251 OM Oman 16806.0173
## 12252 OM Oman 15434.9208
## 12253 OM Oman 13904.8024
## 12254 OM Oman 12573.9816
## 12255 OM Oman 11912.1712
## 12256 OM Oman 10760.9280
## 12257 OM Oman 10729.4798
## 12258 OM Oman 10872.0991
## 12259 OM Oman 11923.9762
## 12260 OM Oman 12446.2203
## 12261 OM Oman 10856.7934
## 12262 OM Oman 9140.3791
## 12263 OM Oman 8552.9486
## 12264 OM Oman 10367.6537
## 12265 OM Oman 9785.7081
## 12266 OM Oman 10035.2504
## 12267 OM Oman 9101.6337
## 12268 OM Oman 7467.9316
## 12269 OM Oman 4226.9208
## 12270 OM Oman 2614.7151
## 12271 OM Oman 2552.9705
## 12272 OM Oman NA
## 12273 OM Oman NA
## 12274 OM Oman NA
## 12275 OM Oman NA
## 12276 OM Oman NA
## 12277 PK Pakistan 1507.1054
## 12278 PK Pakistan 1449.1172
## 12279 PK Pakistan 1497.9868
## 12280 PK Pakistan 1491.3507
## 12281 PK Pakistan 1434.1303
## 12282 PK Pakistan 1402.0879
## 12283 PK Pakistan 1356.6678
## 12284 PK Pakistan 1322.7206
## 12285 PK Pakistan 1290.3686
## 12286 PK Pakistan 1262.2992
## 12287 PK Pakistan 1245.7374
## 12288 PK Pakistan 1238.8735
## 12289 PK Pakistan 1246.3679
## 12290 PK Pakistan 1239.4205
## 12291 PK Pakistan 1246.5796
## 12292 PK Pakistan 1216.5555
## 12293 PK Pakistan 1175.4375
## 12294 PK Pakistan 1129.1369
## 12295 PK Pakistan 1074.3941
## 12296 PK Pakistan 1039.7839
## 12297 PK Pakistan 1039.1561
## 12298 PK Pakistan 1029.1126
## 12299 PK Pakistan 1013.5433
## 12300 PK Pakistan 1005.1752
## 12301 PK Pakistan 1008.4924
## 12302 PK Pakistan 1027.4353
## 12303 PK Pakistan 1008.2248
## 12304 PK Pakistan 987.8021
## 12305 PK Pakistan 978.8569
## 12306 PK Pakistan 988.7649
## 12307 PK Pakistan 943.9818
## 12308 PK Pakistan 924.6347
## 12309 PK Pakistan 911.7209
## 12310 PK Pakistan 895.3965
## 12311 PK Pakistan 858.2305
## 12312 PK Pakistan 832.2087
## 12313 PK Pakistan 814.6839
## 12314 PK Pakistan 782.4706
## 12315 PK Pakistan 770.0176
## 12316 PK Pakistan 745.8076
## 12317 PK Pakistan 723.9133
## 12318 PK Pakistan 693.3505
## 12319 PK Pakistan 649.8423
## 12320 PK Pakistan 646.5293
## 12321 PK Pakistan 617.2509
## 12322 PK Pakistan 612.1308
## 12323 PK Pakistan 599.6920
## 12324 PK Pakistan 592.3990
## 12325 PK Pakistan 588.5250
## 12326 PK Pakistan 565.0732
## 12327 PK Pakistan 575.9732
## 12328 PK Pakistan 588.9895
## 12329 PK Pakistan 543.3655
## 12330 PK Pakistan 528.9766
## 12331 PK Pakistan 506.5979
## 12332 PK Pakistan 493.4758
## 12333 PK Pakistan 478.7637
## 12334 PK Pakistan 444.8603
## 12335 PK Pakistan 424.1560
## 12336 PK Pakistan 400.0739
## 12337 PK Pakistan 392.3320
## 12338 PK Pakistan 379.0265
## 12339 PW Palau NA
## 12340 PW Palau 13250.8983
## 12341 PW Palau 14754.6026
## 12342 PW Palau 15115.3663
## 12343 PW Palau 15218.2556
## 12344 PW Palau 15815.7734
## 12345 PW Palau 15876.4619
## 12346 PW Palau 14796.9427
## 12347 PW Palau 13938.1851
## 12348 PW Palau 14400.6892
## 12349 PW Palau 14073.6065
## 12350 PW Palau 13040.5427
## 12351 PW Palau 12773.3764
## 12352 PW Palau 13369.0603
## 12353 PW Palau 13855.4653
## 12354 PW Palau 13312.7599
## 12355 PW Palau 13205.5028
## 12356 PW Palau 12653.2542
## 12357 PW Palau 12097.1095
## 12358 PW Palau 12613.4337
## 12359 PW Palau 12335.8157
## 12360 PW Palau 11762.9450
## 12361 PW Palau NA
## 12362 PW Palau NA
## 12363 PW Palau NA
## 12364 PW Palau NA
## 12365 PW Palau NA
## 12366 PW Palau NA
## 12367 PW Palau NA
## 12368 PW Palau NA
## 12369 PW Palau NA
## 12370 PW Palau NA
## 12371 PW Palau NA
## 12372 PW Palau NA
## 12373 PW Palau NA
## 12374 PW Palau NA
## 12375 PW Palau NA
## 12376 PW Palau NA
## 12377 PW Palau NA
## 12378 PW Palau NA
## 12379 PW Palau NA
## 12380 PW Palau NA
## 12381 PW Palau NA
## 12382 PW Palau NA
## 12383 PW Palau NA
## 12384 PW Palau NA
## 12385 PW Palau NA
## 12386 PW Palau NA
## 12387 PW Palau NA
## 12388 PW Palau NA
## 12389 PW Palau NA
## 12390 PW Palau NA
## 12391 PW Palau NA
## 12392 PW Palau NA
## 12393 PW Palau NA
## 12394 PW Palau NA
## 12395 PW Palau NA
## 12396 PW Palau NA
## 12397 PW Palau NA
## 12398 PW Palau NA
## 12399 PW Palau NA
## 12400 PW Palau NA
## 12401 PA Panama 13824.9524
## 12402 PA Panama 12172.3108
## 12403 PA Panama 15073.0008
## 12404 PA Panama 14880.6628
## 12405 PA Panama 14596.7411
## 12406 PA Panama 14062.4437
## 12407 PA Panama 13630.3011
## 12408 PA Panama 13113.2665
## 12409 PA Panama 12695.2349
## 12410 PA Panama 12079.5447
## 12411 PA Panama 11193.9903
## 12412 PA Panama 10232.3599
## 12413 PA Panama 9840.3329
## 12414 PA Panama 9893.6956
## 12415 PA Panama 9169.1531
## 12416 PA Panama 8337.5854
## 12417 PA Panama 7815.2252
## 12418 PA Panama 7426.6510
## 12419 PA Panama 7036.8821
## 12420 PA Panama 6881.2509
## 12421 PA Panama 6860.9488
## 12422 PA Panama 6955.2852
## 12423 PA Panama 6906.1880
## 12424 PA Panama 6780.2169
## 12425 PA Panama 6445.7715
## 12426 PA Panama 6179.3366
## 12427 PA Panama 6059.8294
## 12428 PA Panama 6078.7621
## 12429 PA Panama 6032.8791
## 12430 PA Panama 5839.8833
## 12431 PA Panama 5510.2383
## 12432 PA Panama 5142.2290
## 12433 PA Panama 4858.2631
## 12434 PA Panama 4886.2655
## 12435 PA Panama 5763.4137
## 12436 PA Panama 5998.3462
## 12437 PA Panama 5920.3744
## 12438 PA Panama 5768.5882
## 12439 PA Panama 5744.7015
## 12440 PA Panama 6154.4066
## 12441 PA Panama 5979.7365
## 12442 PA Panama 5607.0009
## 12443 PA Panama 5079.3842
## 12444 PA Panama 4980.8601
## 12445 PA Panama 4651.6950
## 12446 PA Panama 4720.5764
## 12447 PA Panama 4766.3397
## 12448 PA Panama 4811.8537
## 12449 PA Panama 4827.1164
## 12450 PA Panama 4710.7551
## 12451 PA Panama 4633.1526
## 12452 PA Panama 4348.5793
## 12453 PA Panama 4183.5100
## 12454 PA Panama 3970.2675
## 12455 PA Panama 3820.0907
## 12456 PA Panama 3623.0178
## 12457 PA Panama 3468.0323
## 12458 PA Panama 3272.4715
## 12459 PA Panama 3228.2804
## 12460 PA Panama 3064.4613
## 12461 PA Panama 2916.7404
## 12462 PA Panama 2708.6057
## 12463 PG Papua New Guinea 2655.1673
## 12464 PG Papua New Guinea 2666.2113
## 12465 PG Papua New Guinea 2816.7188
## 12466 PG Papua New Guinea 2749.1178
## 12467 PG Papua New Guinea 2811.7975
## 12468 PG Papua New Guinea 2770.3951
## 12469 PG Papua New Guinea 2679.3466
## 12470 PG Papua New Guinea 2564.9138
## 12471 PG Papua New Guinea 2304.8916
## 12472 PG Papua New Guinea 2265.7644
## 12473 PG Papua New Guinea 2210.9521
## 12474 PG Papua New Guinea 2235.0963
## 12475 PG Papua New Guinea 2076.6151
## 12476 PG Papua New Guinea 1991.3730
## 12477 PG Papua New Guinea 2046.4885
## 12478 PG Papua New Guinea 1944.2962
## 12479 PG Papua New Guinea 1887.6732
## 12480 PG Papua New Guinea 1814.3417
## 12481 PG Papua New Guinea 1803.4205
## 12482 PG Papua New Guinea 1801.3297
## 12483 PG Papua New Guinea 1841.6399
## 12484 PG Papua New Guinea 1883.9339
## 12485 PG Papua New Guinea 1976.5607
## 12486 PG Papua New Guinea 1987.2777
## 12487 PG Papua New Guinea 2116.3509
## 12488 PG Papua New Guinea 2257.1977
## 12489 PG Papua New Guinea 2146.5408
## 12490 PG Papua New Guinea 2273.2842
## 12491 PG Papua New Guinea 2196.3391
## 12492 PG Papua New Guinea 1901.4720
## 12493 PG Papua New Guinea 1709.2845
## 12494 PG Papua New Guinea 1597.4047
## 12495 PG Papua New Guinea 1686.7922
## 12496 PG Papua New Guinea 1752.9621
## 12497 PG Papua New Guinea 1745.7651
## 12498 PG Papua New Guinea 1741.7438
## 12499 PG Papua New Guinea 1706.6656
## 12500 PG Papua New Guinea 1684.3888
## 12501 PG Papua New Guinea 1735.9947
## 12502 PG Papua New Guinea 1727.7549
## 12503 PG Papua New Guinea 1768.7964
## 12504 PG Papua New Guinea 1821.7937
## 12505 PG Papua New Guinea 1914.6706
## 12506 PG Papua New Guinea 1929.8565
## 12507 PG Papua New Guinea 1824.1448
## 12508 PG Papua New Guinea 1855.5696
## 12509 PG Papua New Guinea 1969.5117
## 12510 PG Papua New Guinea 2036.8753
## 12511 PG Papua New Guinea 2034.0967
## 12512 PG Papua New Guinea 1955.9239
## 12513 PG Papua New Guinea 1896.0194
## 12514 PG Papua New Guinea 1826.2800
## 12515 PG Papua New Guinea 1686.6136
## 12516 PG Papua New Guinea 1594.1882
## 12517 PG Papua New Guinea 1562.7785
## 12518 PG Papua New Guinea 1535.4380
## 12519 PG Papua New Guinea 1482.7489
## 12520 PG Papua New Guinea 1372.9613
## 12521 PG Papua New Guinea 1290.1705
## 12522 PG Papua New Guinea 1263.8352
## 12523 PG Papua New Guinea 1210.4988
## 12524 PG Papua New Guinea 1160.8501
## 12525 PY Paraguay 5822.7036
## 12526 PY Paraguay 5656.2612
## 12527 PY Paraguay 5774.1662
## 12528 PY Paraguay 5871.2813
## 12529 PY Paraguay 5762.7326
## 12530 PY Paraguay 5570.6053
## 12531 PY Paraguay 5413.7760
## 12532 PY Paraguay 5329.3698
## 12533 PY Paraguay 5130.4539
## 12534 PY Paraguay 4803.0503
## 12535 PY Paraguay 4904.1469
## 12536 PY Paraguay 4767.2779
## 12537 PY Paraguay 4349.6743
## 12538 PY Paraguay 4420.3504
## 12539 PY Paraguay 4208.0487
## 12540 PY Paraguay 4049.1625
## 12541 PY Paraguay 3922.5585
## 12542 PY Paraguay 3903.3091
## 12543 PY Paraguay 3816.0866
## 12544 PY Paraguay 3724.8356
## 12545 PY Paraguay 3796.6778
## 12546 PY Paraguay 3904.3024
## 12547 PY Paraguay 4078.6675
## 12548 PY Paraguay 4223.0003
## 12549 PY Paraguay 4312.7910
## 12550 PY Paraguay 4230.7668
## 12551 PY Paraguay 4261.8286
## 12552 PY Paraguay 4084.3111
## 12553 PY Paraguay 3972.2124
## 12554 PY Paraguay 3879.4540
## 12555 PY Paraguay 3912.1433
## 12556 PY Paraguay 3879.3707
## 12557 PY Paraguay 3826.3267
## 12558 PY Paraguay 3677.1736
## 12559 PY Paraguay 3569.8925
## 12560 PY Paraguay 3413.5919
## 12561 PY Paraguay 3346.6690
## 12562 PY Paraguay 3295.9217
## 12563 PY Paraguay 3300.5864
## 12564 PY Paraguay 3504.9805
## 12565 PY Paraguay 3658.7522
## 12566 PY Paraguay 3447.5792
## 12567 PY Paraguay 3172.3513
## 12568 PY Paraguay 2912.9990
## 12569 PY Paraguay 2668.9314
## 12570 PY Paraguay 2455.5521
## 12571 PY Paraguay 2341.4716
## 12572 PY Paraguay 2245.5526
## 12573 PY Paraguay 2122.0672
## 12574 PY Paraguay 2025.0594
## 12575 PY Paraguay 1945.0096
## 12576 PY Paraguay 1888.4604
## 12577 PY Paraguay 1834.5921
## 12578 PY Paraguay 1798.0137
## 12579 PY Paraguay 1766.0429
## 12580 PY Paraguay 1661.5563
## 12581 PY Paraguay 1672.9273
## 12582 PY Paraguay 1617.9948
## 12583 PY Paraguay 1594.2137
## 12584 PY Paraguay 1563.2161
## 12585 PY Paraguay 1553.6293
## 12586 PY Paraguay 1491.9392
## 12587 PE Peru 6505.8071
## 12588 PE Peru 5807.0654
## 12589 PE Peru 6613.8764
## 12590 PE Peru 6574.3290
## 12591 PE Peru 6432.9243
## 12592 PE Peru 6380.0259
## 12593 PE Peru 6229.1007
## 12594 PE Peru 6109.1569
## 12595 PE Peru 6030.4202
## 12596 PE Peru 5748.5908
## 12597 PE Peru 5460.9357
## 12598 PE Peru 5177.8413
## 12599 PE Peru 4818.5972
## 12600 PE Peru 4804.8048
## 12601 PE Peru 4438.5940
## 12602 PE Peru 4123.7975
## 12603 PE Peru 3867.5274
## 12604 PE Peru 3670.6914
## 12605 PE Peru 3529.4873
## 12606 PE Peru 3422.2754
## 12607 PE Peru 3281.8241
## 12608 PE Peru 3303.5009
## 12609 PE Peru 3263.9051
## 12610 PE Peru 3268.4998
## 12611 PE Peru 3339.5418
## 12612 PE Peru 3194.3228
## 12613 PE Peru 3165.4900
## 12614 PE Peru 3002.3963
## 12615 PE Peru 2723.9747
## 12616 PE Peru 2637.9914
## 12617 PE Peru 2704.6664
## 12618 PE Peru 2700.0064
## 12619 PE Peru 2901.7032
## 12620 PE Peru 3381.1979
## 12621 PE Peru 3817.1065
## 12622 PE Peru 3558.0125
## 12623 PE Peru 3326.7603
## 12624 PE Peru 3336.0262
## 12625 PE Peru 3296.4138
## 12626 PE Peru 3768.1362
## 12627 PE Peru 3869.1526
## 12628 PE Peru 3757.0869
## 12629 PE Peru 3636.2983
## 12630 PE Peru 3583.4190
## 12631 PE Peru 3776.9248
## 12632 PE Peru 3863.5350
## 12633 PE Peru 3910.5972
## 12634 PE Peru 3851.1307
## 12635 PE Peru 3617.2967
## 12636 PE Peru 3497.9197
## 12637 PE Peru 3474.5696
## 12638 PE Peru 3415.0130
## 12639 PE Peru 3396.4019
## 12640 PE Peru 3373.1560
## 12641 PE Peru 3462.8203
## 12642 PE Peru 3428.7767
## 12643 PE Peru 3258.2312
## 12644 PE Peru 3173.7073
## 12645 PE Peru 3065.1201
## 12646 PE Peru 3023.4587
## 12647 PE Peru 2827.3729
## 12648 PE Peru 2709.4934
## 12649 PH Philippines 3412.5883
## 12650 PH Philippines 3271.6499
## 12651 PH Philippines 3664.7907
## 12652 PH Philippines 3500.9338
## 12653 PH Philippines 3338.4415
## 12654 PH Philippines 3167.5024
## 12655 PH Philippines 3001.0432
## 12656 PH Philippines 2866.8221
## 12657 PH Philippines 2740.4565
## 12658 PH Philippines 2610.9678
## 12659 PH Philippines 2484.4892
## 12660 PH Philippines 2433.0085
## 12661 PH Philippines 2304.8365
## 12662 PH Philippines 2309.7262
## 12663 PH Philippines 2250.6094
## 12664 PH Philippines 2149.3299
## 12665 PH Philippines 2077.7680
## 12666 PH Philippines 2017.6742
## 12667 PH Philippines 1931.1088
## 12668 PH Philippines 1875.7244
## 12669 PH Philippines 1846.9314
## 12670 PH Philippines 1830.9132
## 12671 PH Philippines 1792.3246
## 12672 PH Philippines 1772.7004
## 12673 PH Philippines 1821.9023
## 12674 PH Philippines 1771.5898
## 12675 PH Philippines 1712.3095
## 12676 PH Philippines 1675.0966
## 12677 PH Philippines 1643.1486
## 12678 PH Philippines 1646.9848
## 12679 PH Philippines 1680.5949
## 12680 PH Philippines 1730.4937
## 12681 PH Philippines 1721.9886
## 12682 PH Philippines 1664.3397
## 12683 PH Philippines 1601.5851
## 12684 PH Philippines 1576.1673
## 12685 PH Philippines 1564.2175
## 12686 PH Philippines 1725.4546
## 12687 PH Philippines 1907.3151
## 12688 PH Philippines 1923.6454
## 12689 PH Philippines 1906.5182
## 12690 PH Philippines 1894.6229
## 12691 PH Philippines 1850.9048
## 12692 PH Philippines 1801.3514
## 12693 PH Philippines 1759.8907
## 12694 PH Philippines 1713.6020
## 12695 PH Philippines 1619.6110
## 12696 PH Philippines 1579.5607
## 12697 PH Philippines 1571.6065
## 12698 PH Philippines 1486.6114
## 12699 PH Philippines 1451.1263
## 12700 PH Philippines 1417.1539
## 12701 PH Philippines 1406.6561
## 12702 PH Philippines 1383.0511
## 12703 PH Philippines 1355.6734
## 12704 PH Philippines 1327.1931
## 12705 PH Philippines 1309.9845
## 12706 PH Philippines 1283.0041
## 12707 PH Philippines 1281.2465
## 12708 PH Philippines 1237.1261
## 12709 PH Philippines 1219.7486
## 12710 PH Philippines 1193.1767
## 12711 PL Poland 15549.6692
## 12712 PL Poland 14660.7939
## 12713 PL Poland 15016.6733
## 12714 PL Poland 14332.9159
## 12715 PL Poland 13604.5405
## 12716 PL Poland 12979.2553
## 12717 PL Poland 12578.4955
## 12718 PL Poland 12059.2467
## 12719 PL Poland 11656.4031
## 12720 PL Poland 11519.6850
## 12721 PL Poland 11369.0296
## 12722 PL Poland 10858.5348
## 12723 PL Poland 10437.1619
## 12724 PL Poland 10156.5843
## 12725 PL Poland 9748.5341
## 12726 PL Poland 9100.5988
## 12727 PL Poland 8569.4300
## 12728 PL Poland 8275.4568
## 12729 PL Poland 7878.0657
## 12730 PL Poland 7606.6400
## 12731 PL Poland 7451.4142
## 12732 PL Poland 7356.7754
## 12733 PL Poland 6962.7719
## 12734 PL Poland 6652.5302
## 12735 PL Poland 6359.7754
## 12736 PL Poland 5978.3895
## 12737 PL Poland 5638.1449
## 12738 PL Poland 5271.3830
## 12739 PL Poland 5016.9792
## 12740 PL Poland 4848.5089
## 12741 PL Poland 4744.0884
## 12742 PL Poland 5120.1530
## 12743 PL Poland NA
## 12744 PL Poland NA
## 12745 PL Poland NA
## 12746 PL Poland NA
## 12747 PL Poland NA
## 12748 PL Poland NA
## 12749 PL Poland NA
## 12750 PL Poland NA
## 12751 PL Poland NA
## 12752 PL Poland NA
## 12753 PL Poland NA
## 12754 PL Poland NA
## 12755 PL Poland NA
## 12756 PL Poland NA
## 12757 PL Poland NA
## 12758 PL Poland NA
## 12759 PL Poland NA
## 12760 PL Poland NA
## 12761 PL Poland NA
## 12762 PL Poland NA
## 12763 PL Poland NA
## 12764 PL Poland NA
## 12765 PL Poland NA
## 12766 PL Poland NA
## 12767 PL Poland NA
## 12768 PL Poland NA
## 12769 PL Poland NA
## 12770 PL Poland NA
## 12771 PL Poland NA
## 12772 PL Poland NA
## 12773 PT Portugal 20731.9543
## 12774 PT Portugal 19771.5774
## 12775 PT Portugal 21617.4115
## 12776 PT Portugal 21057.6175
## 12777 PT Portugal 20441.4858
## 12778 PT Portugal 19700.9100
## 12779 PT Portugal 19250.1065
## 12780 PT Portugal 18833.0518
## 12781 PT Portugal 18584.5540
## 12782 PT Portugal 18654.9575
## 12783 PT Portugal 19365.1816
## 12784 PT Portugal 19670.3611
## 12785 PT Portugal 19343.2800
## 12786 PT Portugal 19985.6983
## 12787 PT Portugal 19950.8441
## 12788 PT Portugal 19501.2330
## 12789 PT Portugal 19224.0347
## 12790 PT Portugal 19110.3208
## 12791 PT Portugal 18819.4437
## 12792 PT Portugal 19067.6554
## 12793 PT Portugal 19025.6957
## 12794 PT Portugal 18795.0311
## 12795 PT Portugal 18231.8398
## 12796 PT Portugal 17645.9058
## 12797 PT Portugal 16921.7219
## 12798 PT Portugal 16280.9372
## 12799 PT Portugal 15788.9831
## 12800 PT Portugal 15193.0547
## 12801 PT Portugal 15088.4140
## 12802 PT Portugal 15421.9949
## 12803 PT Portugal 15243.9300
## 12804 PT Portugal 14572.2884
## 12805 PT Portugal 13987.9651
## 12806 PT Portugal 13122.4021
## 12807 PT Portugal 12195.4386
## 12808 PT Portugal 11460.7945
## 12809 PT Portugal 11015.0931
## 12810 PT Portugal 10743.6437
## 12811 PT Portugal 10991.6795
## 12812 PT Portugal 11061.9453
## 12813 PT Portugal 10897.0840
## 12814 PT Portugal 10816.9518
## 12815 PT Portugal 10454.7601
## 12816 PT Portugal 10003.3544
## 12817 PT Portugal 9834.9225
## 12818 PT Portugal 9412.5541
## 12819 PT Portugal 9059.0071
## 12820 PT Portugal 9837.6158
## 12821 PT Portugal 9863.0789
## 12822 PT Portugal 8872.3657
## 12823 PT Portugal 8201.2963
## 12824 PT Portugal 7658.7443
## 12825 PT Portugal 6740.9567
## 12826 PT Portugal 6541.9955
## 12827 PT Portugal 5983.0526
## 12828 PT Portugal 5528.1518
## 12829 PT Portugal 5271.6467
## 12830 PT Portugal 4885.3101
## 12831 PT Portugal 4597.8611
## 12832 PT Portugal 4360.3405
## 12833 PT Portugal 4119.4413
## 12834 PT Portugal 3934.9447
## 12835 PR Puerto Rico NA
## 12836 PR Puerto Rico 28236.7831
## 12837 PR Puerto Rico 30191.9318
## 12838 PR Puerto Rico 29753.3641
## 12839 PR Puerto Rico 29809.2177
## 12840 PR Puerto Rico 29961.7528
## 12841 PR Puerto Rico 29763.4883
## 12842 PR Puerto Rico 29554.6244
## 12843 PR Puerto Rico 29426.1576
## 12844 PR Puerto Rico 29180.4121
## 12845 PR Puerto Rico 28821.0228
## 12846 PR Puerto Rico 28592.1220
## 12847 PR Puerto Rico 28565.8123
## 12848 PR Puerto Rico 28976.1760
## 12849 PR Puerto Rico 29347.8916
## 12850 PR Puerto Rico 29519.7845
## 12851 PR Puerto Rico 29815.2627
## 12852 PR Puerto Rico 30375.8367
## 12853 PR Puerto Rico 27937.8600
## 12854 PR Puerto Rico 27940.4260
## 12855 PR Puerto Rico 27722.4102
## 12856 PR Puerto Rico 26132.0036
## 12857 PR Puerto Rico 25374.1411
## 12858 PR Puerto Rico 24197.3473
## 12859 PR Puerto Rico 23061.3703
## 12860 PR Puerto Rico 22193.6136
## 12861 PR Puerto Rico 21936.4520
## 12862 PR Puerto Rico 21176.7030
## 12863 PR Puerto Rico 20515.5526
## 12864 PR Puerto Rico 19770.7992
## 12865 PR Puerto Rico 19030.2711
## 12866 PR Puerto Rico 18733.6743
## 12867 PR Puerto Rico 19453.7971
## 12868 PR Puerto Rico 18815.9457
## 12869 PR Puerto Rico 17935.0628
## 12870 PR Puerto Rico 17117.4423
## 12871 PR Puerto Rico 16463.0277
## 12872 PR Puerto Rico 16125.0820
## 12873 PR Puerto Rico 15374.5356
## 12874 PR Puerto Rico 15905.0441
## 12875 PR Puerto Rico 16330.4438
## 12876 PR Puerto Rico 16329.1788
## 12877 PR Puerto Rico 15851.9169
## 12878 PR Puerto Rico 14871.8884
## 12879 PR Puerto Rico 14091.2110
## 12880 PR Puerto Rico 13495.6891
## 12881 PR Puerto Rico 12914.1671
## 12882 PR Puerto Rico 13241.1750
## 12883 PR Puerto Rico 13136.2739
## 12884 PR Puerto Rico 12622.3034
## 12885 PR Puerto Rico 12012.2306
## 12886 PR Puerto Rico 11476.9682
## 12887 PR Puerto Rico 10721.3361
## 12888 PR Puerto Rico 9883.6693
## 12889 PR Puerto Rico 9455.0843
## 12890 PR Puerto Rico 8971.2669
## 12891 PR Puerto Rico 8445.1480
## 12892 PR Puerto Rico 7854.2229
## 12893 PR Puerto Rico 7481.3180
## 12894 PR Puerto Rico 7037.9678
## 12895 PR Puerto Rico 6634.1849
## 12896 PR Puerto Rico 6307.4171
## 12897 QA Qatar 55920.3212
## 12898 QA Qatar 56026.8872
## 12899 QA Qatar 59149.3391
## 12900 QA Qatar 59757.7961
## 12901 QA Qatar 60262.7461
## 12902 QA Qatar 62800.3681
## 12903 QA Qatar 63039.1126
## 12904 QA Qatar 62784.9009
## 12905 QA Qatar 62733.4306
## 12906 QA Qatar 63233.7087
## 12907 QA Qatar 65129.3774
## 12908 QA Qatar 63001.7101
## 12909 QA Qatar 59090.9064
## 12910 QA Qatar 60799.1323
## 12911 QA Qatar 60926.7383
## 12912 QA Qatar 61522.3993
## 12913 QA Qatar 57624.1272
## 12914 QA Qatar 61582.9723
## 12915 QA Qatar 57075.6192
## 12916 QA Qatar 58542.0954
## 12917 QA Qatar 56915.7933
## 12918 QA Qatar 56864.9886
## 12919 QA Qatar NA
## 12920 QA Qatar NA
## 12921 QA Qatar NA
## 12922 QA Qatar NA
## 12923 QA Qatar NA
## 12924 QA Qatar NA
## 12925 QA Qatar NA
## 12926 QA Qatar NA
## 12927 QA Qatar NA
## 12928 QA Qatar NA
## 12929 QA Qatar NA
## 12930 QA Qatar NA
## 12931 QA Qatar NA
## 12932 QA Qatar NA
## 12933 QA Qatar NA
## 12934 QA Qatar NA
## 12935 QA Qatar NA
## 12936 QA Qatar NA
## 12937 QA Qatar NA
## 12938 QA Qatar NA
## 12939 QA Qatar NA
## 12940 QA Qatar NA
## 12941 QA Qatar NA
## 12942 QA Qatar NA
## 12943 QA Qatar NA
## 12944 QA Qatar NA
## 12945 QA Qatar NA
## 12946 QA Qatar NA
## 12947 QA Qatar NA
## 12948 QA Qatar NA
## 12949 QA Qatar NA
## 12950 QA Qatar NA
## 12951 QA Qatar NA
## 12952 QA Qatar NA
## 12953 QA Qatar NA
## 12954 QA Qatar NA
## 12955 QA Qatar NA
## 12956 QA Qatar NA
## 12957 QA Qatar NA
## 12958 QA Qatar NA
## 12959 RO Romania 11589.6595
## 12960 RO Romania 10865.1411
## 12961 RO Romania 11221.7084
## 12962 RO Romania 10714.0154
## 12963 RO Romania 10195.0747
## 12964 RO Romania 9444.9949
## 12965 RO Romania 8969.1489
## 12966 RO Romania 8670.9758
## 12967 RO Romania 8337.6736
## 12968 RO Romania 8004.9092
## 12969 RO Romania 7809.9768
## 12970 RO Romania 7626.2942
## 12971 RO Romania 7888.8958
## 12972 RO Romania 8280.3044
## 12973 RO Romania 7450.0547
## 12974 RO Romania 6845.6113
## 12975 RO Romania 6299.4099
## 12976 RO Romania 5981.4080
## 12977 RO Romania 5385.7876
## 12978 RO Romania 5224.7624
## 12979 RO Romania 4853.2072
## 12980 RO Romania 4548.6021
## 12981 RO Romania 4433.5957
## 12982 RO Romania 4443.3779
## 12983 RO Romania 4526.0610
## 12984 RO Romania 4743.0424
## 12985 RO Romania 4551.5355
## 12986 RO Romania 4275.8035
## 12987 RO Romania 4108.0652
## 12988 RO Romania 4040.7019
## 12989 RO Romania 4389.1685
## 12990 RO Romania 4996.6878
## 12991 RO Romania NA
## 12992 RO Romania NA
## 12993 RO Romania NA
## 12994 RO Romania NA
## 12995 RO Romania NA
## 12996 RO Romania NA
## 12997 RO Romania NA
## 12998 RO Romania NA
## 12999 RO Romania NA
## 13000 RO Romania NA
## 13001 RO Romania NA
## 13002 RO Romania NA
## 13003 RO Romania NA
## 13004 RO Romania NA
## 13005 RO Romania NA
## 13006 RO Romania NA
## 13007 RO Romania NA
## 13008 RO Romania NA
## 13009 RO Romania NA
## 13010 RO Romania NA
## 13011 RO Romania NA
## 13012 RO Romania NA
## 13013 RO Romania NA
## 13014 RO Romania NA
## 13015 RO Romania NA
## 13016 RO Romania NA
## 13017 RO Romania NA
## 13018 RO Romania NA
## 13019 RO Romania NA
## 13020 RO Romania NA
## 13021 RU Russian Federation 10219.7510
## 13022 RU Russian Federation 9711.4180
## 13023 RU Russian Federation 9958.4609
## 13024 RU Russian Federation 9739.9004
## 13025 RU Russian Federation 9473.1797
## 13026 RU Russian Federation 9313.9678
## 13027 RU Russian Federation 9313.0137
## 13028 RU Russian Federation 9520.9404
## 13029 RU Russian Federation 9621.5098
## 13030 RU Russian Federation 9475.6826
## 13031 RU Russian Federation 9124.4678
## 13032 RU Russian Federation 8755.1133
## 13033 RU Russian Federation 8381.8613
## 13034 RU Russian Federation 9093.6924
## 13035 RU Russian Federation 8640.3984
## 13036 RU Russian Federation 7949.8901
## 13037 RU Russian Federation 7323.3794
## 13038 RU Russian Federation 6856.6724
## 13039 RU Russian Federation 6370.4487
## 13040 RU Russian Federation 5910.1670
## 13041 RU Russian Federation 5618.9507
## 13042 RU Russian Federation 5323.6626
## 13043 RU Russian Federation 4819.3765
## 13044 RU Russian Federation 4515.5059
## 13045 RU Russian Federation 4760.3354
## 13046 RU Russian Federation 4686.8589
## 13047 RU Russian Federation 4862.6421
## 13048 RU Russian Federation 5071.7388
## 13049 RU Russian Federation 5798.9097
## 13050 RU Russian Federation 6345.9067
## 13051 RU Russian Federation 7432.0156
## 13052 RU Russian Federation 7849.5122
## 13053 RU Russian Federation 8105.8882
## 13054 RU Russian Federation NA
## 13055 RU Russian Federation NA
## 13056 RU Russian Federation NA
## 13057 RU Russian Federation NA
## 13058 RU Russian Federation NA
## 13059 RU Russian Federation NA
## 13060 RU Russian Federation NA
## 13061 RU Russian Federation NA
## 13062 RU Russian Federation NA
## 13063 RU Russian Federation NA
## 13064 RU Russian Federation NA
## 13065 RU Russian Federation NA
## 13066 RU Russian Federation NA
## 13067 RU Russian Federation NA
## 13068 RU Russian Federation NA
## 13069 RU Russian Federation NA
## 13070 RU Russian Federation NA
## 13071 RU Russian Federation NA
## 13072 RU Russian Federation NA
## 13073 RU Russian Federation NA
## 13074 RU Russian Federation NA
## 13075 RU Russian Federation NA
## 13076 RU Russian Federation NA
## 13077 RU Russian Federation NA
## 13078 RU Russian Federation NA
## 13079 RU Russian Federation NA
## 13080 RU Russian Federation NA
## 13081 RU Russian Federation NA
## 13082 RU Russian Federation NA
## 13083 RW Rwanda 902.6163
## 13084 RW Rwanda 834.3967
## 13085 RW Rwanda 885.6381
## 13086 RW Rwanda 830.4661
## 13087 RW Rwanda 785.3393
## 13088 RW Rwanda 775.5099
## 13089 RW Rwanda 751.1105
## 13090 RW Rwanda 707.7679
## 13091 RW Rwanda 683.4317
## 13092 RW Rwanda 668.8286
## 13093 RW Rwanda 630.9599
## 13094 RW Rwanda 599.2338
## 13095 RW Rwanda 572.9274
## 13096 RW Rwanda 553.8549
## 13097 RW Rwanda 511.7177
## 13098 RW Rwanda 487.5403
## 13099 RW Rwanda 456.6109
## 13100 RW Rwanda 425.1422
## 13101 RW Rwanda 401.3775
## 13102 RW Rwanda 398.7911
## 13103 RW Rwanda 360.6991
## 13104 RW Rwanda 344.9552
## 13105 RW Rwanda 336.6604
## 13106 RW Rwanda 347.5688
## 13107 RW Rwanda 346.2849
## 13108 RW Rwanda 324.7359
## 13109 RW Rwanda 296.7412
## 13110 RW Rwanda 215.7562
## 13111 RW Rwanda 410.9895
## 13112 RW Rwanda 417.9952
## 13113 RW Rwanda 373.5365
## 13114 RW Rwanda 372.3965
## 13115 RW Rwanda 382.1750
## 13116 RW Rwanda 392.4973
## 13117 RW Rwanda 392.6742
## 13118 RW Rwanda 413.2632
## 13119 RW Rwanda 410.7452
## 13120 RW Rwanda 409.6888
## 13121 RW Rwanda 443.7591
## 13122 RW Rwanda 432.8769
## 13123 RW Rwanda 439.1870
## 13124 RW Rwanda 430.7638
## 13125 RW Rwanda 409.2290
## 13126 RW Rwanda 378.4204
## 13127 RW Rwanda 358.4232
## 13128 RW Rwanda 363.0572
## 13129 RW Rwanda 313.6439
## 13130 RW Rwanda 330.4976
## 13131 RW Rwanda 335.8369
## 13132 RW Rwanda 334.3796
## 13133 RW Rwanda 343.4774
## 13134 RW Rwanda 349.6862
## 13135 RW Rwanda 340.2211
## 13136 RW Rwanda 316.3311
## 13137 RW Rwanda 305.0121
## 13138 RW Rwanda 293.8037
## 13139 RW Rwanda 281.8695
## 13140 RW Rwanda 269.3395
## 13141 RW Rwanda 313.5236
## 13142 RW Rwanda 353.6423
## 13143 RW Rwanda 323.4261
## 13144 RW Rwanda 345.1745
## 13145 WS Samoa 3972.2491
## 13146 WS Samoa 4359.1186
## 13147 WS Samoa 4504.9193
## 13148 WS Samoa 4337.1261
## 13149 WS Samoa 4408.5858
## 13150 WS Samoa 4381.4493
## 13151 WS Samoa 4073.7291
## 13152 WS Samoa 3932.1101
## 13153 WS Samoa 3961.1356
## 13154 WS Samoa 4011.8433
## 13155 WS Samoa 4219.0152
## 13156 WS Samoa 4083.2087
## 13157 WS Samoa 4011.6721
## 13158 WS Samoa 4061.7577
## 13159 WS Samoa 3948.6709
## 13160 WS Samoa 3955.0145
## 13161 WS Samoa 3897.2709
## 13162 WS Samoa 3677.6533
## 13163 WS Samoa 3589.9474
## 13164 WS Samoa 3432.8029
## 13165 WS Samoa 3267.9829
## 13166 WS Samoa 3059.4914
## 13167 WS Samoa 2925.4416
## 13168 WS Samoa 2875.5799
## 13169 WS Samoa 2826.4770
## 13170 WS Samoa 2823.1740
## 13171 WS Samoa 2651.3458
## 13172 WS Samoa 2505.5272
## 13173 WS Samoa 2595.0648
## 13174 WS Samoa 2517.3662
## 13175 WS Samoa 2545.3278
## 13176 WS Samoa 2624.5005
## 13177 WS Samoa 2760.5263
## 13178 WS Samoa 2671.1798
## 13179 WS Samoa 2717.1231
## 13180 WS Samoa 2710.9652
## 13181 WS Samoa 2578.4692
## 13182 WS Samoa 2492.9351
## 13183 WS Samoa 2475.2033
## 13184 WS Samoa 2479.9283
## 13185 WS Samoa NA
## 13186 WS Samoa NA
## 13187 WS Samoa NA
## 13188 WS Samoa NA
## 13189 WS Samoa NA
## 13190 WS Samoa NA
## 13191 WS Samoa NA
## 13192 WS Samoa NA
## 13193 WS Samoa NA
## 13194 WS Samoa NA
## 13195 WS Samoa NA
## 13196 WS Samoa NA
## 13197 WS Samoa NA
## 13198 WS Samoa NA
## 13199 WS Samoa NA
## 13200 WS Samoa NA
## 13201 WS Samoa NA
## 13202 WS Samoa NA
## 13203 WS Samoa NA
## 13204 WS Samoa NA
## 13205 WS Samoa NA
## 13206 WS Samoa NA
## 13207 SM San Marino NA
## 13208 SM San Marino 41499.7064
## 13209 SM San Marino 44552.1820
## 13210 SM San Marino 43753.8614
## 13211 SM San Marino 43254.5185
## 13212 SM San Marino 43359.4372
## 13213 SM San Marino 42662.9024
## 13214 SM San Marino 42123.7338
## 13215 SM San Marino 42925.9977
## 13216 SM San Marino 43872.9970
## 13217 SM San Marino 47865.8387
## 13218 SM San Marino 52932.4285
## 13219 SM San Marino 56716.9427
## 13220 SM San Marino 64056.8966
## 13221 SM San Marino 65163.0507
## 13222 SM San Marino 61604.1504
## 13223 SM San Marino 60080.3235
## 13224 SM San Marino 59432.0222
## 13225 SM San Marino 57604.4988
## 13226 SM San Marino 56216.4414
## 13227 SM San Marino 56761.4757
## 13228 SM San Marino 54463.3318
## 13229 SM San Marino 53928.1636
## 13230 SM San Marino 49987.0941
## 13231 SM San Marino 47018.8160
## 13232 SM San Marino NA
## 13233 SM San Marino NA
## 13234 SM San Marino NA
## 13235 SM San Marino NA
## 13236 SM San Marino NA
## 13237 SM San Marino NA
## 13238 SM San Marino NA
## 13239 SM San Marino NA
## 13240 SM San Marino NA
## 13241 SM San Marino NA
## 13242 SM San Marino NA
## 13243 SM San Marino NA
## 13244 SM San Marino NA
## 13245 SM San Marino NA
## 13246 SM San Marino NA
## 13247 SM San Marino NA
## 13248 SM San Marino NA
## 13249 SM San Marino NA
## 13250 SM San Marino NA
## 13251 SM San Marino NA
## 13252 SM San Marino NA
## 13253 SM San Marino NA
## 13254 SM San Marino NA
## 13255 SM San Marino NA
## 13256 SM San Marino NA
## 13257 SM San Marino NA
## 13258 SM San Marino NA
## 13259 SM San Marino NA
## 13260 SM San Marino NA
## 13261 SM San Marino NA
## 13262 SM San Marino NA
## 13263 SM San Marino NA
## 13264 SM San Marino NA
## 13265 SM San Marino NA
## 13266 SM San Marino NA
## 13267 SM San Marino NA
## 13268 SM San Marino NA
## 13269 ST Sao Tome and Principe 1690.2633
## 13270 ST Sao Tome and Principe 1692.2187
## 13271 ST Sao Tome and Principe 1672.8962
## 13272 ST Sao Tome and Principe 1667.8579
## 13273 ST Sao Tome and Principe 1651.0120
## 13274 ST Sao Tome and Principe 1620.0565
## 13275 ST Sao Tome and Principe 1584.7757
## 13276 ST Sao Tome and Principe 1554.0472
## 13277 ST Sao Tome and Principe 1486.2390
## 13278 ST Sao Tome and Principe 1445.6798
## 13279 ST Sao Tome and Principe 1431.0603
## 13280 ST Sao Tome and Principe 1402.3021
## 13281 ST Sao Tome and Principe 1348.1906
## 13282 ST Sao Tome and Principe 1352.8295
## 13283 ST Sao Tome and Principe 1286.7458
## 13284 ST Sao Tome and Principe 1281.8180
## 13285 ST Sao Tome and Principe 1206.0952
## 13286 ST Sao Tome and Principe 1153.5731
## 13287 ST Sao Tome and Principe 1135.6023
## 13288 ST Sao Tome and Principe 1086.9126
## 13289 ST Sao Tome and Principe 1081.4064
## 13290 ST Sao Tome and Principe NA
## 13291 ST Sao Tome and Principe NA
## 13292 ST Sao Tome and Principe NA
## 13293 ST Sao Tome and Principe NA
## 13294 ST Sao Tome and Principe NA
## 13295 ST Sao Tome and Principe NA
## 13296 ST Sao Tome and Principe NA
## 13297 ST Sao Tome and Principe NA
## 13298 ST Sao Tome and Principe NA
## 13299 ST Sao Tome and Principe NA
## 13300 ST Sao Tome and Principe NA
## 13301 ST Sao Tome and Principe NA
## 13302 ST Sao Tome and Principe NA
## 13303 ST Sao Tome and Principe NA
## 13304 ST Sao Tome and Principe NA
## 13305 ST Sao Tome and Principe NA
## 13306 ST Sao Tome and Principe NA
## 13307 ST Sao Tome and Principe NA
## 13308 ST Sao Tome and Principe NA
## 13309 ST Sao Tome and Principe NA
## 13310 ST Sao Tome and Principe NA
## 13311 ST Sao Tome and Principe NA
## 13312 ST Sao Tome and Principe NA
## 13313 ST Sao Tome and Principe NA
## 13314 ST Sao Tome and Principe NA
## 13315 ST Sao Tome and Principe NA
## 13316 ST Sao Tome and Principe NA
## 13317 ST Sao Tome and Principe NA
## 13318 ST Sao Tome and Principe NA
## 13319 ST Sao Tome and Principe NA
## 13320 ST Sao Tome and Principe NA
## 13321 ST Sao Tome and Principe NA
## 13322 ST Sao Tome and Principe NA
## 13323 ST Sao Tome and Principe NA
## 13324 ST Sao Tome and Principe NA
## 13325 ST Sao Tome and Principe NA
## 13326 ST Sao Tome and Principe NA
## 13327 ST Sao Tome and Principe NA
## 13328 ST Sao Tome and Principe NA
## 13329 ST Sao Tome and Principe NA
## 13330 ST Sao Tome and Principe NA
## 13331 SA Saudi Arabia 19018.4939
## 13332 SA Saudi Arabia 18700.2258
## 13333 SA Saudi Arabia 19817.8107
## 13334 SA Saudi Arabia 20083.4598
## 13335 SA Saudi Arabia 19946.9530
## 13336 SA Saudi Arabia 20503.3846
## 13337 SA Saudi Arabia 20627.9218
## 13338 SA Saudi Arabia 20327.6728
## 13339 SA Saudi Arabia 20175.5551
## 13340 SA Saudi Arabia 20249.7964
## 13341 SA Saudi Arabia 19813.2551
## 13342 SA Saudi Arabia 18568.3632
## 13343 SA Saudi Arabia 18202.6926
## 13344 SA Saudi Arabia 19117.9288
## 13345 SA Saudi Arabia 18496.3245
## 13346 SA Saudi Arabia 18669.6136
## 13347 SA Saudi Arabia 18683.3771
## 13348 SA Saudi Arabia 18219.8572
## 13349 SA Saudi Arabia 17384.7941
## 13350 SA Saudi Arabia 16094.7003
## 13351 SA Saudi Arabia 17032.3570
## 13352 SA Saudi Arabia 17690.6613
## 13353 SA Saudi Arabia 17137.7141
## 13354 SA Saudi Arabia 18178.0426
## 13355 SA Saudi Arabia 18009.3078
## 13356 SA Saudi Arabia 18162.0401
## 13357 SA Saudi Arabia 18070.3954
## 13358 SA Saudi Arabia 18452.2184
## 13359 SA Saudi Arabia 18815.7671
## 13360 SA Saudi Arabia 19606.3918
## 13361 SA Saudi Arabia 19427.8509
## 13362 SA Saudi Arabia 17453.4062
## 13363 SA Saudi Arabia 15700.2361
## 13364 SA Saudi Arabia 16403.8876
## 13365 SA Saudi Arabia 15129.5690
## 13366 SA Saudi Arabia 16969.6470
## 13367 SA Saudi Arabia 15248.7572
## 13368 SA Saudi Arabia 17857.5229
## 13369 SA Saudi Arabia 19879.5109
## 13370 SA Saudi Arabia 25215.5102
## 13371 SA Saudi Arabia 33898.2529
## 13372 SA Saudi Arabia 35380.4576
## 13373 SA Saudi Arabia 35516.1442
## 13374 SA Saudi Arabia 33535.9314
## 13375 SA Saudi Arabia 37275.9635
## 13376 SA Saudi Arabia 36612.5471
## 13377 SA Saudi Arabia 32680.6822
## 13378 SA Saudi Arabia 37741.1198
## 13379 SA Saudi Arabia 34129.1192
## 13380 SA Saudi Arabia 28856.9602
## 13381 SA Saudi Arabia 24599.0622
## 13382 SA Saudi Arabia 21336.2493
## 13383 SA Saudi Arabia 14016.7876
## 13384 SA Saudi Arabia 13739.0012
## 13385 SA Saudi Arabia NA
## 13386 SA Saudi Arabia NA
## 13387 SA Saudi Arabia NA
## 13388 SA Saudi Arabia NA
## 13389 SA Saudi Arabia NA
## 13390 SA Saudi Arabia NA
## 13391 SA Saudi Arabia NA
## 13392 SA Saudi Arabia NA
## 13393 SN Senegal 1409.9539
## 13394 SN Senegal 1365.2516
## 13395 SN Senegal 1384.3970
## 13396 SN Senegal 1360.2393
## 13397 SN Senegal 1316.8447
## 13398 SN Senegal 1261.0095
## 13399 SN Senegal 1219.2494
## 13400 SN Senegal 1178.9129
## 13401 SN Senegal 1141.4269
## 13402 SN Senegal 1146.1781
## 13403 SN Senegal 1133.1933
## 13404 SN Senegal 1149.6465
## 13405 SN Senegal 1142.8659
## 13406 SN Senegal 1142.8669
## 13407 SN Senegal 1132.0067
## 13408 SN Senegal 1130.3640
## 13409 SN Senegal 1133.7170
## 13410 SN Senegal 1115.0258
## 13411 SN Senegal 1092.7014
## 13412 SN Senegal 1060.7535
## 13413 SN Senegal 1086.1763
## 13414 SN Senegal 1066.6216
## 13415 SN Senegal 1051.2841
## 13416 SN Senegal 1012.5125
## 13417 SN Senegal 978.8285
## 13418 SN Senegal 973.1323
## 13419 SN Senegal 978.3108
## 13420 SN Senegal 952.7000
## 13421 SN Senegal 980.3009
## 13422 SN Senegal 995.7916
## 13423 SN Senegal 1012.5442
## 13424 SN Senegal 1016.3446
## 13425 SN Senegal 1055.2234
## 13426 SN Senegal 1045.9546
## 13427 SN Senegal 1086.9093
## 13428 SN Senegal 1054.3653
## 13429 SN Senegal 1053.8879
## 13430 SN Senegal 1050.0774
## 13431 SN Senegal 1041.4795
## 13432 SN Senegal 1137.4063
## 13433 SN Senegal 1084.1086
## 13434 SN Senegal 1059.7516
## 13435 SN Senegal 1046.1094
## 13436 SN Senegal 1002.0462
## 13437 SN Senegal 1068.5025
## 13438 SN Senegal 1124.9085
## 13439 SN Senegal 1059.4961
## 13440 SN Senegal 1012.4963
## 13441 SN Senegal 1000.1282
## 13442 SN Senegal 1091.5522
## 13443 SN Senegal 1057.7104
## 13444 SN Senegal 1091.5458
## 13445 SN Senegal 1035.6666
## 13446 SN Senegal 1141.2228
## 13447 SN Senegal 1105.1937
## 13448 SN Senegal 1151.3984
## 13449 SN Senegal 1151.5668
## 13450 SN Senegal 1169.0065
## 13451 SN Senegal 1157.1648
## 13452 SN Senegal 1167.7990
## 13453 SN Senegal 1201.8708
## 13454 SN Senegal 1199.1526
## 13455 RS Serbia 7089.8692
## 13456 RS Serbia 6549.3501
## 13457 RS Serbia 6567.9096
## 13458 RS Serbia 6261.5271
## 13459 RS Serbia 5959.5227
## 13460 RS Serbia 5805.8994
## 13461 RS Serbia 5588.9807
## 13462 RS Serbia 5462.7360
## 13463 RS Serbia 5524.9691
## 13464 RS Serbia 5343.5801
## 13465 RS Serbia 5354.2017
## 13466 RS Serbia 5206.0880
## 13467 RS Serbia 5147.5702
## 13468 RS Serbia 5270.9595
## 13469 RS Serbia 4967.6209
## 13470 RS Serbia 4648.1981
## 13471 RS Serbia 4404.9609
## 13472 RS Serbia 4161.5962
## 13473 RS Serbia 3808.0950
## 13474 RS Serbia 3640.2759
## 13475 RS Serbia 3418.7903
## 13476 RS Serbia 3193.2597
## 13477 RS Serbia 2999.1693
## 13478 RS Serbia 3299.2602
## 13479 RS Serbia 3180.5141
## 13480 RS Serbia 2958.4008
## 13481 RS Serbia 2781.2470
## 13482 RS Serbia NA
## 13483 RS Serbia NA
## 13484 RS Serbia NA
## 13485 RS Serbia NA
## 13486 RS Serbia NA
## 13487 RS Serbia NA
## 13488 RS Serbia NA
## 13489 RS Serbia NA
## 13490 RS Serbia NA
## 13491 RS Serbia NA
## 13492 RS Serbia NA
## 13493 RS Serbia NA
## 13494 RS Serbia NA
## 13495 RS Serbia NA
## 13496 RS Serbia NA
## 13497 RS Serbia NA
## 13498 RS Serbia NA
## 13499 RS Serbia NA
## 13500 RS Serbia NA
## 13501 RS Serbia NA
## 13502 RS Serbia NA
## 13503 RS Serbia NA
## 13504 RS Serbia NA
## 13505 RS Serbia NA
## 13506 RS Serbia NA
## 13507 RS Serbia NA
## 13508 RS Serbia NA
## 13509 RS Serbia NA
## 13510 RS Serbia NA
## 13511 RS Serbia NA
## 13512 RS Serbia NA
## 13513 RS Serbia NA
## 13514 RS Serbia NA
## 13515 RS Serbia NA
## 13516 RS Serbia NA
## 13517 SC Seychelles 15713.4587
## 13518 SC Seychelles 15544.4639
## 13519 SC Seychelles 16989.9587
## 13520 SC Seychelles 16628.0992
## 13521 SC Seychelles 16267.1714
## 13522 SC Seychelles 15756.7105
## 13523 SC Seychelles 15157.5018
## 13524 SC Seychelles 14672.1634
## 13525 SC Seychelles 14259.7849
## 13526 SC Seychelles 13701.0526
## 13527 SC Seychelles 13663.8410
## 13528 SC Seychelles 12336.3433
## 13529 SC Seychelles 11972.6993
## 13530 SC Seychelles 12154.1211
## 13531 SC Seychelles 12701.6749
## 13532 SC Seychelles 11561.7810
## 13533 SC Seychelles 10789.9395
## 13534 SC Seychelles 9944.4708
## 13535 SC Seychelles 10198.4121
## 13536 SC Seychelles 10714.4384
## 13537 SC Seychelles 10914.7023
## 13538 SC Seychelles 11178.1276
## 13539 SC Seychelles 11110.1120
## 13540 SC Seychelles 11122.2838
## 13541 SC Seychelles 10462.7178
## 13542 SC Seychelles 9455.2242
## 13543 SC Seychelles 9145.2532
## 13544 SC Seychelles 9357.9606
## 13545 SC Seychelles 9688.1559
## 13546 SC Seychelles 9314.9376
## 13547 SC Seychelles 8732.4148
## 13548 SC Seychelles 8611.7834
## 13549 SC Seychelles 8088.2955
## 13550 SC Seychelles 7317.3103
## 13551 SC Seychelles 6968.5805
## 13552 SC Seychelles 6964.0681
## 13553 SC Seychelles 7020.0291
## 13554 SC Seychelles 6368.6364
## 13555 SC Seychelles 6129.9224
## 13556 SC Seychelles 6228.9678
## 13557 SC Seychelles 6336.5596
## 13558 SC Seychelles 6988.1789
## 13559 SC Seychelles 7365.1912
## 13560 SC Seychelles 6415.4351
## 13561 SC Seychelles 5326.5706
## 13562 SC Seychelles 5798.3656
## 13563 SC Seychelles 5088.5886
## 13564 SC Seychelles 5047.2270
## 13565 SC Seychelles 5073.8308
## 13566 SC Seychelles 4724.2401
## 13567 SC Seychelles 4552.2909
## 13568 SC Seychelles 4009.6840
## 13569 SC Seychelles 3769.7986
## 13570 SC Seychelles 3860.5527
## 13571 SC Seychelles 3677.3884
## 13572 SC Seychelles 3749.9820
## 13573 SC Seychelles 3375.5552
## 13574 SC Seychelles 3498.5020
## 13575 SC Seychelles 3386.7783
## 13576 SC Seychelles 3154.2766
## 13577 SC Seychelles 2987.8393
## 13578 SC Seychelles 3230.7671
## 13579 SL Sierra Leone 629.9397
## 13580 SL Sierra Leone 623.8891
## 13581 SL Sierra Leone 649.7603
## 13582 SL Sierra Leone 630.4825
## 13583 SL Sierra Leone 622.5303
## 13584 SL Sierra Leone 610.4901
## 13585 SL Sierra Leone 588.2289
## 13586 SL Sierra Leone 757.1692
## 13587 SL Sierra Leone 740.3311
## 13588 SL Sierra Leone 627.1159
## 13589 SL Sierra Leone 556.8469
## 13590 SL Sierra Leone 535.8207
## 13591 SL Sierra Leone 520.2143
## 13592 SL Sierra Leone 515.5781
## 13593 SL Sierra Leone 500.9282
## 13594 SL Sierra Leone 476.3288
## 13595 SL Sierra Leone 471.8882
## 13596 SL Sierra Leone 469.1316
## 13597 SL Sierra Leone 459.8033
## 13598 SL Sierra Leone 440.5612
## 13599 SL Sierra Leone 364.0163
## 13600 SL Sierra Leone 403.0499
## 13601 SL Sierra Leone 388.2572
## 13602 SL Sierra Leone 403.4097
## 13603 SL Sierra Leone 400.5577
## 13604 SL Sierra Leone 427.8023
## 13605 SL Sierra Leone 421.2793
## 13606 SL Sierra Leone 457.2919
## 13607 SL Sierra Leone 464.3071
## 13608 SL Sierra Leone 456.0351
## 13609 SL Sierra Leone 562.9748
## 13610 SL Sierra Leone 553.7180
## 13611 SL Sierra Leone 543.9967
## 13612 SL Sierra Leone 552.7608
## 13613 SL Sierra Leone 612.3323
## 13614 SL Sierra Leone 588.7487
## 13615 SL Sierra Leone 598.5825
## 13616 SL Sierra Leone 648.8327
## 13617 SL Sierra Leone 638.4145
## 13618 SL Sierra Leone 666.8070
## 13619 SL Sierra Leone 650.3480
## 13620 SL Sierra Leone 646.2404
## 13621 SL Sierra Leone 630.3352
## 13622 SL Sierra Leone 616.6497
## 13623 SL Sierra Leone 615.5187
## 13624 SL Sierra Leone 628.6974
## 13625 SL Sierra Leone 645.1408
## 13626 SL Sierra Leone 648.0017
## 13627 SL Sierra Leone 639.1467
## 13628 SL Sierra Leone 637.8457
## 13629 SL Sierra Leone 644.8351
## 13630 SL Sierra Leone 635.4581
## 13631 SL Sierra Leone 596.2224
## 13632 SL Sierra Leone 559.6355
## 13633 SL Sierra Leone 558.5285
## 13634 SL Sierra Leone 568.2204
## 13635 SL Sierra Leone 568.3794
## 13636 SL Sierra Leone 539.2367
## 13637 SL Sierra Leone 513.7370
## 13638 SL Sierra Leone 513.2090
## 13639 SL Sierra Leone 498.5106
## 13640 SL Sierra Leone 496.9905
## 13641 SG Singapore 66176.3870
## 13642 SG Singapore 58982.4609
## 13643 SG Singapore 61340.1662
## 13644 SG Singapore 61373.6485
## 13645 SG Singapore 59484.6855
## 13646 SG Singapore 56885.7187
## 13647 SG Singapore 55646.6187
## 13648 SG Singapore 54682.9280
## 13649 SG Singapore 53299.9421
## 13650 SG Singapore 51680.2925
## 13651 SG Singapore 50714.4548
## 13652 SG Singapore 48752.9381
## 13653 SG Singapore 43332.6626
## 13654 SG Singapore 44602.3910
## 13655 SG Singapore 46179.6537
## 13656 SG Singapore 44160.2132
## 13657 SG Singapore 41799.2482
## 13658 SG Singapore 39857.3604
## 13659 SG Singapore 36710.4641
## 13660 SG Singapore 34599.4559
## 13661 SG Singapore 33598.4800
## 13662 SG Singapore 34890.7156
## 13663 SG Singapore 32557.6390
## 13664 SG Singapore 31043.6727
## 13665 SG Singapore 32835.8489
## 13666 SG Singapore 31349.8873
## 13667 SG Singapore 30380.4516
## 13668 SG Singapore 29220.8041
## 13669 SG Singapore 27140.4460
## 13670 SG Singapore 24973.8853
## 13671 SG Singapore 24133.1542
## 13672 SG Singapore 23273.1233
## 13673 SG Singapore 22032.2978
## 13674 SG Singapore 20596.3497
## 13675 SG Singapore 18987.0980
## 13676 SG Singapore 17396.3445
## 13677 SG Singapore 17149.6274
## 13678 SG Singapore 17280.6846
## 13679 SG Singapore 16187.2089
## 13680 SG Singapore 15106.5255
## 13681 SG Singapore 14737.5686
## 13682 SG Singapore 13954.1439
## 13683 SG Singapore 12834.3935
## 13684 SG Singapore 11863.9097
## 13685 SG Singapore 11141.7824
## 13686 SG Singapore 10572.7592
## 13687 SG Singapore 9974.4023
## 13688 SG Singapore 9732.9040
## 13689 SG Singapore 9325.7357
## 13690 SG Singapore 8590.7649
## 13691 SG Singapore 7723.0049
## 13692 SG Singapore 6997.3263
## 13693 SG Singapore 6237.3644
## 13694 SG Singapore 5562.4212
## 13695 SG Singapore 4984.8748
## 13696 SG Singapore 4529.6084
## 13697 SG Singapore 4214.5859
## 13698 SG Singapore 4004.5316
## 13699 SG Singapore 4240.0698
## 13700 SG Singapore 3951.8323
## 13701 SG Singapore 3777.4633
## 13702 SG Singapore 3612.0193
## 13703 SX Sint Maarten (Dutch part) NA
## 13704 SX Sint Maarten (Dutch part) NA
## 13705 SX Sint Maarten (Dutch part) NA
## 13706 SX Sint Maarten (Dutch part) 27093.7971
## 13707 SX Sint Maarten (Dutch part) 29237.8461
## 13708 SX Sint Maarten (Dutch part) 31507.8689
## 13709 SX Sint Maarten (Dutch part) 32274.8906
## 13710 SX Sint Maarten (Dutch part) 33118.7556
## 13711 SX Sint Maarten (Dutch part) 33563.6001
## 13712 SX Sint Maarten (Dutch part) 35011.9666
## 13713 SX Sint Maarten (Dutch part) 35776.3142
## 13714 SX Sint Maarten (Dutch part) 33579.2962
## 13715 SX Sint Maarten (Dutch part) 32365.1159
## 13716 SX Sint Maarten (Dutch part) NA
## 13717 SX Sint Maarten (Dutch part) NA
## 13718 SX Sint Maarten (Dutch part) NA
## 13719 SX Sint Maarten (Dutch part) NA
## 13720 SX Sint Maarten (Dutch part) NA
## 13721 SX Sint Maarten (Dutch part) NA
## 13722 SX Sint Maarten (Dutch part) NA
## 13723 SX Sint Maarten (Dutch part) NA
## 13724 SX Sint Maarten (Dutch part) NA
## 13725 SX Sint Maarten (Dutch part) NA
## 13726 SX Sint Maarten (Dutch part) NA
## 13727 SX Sint Maarten (Dutch part) NA
## 13728 SX Sint Maarten (Dutch part) NA
## 13729 SX Sint Maarten (Dutch part) NA
## 13730 SX Sint Maarten (Dutch part) NA
## 13731 SX Sint Maarten (Dutch part) NA
## 13732 SX Sint Maarten (Dutch part) NA
## 13733 SX Sint Maarten (Dutch part) NA
## 13734 SX Sint Maarten (Dutch part) NA
## 13735 SX Sint Maarten (Dutch part) NA
## 13736 SX Sint Maarten (Dutch part) NA
## 13737 SX Sint Maarten (Dutch part) NA
## 13738 SX Sint Maarten (Dutch part) NA
## 13739 SX Sint Maarten (Dutch part) NA
## 13740 SX Sint Maarten (Dutch part) NA
## 13741 SX Sint Maarten (Dutch part) NA
## 13742 SX Sint Maarten (Dutch part) NA
## 13743 SX Sint Maarten (Dutch part) NA
## 13744 SX Sint Maarten (Dutch part) NA
## 13745 SX Sint Maarten (Dutch part) NA
## 13746 SX Sint Maarten (Dutch part) NA
## 13747 SX Sint Maarten (Dutch part) NA
## 13748 SX Sint Maarten (Dutch part) NA
## 13749 SX Sint Maarten (Dutch part) NA
## 13750 SX Sint Maarten (Dutch part) NA
## 13751 SX Sint Maarten (Dutch part) NA
## 13752 SX Sint Maarten (Dutch part) NA
## 13753 SX Sint Maarten (Dutch part) NA
## 13754 SX Sint Maarten (Dutch part) NA
## 13755 SX Sint Maarten (Dutch part) NA
## 13756 SX Sint Maarten (Dutch part) NA
## 13757 SX Sint Maarten (Dutch part) NA
## 13758 SX Sint Maarten (Dutch part) NA
## 13759 SX Sint Maarten (Dutch part) NA
## 13760 SX Sint Maarten (Dutch part) NA
## 13761 SX Sint Maarten (Dutch part) NA
## 13762 SX Sint Maarten (Dutch part) NA
## 13763 SX Sint Maarten (Dutch part) NA
## 13764 SX Sint Maarten (Dutch part) NA
## 13765 SK Slovak Republic 17923.1075
## 13766 SK Slovak Republic 17360.7112
## 13767 SK Slovak Republic 18167.4837
## 13768 SK Slovak Republic 17730.1501
## 13769 SK Slovak Republic 17105.6657
## 13770 SK Slovak Republic 16636.4338
## 13771 SK Slovak Republic 16342.2163
## 13772 SK Slovak Republic 15546.8833
## 13773 SK Slovak Republic 15149.2558
## 13774 SK Slovak Republic 15066.8909
## 13775 SK Slovak Republic 14890.3099
## 13776 SK Slovak Republic 14526.4023
## 13777 SK Slovak Republic 13679.0821
## 13778 SK Slovak Republic 14487.7043
## 13779 SK Slovak Republic 13734.4533
## 13780 SK Slovak Republic 12395.7501
## 13781 SK Slovak Republic 11425.8983
## 13782 SK Slovak Republic 10717.1713
## 13783 SK Slovak Republic 10177.7198
## 13784 SK Slovak Republic 9640.8637
## 13785 SK Slovak Republic 9221.5204
## 13786 SK Slovak Republic 8914.5975
## 13787 SK Slovak Republic 8799.8842
## 13788 SK Slovak Republic 8818.2094
## 13789 SK Slovak Republic 8484.2193
## 13790 SK Slovak Republic 8024.3861
## 13791 SK Slovak Republic 7542.1098
## 13792 SK Slovak Republic 7146.6014
## 13793 SK Slovak Republic 6755.5979
## 13794 SK Slovak Republic 6654.9031
## 13795 SK Slovak Republic NA
## 13796 SK Slovak Republic NA
## 13797 SK Slovak Republic NA
## 13798 SK Slovak Republic NA
## 13799 SK Slovak Republic NA
## 13800 SK Slovak Republic NA
## 13801 SK Slovak Republic NA
## 13802 SK Slovak Republic NA
## 13803 SK Slovak Republic NA
## 13804 SK Slovak Republic NA
## 13805 SK Slovak Republic NA
## 13806 SK Slovak Republic NA
## 13807 SK Slovak Republic NA
## 13808 SK Slovak Republic NA
## 13809 SK Slovak Republic NA
## 13810 SK Slovak Republic NA
## 13811 SK Slovak Republic NA
## 13812 SK Slovak Republic NA
## 13813 SK Slovak Republic NA
## 13814 SK Slovak Republic NA
## 13815 SK Slovak Republic NA
## 13816 SK Slovak Republic NA
## 13817 SK Slovak Republic NA
## 13818 SK Slovak Republic NA
## 13819 SK Slovak Republic NA
## 13820 SK Slovak Republic NA
## 13821 SK Slovak Republic NA
## 13822 SK Slovak Republic NA
## 13823 SK Slovak Republic NA
## 13824 SK Slovak Republic NA
## 13825 SK Slovak Republic NA
## 13826 SK Slovak Republic NA
## 13827 SI Slovenia 24703.6332
## 13828 SI Slovenia 22899.3607
## 13829 SI Slovenia 24071.2824
## 13830 SI Slovenia 23476.3699
## 13831 SI Slovenia 22563.7589
## 13832 SI Slovenia 21541.1764
## 13833 SI Slovenia 20890.1664
## 13834 SI Slovenia 20453.8334
## 13835 SI Slovenia 19922.4743
## 13836 SI Slovenia 20157.0053
## 13837 SI Slovenia 20746.9884
## 13838 SI Slovenia 20612.5895
## 13839 SI Slovenia 20428.1699
## 13840 SI Slovenia 22296.7050
## 13841 SI Slovenia 21574.7534
## 13842 SI Slovenia 20280.1519
## 13843 SI Slovenia 19239.3999
## 13844 SI Slovenia 18567.5622
## 13845 SI Slovenia 17803.3780
## 13846 SI Slovenia 17301.9338
## 13847 SI Slovenia 16736.6666
## 13848 SI Slovenia 16240.6569
## 13849 SI Slovenia 15711.8164
## 13850 SI Slovenia 14927.0345
## 13851 SI Slovenia 14421.5753
## 13852 SI Slovenia 13709.8774
## 13853 SI Slovenia 13276.0731
## 13854 SI Slovenia NA
## 13855 SI Slovenia NA
## 13856 SI Slovenia NA
## 13857 SI Slovenia NA
## 13858 SI Slovenia NA
## 13859 SI Slovenia NA
## 13860 SI Slovenia NA
## 13861 SI Slovenia NA
## 13862 SI Slovenia NA
## 13863 SI Slovenia NA
## 13864 SI Slovenia NA
## 13865 SI Slovenia NA
## 13866 SI Slovenia NA
## 13867 SI Slovenia NA
## 13868 SI Slovenia NA
## 13869 SI Slovenia NA
## 13870 SI Slovenia NA
## 13871 SI Slovenia NA
## 13872 SI Slovenia NA
## 13873 SI Slovenia NA
## 13874 SI Slovenia NA
## 13875 SI Slovenia NA
## 13876 SI Slovenia NA
## 13877 SI Slovenia NA
## 13878 SI Slovenia NA
## 13879 SI Slovenia NA
## 13880 SI Slovenia NA
## 13881 SI Slovenia NA
## 13882 SI Slovenia NA
## 13883 SI Slovenia NA
## 13884 SI Slovenia NA
## 13885 SI Slovenia NA
## 13886 SI Slovenia NA
## 13887 SI Slovenia NA
## 13888 SI Slovenia NA
## 13889 SB Solomon Islands 2080.5940
## 13890 SB Solomon Islands 2136.2291
## 13891 SB Solomon Islands 2289.5289
## 13892 SB Solomon Islands 2321.0677
## 13893 SB Solomon Islands 2292.0909
## 13894 SB Solomon Islands 2234.0409
## 13895 SB Solomon Islands 2167.1554
## 13896 SB Solomon Islands 2195.3095
## 13897 SB Solomon Islands 2232.3884
## 13898 SB Solomon Islands 2177.5619
## 13899 SB Solomon Islands 2195.1151
## 13900 SB Solomon Islands 2099.3698
## 13901 SB Solomon Islands 1980.4062
## 13902 SB Solomon Islands 1976.1182
## 13903 SB Solomon Islands 1910.3176
## 13904 SB Solomon Islands 1871.0660
## 13905 SB Solomon Islands 1826.5052
## 13906 SB Solomon Islands 1773.7672
## 13907 SB Solomon Islands 1705.8031
## 13908 SB Solomon Islands 1643.9338
## 13909 SB Solomon Islands 1737.1076
## 13910 SB Solomon Islands 1938.8762
## 13911 SB Solomon Islands 2324.1561
## 13912 SB Solomon Islands 2400.5975
## 13913 SB Solomon Islands 2436.7480
## 13914 SB Solomon Islands 2528.9809
## 13915 SB Solomon Islands 2559.8570
## 13916 SB Solomon Islands 2391.8641
## 13917 SB Solomon Islands 2276.3275
## 13918 SB Solomon Islands 2251.7660
## 13919 SB Solomon Islands 2055.4642
## 13920 SB Solomon Islands 1994.5296
## 13921 SB Solomon Islands 2006.9173
## 13922 SB Solomon Islands 1978.9720
## 13923 SB Solomon Islands 2009.7583
## 13924 SB Solomon Islands 1907.0852
## 13925 SB Solomon Islands 1967.7218
## 13926 SB Solomon Islands 2093.9554
## 13927 SB Solomon Islands 2157.1169
## 13928 SB Solomon Islands 2144.7035
## 13929 SB Solomon Islands 2254.5597
## 13930 SB Solomon Islands 2374.2153
## 13931 SB Solomon Islands NA
## 13932 SB Solomon Islands NA
## 13933 SB Solomon Islands NA
## 13934 SB Solomon Islands NA
## 13935 SB Solomon Islands NA
## 13936 SB Solomon Islands NA
## 13937 SB Solomon Islands NA
## 13938 SB Solomon Islands NA
## 13939 SB Solomon Islands NA
## 13940 SB Solomon Islands NA
## 13941 SB Solomon Islands NA
## 13942 SB Solomon Islands NA
## 13943 SB Solomon Islands NA
## 13944 SB Solomon Islands NA
## 13945 SB Solomon Islands NA
## 13946 SB Solomon Islands NA
## 13947 SB Solomon Islands NA
## 13948 SB Solomon Islands NA
## 13949 SB Solomon Islands NA
## 13950 SB Solomon Islands NA
## 13951 SO Somalia 446.5194
## 13952 SO Somalia 444.7884
## 13953 SO Somalia 446.8542
## 13954 SO Somalia 425.4166
## 13955 SO Somalia 406.4272
## 13956 SO Somalia 407.4259
## 13957 SO Somalia 386.4378
## 13958 SO Somalia 345.7008
## 13959 SO Somalia 330.4188
## 13960 SO Somalia NA
## 13961 SO Somalia NA
## 13962 SO Somalia NA
## 13963 SO Somalia NA
## 13964 SO Somalia NA
## 13965 SO Somalia NA
## 13966 SO Somalia NA
## 13967 SO Somalia NA
## 13968 SO Somalia NA
## 13969 SO Somalia NA
## 13970 SO Somalia NA
## 13971 SO Somalia NA
## 13972 SO Somalia NA
## 13973 SO Somalia NA
## 13974 SO Somalia NA
## 13975 SO Somalia NA
## 13976 SO Somalia NA
## 13977 SO Somalia NA
## 13978 SO Somalia NA
## 13979 SO Somalia NA
## 13980 SO Somalia NA
## 13981 SO Somalia NA
## 13982 SO Somalia NA
## 13983 SO Somalia NA
## 13984 SO Somalia NA
## 13985 SO Somalia NA
## 13986 SO Somalia NA
## 13987 SO Somalia NA
## 13988 SO Somalia NA
## 13989 SO Somalia NA
## 13990 SO Somalia NA
## 13991 SO Somalia NA
## 13992 SO Somalia NA
## 13993 SO Somalia NA
## 13994 SO Somalia NA
## 13995 SO Somalia NA
## 13996 SO Somalia NA
## 13997 SO Somalia NA
## 13998 SO Somalia NA
## 13999 SO Somalia NA
## 14000 SO Somalia NA
## 14001 SO Somalia NA
## 14002 SO Somalia NA
## 14003 SO Somalia NA
## 14004 SO Somalia NA
## 14005 SO Somalia NA
## 14006 SO Somalia NA
## 14007 SO Somalia NA
## 14008 SO Somalia NA
## 14009 SO Somalia NA
## 14010 SO Somalia NA
## 14011 SO Somalia NA
## 14012 SO Somalia NA
## 14013 ZA South Africa 5864.8205
## 14014 ZA South Africa 5659.2069
## 14015 ZA South Africa 6125.7353
## 14016 ZA South Africa 6199.8917
## 14017 ZA South Africa 6192.8924
## 14018 ZA South Africa 6209.3659
## 14019 ZA South Africa 6259.8397
## 14020 ZA South Africa 6273.5663
## 14021 ZA South Africa 6284.8602
## 14022 ZA South Africa 6231.6208
## 14023 ZA South Africa 6182.7939
## 14024 ZA South Africa 6084.9680
## 14025 ZA South Africa 5992.0273
## 14026 ZA South Africa 6170.9053
## 14027 ZA South Africa 6060.3942
## 14028 ZA South Africa 5826.8262
## 14029 ZA South Africa 5587.7934
## 14030 ZA South Africa 5373.8070
## 14031 ZA South Africa 5202.6877
## 14032 ZA South Africa 5115.8810
## 14033 ZA South Africa 4996.0785
## 14034 ZA South Africa 4930.0255
## 14035 ZA South Africa 4798.4475
## 14036 ZA South Africa 4756.3872
## 14037 ZA South Africa 4809.2182
## 14038 ZA South Africa 4770.1782
## 14039 ZA South Africa 4662.3969
## 14040 ZA South Africa 4619.3882
## 14041 ZA South Africa 4581.2183
## 14042 ZA South Africa 4637.8660
## 14043 ZA South Africa 4858.9642
## 14044 ZA South Africa 5031.4639
## 14045 ZA South Africa 5169.7850
## 14046 ZA South Africa 5168.1390
## 14047 ZA South Africa 5075.9692
## 14048 ZA South Africa 5090.5312
## 14049 ZA South Africa 5216.8801
## 14050 ZA South Africa 5419.7223
## 14051 ZA South Africa 5297.8328
## 14052 ZA South Africa 5548.4700
## 14053 ZA South Africa 5725.0263
## 14054 ZA South Africa 5581.4528
## 14055 ZA South Africa 5372.0969
## 14056 ZA South Africa 5307.1861
## 14057 ZA South Africa 5279.9080
## 14058 ZA South Africa 5416.6085
## 14059 ZA South Africa 5432.3460
## 14060 ZA South Africa 5481.5966
## 14061 ZA South Africa 5304.0413
## 14062 ZA South Africa 5209.7410
## 14063 ZA South Africa 5264.2753
## 14064 ZA South Africa 5184.4745
## 14065 ZA South Africa 5057.3971
## 14066 ZA South Africa 4957.3820
## 14067 ZA South Africa 4884.5437
## 14068 ZA South Africa 4675.4432
## 14069 ZA South Africa 4593.0082
## 14070 ZA South Africa 4439.9069
## 14071 ZA South Africa 4218.9639
## 14072 ZA South Africa 4029.2755
## 14073 ZA South Africa 3890.3726
## 14074 ZA South Africa 3839.3811
## 14075 SS South Sudan NA
## 14076 SS South Sudan NA
## 14077 SS South Sudan NA
## 14078 SS South Sudan NA
## 14079 SS South Sudan NA
## 14080 SS South Sudan NA
## 14081 SS South Sudan 1119.6514
## 14082 SS South Sudan 1274.2396
## 14083 SS South Sudan 1256.4444
## 14084 SS South Sudan 1137.1298
## 14085 SS South Sudan 2169.7059
## 14086 SS South Sudan 2352.4160
## 14087 SS South Sudan 2319.2174
## 14088 SS South Sudan 2310.3325
## 14089 SS South Sudan NA
## 14090 SS South Sudan NA
## 14091 SS South Sudan NA
## 14092 SS South Sudan NA
## 14093 SS South Sudan NA
## 14094 SS South Sudan NA
## 14095 SS South Sudan NA
## 14096 SS South Sudan NA
## 14097 SS South Sudan NA
## 14098 SS South Sudan NA
## 14099 SS South Sudan NA
## 14100 SS South Sudan NA
## 14101 SS South Sudan NA
## 14102 SS South Sudan NA
## 14103 SS South Sudan NA
## 14104 SS South Sudan NA
## 14105 SS South Sudan NA
## 14106 SS South Sudan NA
## 14107 SS South Sudan NA
## 14108 SS South Sudan NA
## 14109 SS South Sudan NA
## 14110 SS South Sudan NA
## 14111 SS South Sudan NA
## 14112 SS South Sudan NA
## 14113 SS South Sudan NA
## 14114 SS South Sudan NA
## 14115 SS South Sudan NA
## 14116 SS South Sudan NA
## 14117 SS South Sudan NA
## 14118 SS South Sudan NA
## 14119 SS South Sudan NA
## 14120 SS South Sudan NA
## 14121 SS South Sudan NA
## 14122 SS South Sudan NA
## 14123 SS South Sudan NA
## 14124 SS South Sudan NA
## 14125 SS South Sudan NA
## 14126 SS South Sudan NA
## 14127 SS South Sudan NA
## 14128 SS South Sudan NA
## 14129 SS South Sudan NA
## 14130 SS South Sudan NA
## 14131 SS South Sudan NA
## 14132 SS South Sudan NA
## 14133 SS South Sudan NA
## 14134 SS South Sudan NA
## 14135 SS South Sudan NA
## 14136 SS South Sudan NA
## 14137 ES Spain 26238.7808
## 14138 ES Spain 24939.1873
## 14139 ES Spain 28101.5271
## 14140 ES Spain 27725.8055
## 14141 ES Spain 27224.3980
## 14142 ES Spain 26500.3139
## 14143 ES Spain 25742.3688
## 14144 ES Spain 24772.3413
## 14145 ES Spain 24361.2573
## 14146 ES Spain 24635.1756
## 14147 ES Spain 25402.9611
## 14148 ES Spain 25702.7042
## 14149 ES Spain 25779.2915
## 14150 ES Spain 27025.6812
## 14151 ES Spain 27218.8172
## 14152 ES Spain 26762.6421
## 14153 ES Spain 26146.1644
## 14154 ES Spain 25654.6984
## 14155 ES Spain 25310.7983
## 14156 ES Spain 25026.4346
## 14157 ES Spain 24707.6930
## 14158 ES Spain 23938.2967
## 14159 ES Spain 22847.0199
## 14160 ES Spain 21953.9709
## 14161 ES Spain 21117.3233
## 14162 ES Spain 20448.8796
## 14163 ES Spain 20002.0701
## 14164 ES Spain 19551.4183
## 14165 ES Spain 19187.4502
## 14166 ES Spain 19488.2234
## 14167 ES Spain 19403.6013
## 14168 ES Spain 18970.0735
## 14169 ES Spain 18297.4999
## 14170 ES Spain 17482.3311
## 14171 ES Spain 16670.2098
## 14172 ES Spain 15835.1040
## 14173 ES Spain 15382.0593
## 14174 ES Spain 15087.6497
## 14175 ES Spain 14884.7853
## 14176 ES Spain 14697.3189
## 14177 ES Spain 14603.7949
## 14178 ES Spain 14727.4892
## 14179 ES Spain 14525.3951
## 14180 ES Spain 14647.9292
## 14181 ES Spain 14576.3987
## 14182 ES Spain 14320.6804
## 14183 ES Spain 14009.9711
## 14184 ES Spain 14085.9078
## 14185 ES Spain 13483.0705
## 14186 ES Spain 12647.8061
## 14187 ES Spain 11824.5576
## 14188 ES Spain 11436.1928
## 14189 ES Spain 11088.1617
## 14190 ES Spain 10282.1365
## 14191 ES Spain 9772.7632
## 14192 ES Spain 9482.2161
## 14193 ES Spain 8932.5570
## 14194 ES Spain 8498.6474
## 14195 ES Spain 8150.8314
## 14196 ES Spain 7502.6412
## 14197 ES Spain 6886.5391
## 14198 ES Spain 6215.0363
## 14199 LK Sri Lanka 4156.9681
## 14200 LK Sri Lanka 4053.7262
## 14201 LK Sri Lanka 4228.1492
## 14202 LK Sri Lanka 4157.2839
## 14203 LK Sri Lanka 4067.9931
## 14204 LK Sri Lanka 3972.1026
## 14205 LK Sri Lanka 3843.7807
## 14206 LK Sri Lanka 3694.3004
## 14207 LK Sri Lanka 3552.6986
## 14208 LK Sri Lanka 3462.9367
## 14209 LK Sri Lanka 3176.9203
## 14210 LK Sri Lanka 2950.3907
## 14211 LK Sri Lanka 2750.2019
## 14212 LK Sri Lanka 2674.7463
## 14213 LK Sri Lanka 2542.5936
## 14214 LK Sri Lanka 2398.4324
## 14215 LK Sri Lanka 2244.8213
## 14216 LK Sri Lanka 2130.1390
## 14217 LK Sri Lanka 2037.2820
## 14218 LK Sri Lanka 1939.3462
## 14219 LK Sri Lanka 1880.2589
## 14220 LK Sri Lanka 1923.4135
## 14221 LK Sri Lanka 1825.6545
## 14222 LK Sri Lanka 1759.6846
## 14223 LK Sri Lanka 1689.2432
## 14224 LK Sri Lanka 1596.5092
## 14225 LK Sri Lanka 1548.5492
## 14226 LK Sri Lanka 1479.8596
## 14227 LK Sri Lanka 1414.6465
## 14228 LK Sri Lanka 1337.3621
## 14229 LK Sri Lanka 1295.6884
## 14230 LK Sri Lanka 1253.7193
## 14231 LK Sri Lanka 1193.3935
## 14232 LK Sri Lanka 1182.3684
## 14233 LK Sri Lanka 1170.0755
## 14234 LK Sri Lanka 1166.7067
## 14235 LK Sri Lanka 1134.0858
## 14236 LK Sri Lanka 1095.5139
## 14237 LK Sri Lanka 1057.2017
## 14238 LK Sri Lanka 1023.1839
## 14239 LK Sri Lanka 997.1861
## 14240 LK Sri Lanka 958.2852
## 14241 LK Sri Lanka 920.4772
## 14242 LK Sri Lanka 880.2699
## 14243 LK Sri Lanka 848.3521
## 14244 LK Sri Lanka 822.1925
## 14245 LK Sri Lanka 810.5660
## 14246 LK Sri Lanka 778.0989
## 14247 LK Sri Lanka 763.4122
## 14248 LK Sri Lanka 726.7867
## 14249 LK Sri Lanka 744.3462
## 14250 LK Sri Lanka 750.1673
## 14251 LK Sri Lanka 738.3941
## 14252 LK Sri Lanka 701.4215
## 14253 LK Sri Lanka 678.8833
## 14254 LK Sri Lanka 653.3376
## 14255 LK Sri Lanka 637.1934
## 14256 LK Sri Lanka 636.3681
## 14257 LK Sri Lanka 627.0334
## 14258 LK Sri Lanka 626.1352
## 14259 LK Sri Lanka 617.4554
## 14260 LK Sri Lanka NA
## 14261 KN St. Kitts and Nevis 17112.2076
## 14262 KN St. Kitts and Nevis 17404.4136
## 14263 KN St. Kitts and Nevis 20472.3844
## 14264 KN St. Kitts and Nevis 19681.4914
## 14265 KN St. Kitts and Nevis 19317.7874
## 14266 KN St. Kitts and Nevis 19288.0577
## 14267 KN St. Kitts and Nevis 18717.4288
## 14268 KN St. Kitts and Nevis 18740.9030
## 14269 KN St. Kitts and Nevis 17574.3069
## 14270 KN St. Kitts and Nevis 16774.6987
## 14271 KN St. Kitts and Nevis 17011.5776
## 14272 KN St. Kitts and Nevis 16888.1393
## 14273 KN St. Kitts and Nevis 17023.8704
## 14274 KN St. Kitts and Nevis 17773.2447
## 14275 KN St. Kitts and Nevis 16123.0952
## 14276 KN St. Kitts and Nevis 16174.4661
## 14277 KN St. Kitts and Nevis 15841.4530
## 14278 KN St. Kitts and Nevis 14601.2463
## 14279 KN St. Kitts and Nevis 14216.3111
## 14280 KN St. Kitts and Nevis 14988.7432
## 14281 KN St. Kitts and Nevis 14974.1469
## 14282 KN St. Kitts and Nevis 14394.2467
## 14283 KN St. Kitts and Nevis 13218.8247
## 14284 KN St. Kitts and Nevis 12924.0919
## 14285 KN St. Kitts and Nevis 13098.8251
## 14286 KN St. Kitts and Nevis 12373.2190
## 14287 KN St. Kitts and Nevis 11799.9228
## 14288 KN St. Kitts and Nevis 11320.6557
## 14289 KN St. Kitts and Nevis 10875.3310
## 14290 KN St. Kitts and Nevis 10295.3185
## 14291 KN St. Kitts and Nevis 9949.6082
## 14292 KN St. Kitts and Nevis 10169.1341
## 14293 KN St. Kitts and Nevis 9673.6386
## 14294 KN St. Kitts and Nevis 9108.1104
## 14295 KN St. Kitts and Nevis 8255.9242
## 14296 KN St. Kitts and Nevis 7666.5592
## 14297 KN St. Kitts and Nevis 6850.4835
## 14298 KN St. Kitts and Nevis 6262.4418
## 14299 KN St. Kitts and Nevis 5714.6579
## 14300 KN St. Kitts and Nevis 5613.8030
## 14301 KN St. Kitts and Nevis 5553.3321
## 14302 KN St. Kitts and Nevis 5438.6081
## 14303 KN St. Kitts and Nevis 4986.3390
## 14304 KN St. Kitts and Nevis 4607.6283
## 14305 KN St. Kitts and Nevis 4409.9346
## 14306 KN St. Kitts and Nevis NA
## 14307 KN St. Kitts and Nevis NA
## 14308 KN St. Kitts and Nevis NA
## 14309 KN St. Kitts and Nevis NA
## 14310 KN St. Kitts and Nevis NA
## 14311 KN St. Kitts and Nevis NA
## 14312 KN St. Kitts and Nevis NA
## 14313 KN St. Kitts and Nevis NA
## 14314 KN St. Kitts and Nevis NA
## 14315 KN St. Kitts and Nevis NA
## 14316 KN St. Kitts and Nevis NA
## 14317 KN St. Kitts and Nevis NA
## 14318 KN St. Kitts and Nevis NA
## 14319 KN St. Kitts and Nevis NA
## 14320 KN St. Kitts and Nevis NA
## 14321 KN St. Kitts and Nevis NA
## 14322 KN St. Kitts and Nevis NA
## 14323 LC St. Lucia 9183.6709
## 14324 LC St. Lucia 8651.3493
## 14325 LC St. Lucia 10914.5027
## 14326 LC St. Lucia 10975.8265
## 14327 LC St. Lucia 10718.8600
## 14328 LC St. Lucia 10409.5373
## 14329 LC St. Lucia 10093.6180
## 14330 LC St. Lucia 10280.1226
## 14331 LC St. Lucia 10148.0989
## 14332 LC St. Lucia 10531.2885
## 14333 LC St. Lucia 10619.4653
## 14334 LC St. Lucia 10151.0465
## 14335 LC St. Lucia 10099.2300
## 14336 LC St. Lucia 10528.4702
## 14337 LC St. Lucia 10173.5996
## 14338 LC St. Lucia 10141.4431
## 14339 LC St. Lucia 9664.9377
## 14340 LC St. Lucia 9799.9326
## 14341 LC St. Lucia 9209.4559
## 14342 LC St. Lucia 8895.8353
## 14343 LC St. Lucia 8926.5950
## 14344 LC St. Lucia 9326.8713
## 14345 LC St. Lucia 9427.5269
## 14346 LC St. Lucia 9300.2158
## 14347 LC St. Lucia 8872.0699
## 14348 LC St. Lucia 9059.1181
## 14349 LC St. Lucia 8919.6966
## 14350 LC St. Lucia 8874.6603
## 14351 LC St. Lucia 8837.2375
## 14352 LC St. Lucia 8887.8908
## 14353 LC St. Lucia 8336.4304
## 14354 LC St. Lucia 8424.4954
## 14355 LC St. Lucia 7792.2636
## 14356 LC St. Lucia 7280.0173
## 14357 LC St. Lucia 6513.5105
## 14358 LC St. Lucia 6385.6705
## 14359 LC St. Lucia 5679.1395
## 14360 LC St. Lucia 5326.7660
## 14361 LC St. Lucia 5035.8488
## 14362 LC St. Lucia 4860.4402
## 14363 LC St. Lucia 4822.9755
## 14364 LC St. Lucia 4598.5722
## 14365 LC St. Lucia 4771.0294
## 14366 LC St. Lucia 4667.0069
## 14367 LC St. Lucia 4295.0502
## 14368 LC St. Lucia NA
## 14369 LC St. Lucia NA
## 14370 LC St. Lucia NA
## 14371 LC St. Lucia NA
## 14372 LC St. Lucia NA
## 14373 LC St. Lucia NA
## 14374 LC St. Lucia NA
## 14375 LC St. Lucia NA
## 14376 LC St. Lucia NA
## 14377 LC St. Lucia NA
## 14378 LC St. Lucia NA
## 14379 LC St. Lucia NA
## 14380 LC St. Lucia NA
## 14381 LC St. Lucia NA
## 14382 LC St. Lucia NA
## 14383 LC St. Lucia NA
## 14384 LC St. Lucia NA
## 14385 MF St. Martin (French part) NA
## 14386 MF St. Martin (French part) NA
## 14387 MF St. Martin (French part) NA
## 14388 MF St. Martin (French part) NA
## 14389 MF St. Martin (French part) NA
## 14390 MF St. Martin (French part) NA
## 14391 MF St. Martin (French part) NA
## 14392 MF St. Martin (French part) NA
## 14393 MF St. Martin (French part) NA
## 14394 MF St. Martin (French part) NA
## 14395 MF St. Martin (French part) NA
## 14396 MF St. Martin (French part) NA
## 14397 MF St. Martin (French part) NA
## 14398 MF St. Martin (French part) NA
## 14399 MF St. Martin (French part) NA
## 14400 MF St. Martin (French part) NA
## 14401 MF St. Martin (French part) NA
## 14402 MF St. Martin (French part) NA
## 14403 MF St. Martin (French part) NA
## 14404 MF St. Martin (French part) NA
## 14405 MF St. Martin (French part) NA
## 14406 MF St. Martin (French part) NA
## 14407 MF St. Martin (French part) NA
## 14408 MF St. Martin (French part) NA
## 14409 MF St. Martin (French part) NA
## 14410 MF St. Martin (French part) NA
## 14411 MF St. Martin (French part) NA
## 14412 MF St. Martin (French part) NA
## 14413 MF St. Martin (French part) NA
## 14414 MF St. Martin (French part) NA
## 14415 MF St. Martin (French part) NA
## 14416 MF St. Martin (French part) NA
## 14417 MF St. Martin (French part) NA
## 14418 MF St. Martin (French part) NA
## 14419 MF St. Martin (French part) NA
## 14420 MF St. Martin (French part) NA
## 14421 MF St. Martin (French part) NA
## 14422 MF St. Martin (French part) NA
## 14423 MF St. Martin (French part) NA
## 14424 MF St. Martin (French part) NA
## 14425 MF St. Martin (French part) NA
## 14426 MF St. Martin (French part) NA
## 14427 MF St. Martin (French part) NA
## 14428 MF St. Martin (French part) NA
## 14429 MF St. Martin (French part) NA
## 14430 MF St. Martin (French part) NA
## 14431 MF St. Martin (French part) NA
## 14432 MF St. Martin (French part) NA
## 14433 MF St. Martin (French part) NA
## 14434 MF St. Martin (French part) NA
## 14435 MF St. Martin (French part) NA
## 14436 MF St. Martin (French part) NA
## 14437 MF St. Martin (French part) NA
## 14438 MF St. Martin (French part) NA
## 14439 MF St. Martin (French part) NA
## 14440 MF St. Martin (French part) NA
## 14441 MF St. Martin (French part) NA
## 14442 MF St. Martin (French part) NA
## 14443 MF St. Martin (French part) NA
## 14444 MF St. Martin (French part) NA
## 14445 MF St. Martin (French part) NA
## 14446 MF St. Martin (French part) NA
## 14447 VC St. Vincent and the Grenadines 7387.2708
## 14448 VC St. Vincent and the Grenadines 7354.6462
## 14449 VC St. Vincent and the Grenadines 7792.1577
## 14450 VC St. Vincent and the Grenadines 7787.7734
## 14451 VC St. Vincent and the Grenadines 7583.5276
## 14452 VC St. Vincent and the Grenadines 7483.4715
## 14453 VC St. Vincent and the Grenadines 7207.1708
## 14454 VC St. Vincent and the Grenadines 7029.0711
## 14455 VC St. Vincent and the Grenadines 6965.0578
## 14456 VC St. Vincent and the Grenadines 6809.5146
## 14457 VC St. Vincent and the Grenadines 6738.2806
## 14458 VC St. Vincent and the Grenadines 6782.8265
## 14459 VC St. Vincent and the Grenadines 7098.0769
## 14460 VC St. Vincent and the Grenadines 7190.0986
## 14461 VC St. Vincent and the Grenadines 7153.5329
## 14462 VC St. Vincent and the Grenadines 6917.9856
## 14463 VC St. Vincent and the Grenadines 6464.6997
## 14464 VC St. Vincent and the Grenadines 6313.3665
## 14465 VC St. Vincent and the Grenadines 6074.9412
## 14466 VC St. Vincent and the Grenadines 5705.8978
## 14467 VC St. Vincent and the Grenadines 5426.6805
## 14468 VC St. Vincent and the Grenadines 5338.6844
## 14469 VC St. Vincent and the Grenadines 5253.7625
## 14470 VC St. Vincent and the Grenadines 5113.0393
## 14471 VC St. Vincent and the Grenadines 4908.1172
## 14472 VC St. Vincent and the Grenadines 4738.0418
## 14473 VC St. Vincent and the Grenadines 4675.1984
## 14474 VC St. Vincent and the Grenadines 4337.6184
## 14475 VC St. Vincent and the Grenadines 4393.3545
## 14476 VC St. Vincent and the Grenadines 4217.9282
## 14477 VC St. Vincent and the Grenadines 3971.2579
## 14478 VC St. Vincent and the Grenadines 3937.0060
## 14479 VC St. Vincent and the Grenadines 3794.9176
## 14480 VC St. Vincent and the Grenadines 3761.2142
## 14481 VC St. Vincent and the Grenadines 3316.7020
## 14482 VC St. Vincent and the Grenadines 3323.8309
## 14483 VC St. Vincent and the Grenadines 3169.0802
## 14484 VC St. Vincent and the Grenadines 3005.5573
## 14485 VC St. Vincent and the Grenadines 2840.1130
## 14486 VC St. Vincent and the Grenadines 2801.0342
## 14487 VC St. Vincent and the Grenadines 2702.5762
## 14488 VC St. Vincent and the Grenadines 2605.8074
## 14489 VC St. Vincent and the Grenadines 2567.0802
## 14490 VC St. Vincent and the Grenadines 2507.2763
## 14491 VC St. Vincent and the Grenadines 2306.8704
## 14492 VC St. Vincent and the Grenadines 2058.7070
## 14493 VC St. Vincent and the Grenadines 1885.2247
## 14494 VC St. Vincent and the Grenadines 2063.0578
## 14495 VC St. Vincent and the Grenadines 2288.2465
## 14496 VC St. Vincent and the Grenadines 2603.1534
## 14497 VC St. Vincent and the Grenadines 2091.8483
## 14498 VC St. Vincent and the Grenadines 2053.7517
## 14499 VC St. Vincent and the Grenadines 1873.8524
## 14500 VC St. Vincent and the Grenadines 1840.2685
## 14501 VC St. Vincent and the Grenadines 1745.1944
## 14502 VC St. Vincent and the Grenadines 1948.2531
## 14503 VC St. Vincent and the Grenadines 1968.5944
## 14504 VC St. Vincent and the Grenadines 1971.7757
## 14505 VC St. Vincent and the Grenadines 1922.6923
## 14506 VC St. Vincent and the Grenadines 2074.8887
## 14507 VC St. Vincent and the Grenadines 2027.0489
## 14508 VC St. Vincent and the Grenadines 1967.9458
## 14509 SD Sudan 1811.1465
## 14510 SD Sudan 1852.8090
## 14511 SD Sudan 1969.1201
## 14512 SD Sudan 2061.6865
## 14513 SD Sudan 2169.7722
## 14514 SD Sudan 2206.7197
## 14515 SD Sudan 2184.5422
## 14516 SD Sudan 2195.8225
## 14517 SD Sudan 2149.2476
## 14518 SD Sudan 2159.2148
## 14519 SD Sudan 2338.5588
## 14520 SD Sudan 2208.4231
## 14521 SD Sudan 2182.2266
## 14522 SD Sudan 2304.9255
## 14523 SD Sudan 2280.7700
## 14524 SD Sudan 2217.3779
## 14525 SD Sudan 2140.0461
## 14526 SD Sudan 2082.9817
## 14527 SD Sudan 2037.2734
## 14528 SD Sudan 1971.0612
## 14529 SD Sudan 1912.0033
## 14530 SD Sudan 1845.9552
## 14531 SD Sudan 1784.5300
## 14532 SD Sudan 1779.0468
## 14533 SD Sudan 1752.6970
## 14534 SD Sudan 1521.9594
## 14535 SD Sudan 1475.8381
## 14536 SD Sudan 1429.6792
## 14537 SD Sudan 1453.0416
## 14538 SD Sudan 1426.1898
## 14539 SD Sudan 1373.2628
## 14540 SD Sudan 1310.7720
## 14541 SD Sudan 1422.7997
## 14542 SD Sudan 1340.2213
## 14543 SD Sudan 1380.3607
## 14544 SD Sudan 1241.8774
## 14545 SD Sudan 1212.4846
## 14546 SD Sudan 1333.9769
## 14547 SD Sudan 1450.5710
## 14548 SD Sudan 1470.0627
## 14549 SD Sudan 1435.8986
## 14550 SD Sudan 1383.1544
## 14551 SD Sudan 1409.5493
## 14552 SD Sudan 1535.0300
## 14553 SD Sudan 1687.3169
## 14554 SD Sudan 1641.8789
## 14555 SD Sudan 1454.1012
## 14556 SD Sudan 1297.6769
## 14557 SD Sudan 1201.6155
## 14558 SD Sudan 1231.4839
## 14559 SD Sudan 1337.3539
## 14560 SD Sudan 1347.9954
## 14561 SD Sudan 1311.2111
## 14562 SD Sudan 1332.0709
## 14563 SD Sudan 1345.2048
## 14564 SD Sudan 1365.1848
## 14565 SD Sudan 1456.7063
## 14566 SD Sudan 1403.0928
## 14567 SD Sudan 1458.8024
## 14568 SD Sudan 1543.0424
## 14569 SD Sudan 1482.4851
## 14570 SD Sudan 1521.8022
## 14571 SR Suriname 7204.2667
## 14572 SR Suriname 7529.6141
## 14573 SR Suriname 9035.1970
## 14574 SR Suriname 9020.4408
## 14575 SR Suriname 8677.7822
## 14576 SR Suriname 8628.8557
## 14577 SR Suriname 9168.2372
## 14578 SR Suriname 9592.5187
## 14579 SR Suriname 9672.6696
## 14580 SR Suriname 9502.0178
## 14581 SR Suriname 9358.0264
## 14582 SR Suriname 8941.9933
## 14583 SR Suriname 8600.2466
## 14584 SR Suriname 8445.3650
## 14585 SR Suriname 8203.6090
## 14586 SR Suriname 7895.6348
## 14587 SR Suriname 7550.3785
## 14588 SR Suriname 7309.8503
## 14589 SR Suriname 6816.4717
## 14590 SR Suriname 6488.4146
## 14591 SR Suriname 6386.5682
## 14592 SR Suriname 6202.4163
## 14593 SR Suriname 6147.4743
## 14594 SR Suriname 6309.9028
## 14595 SR Suriname 6245.0831
## 14596 SR Suriname 5986.8486
## 14597 SR Suriname 6012.8406
## 14598 SR Suriname 6106.1497
## 14599 SR Suriname 6002.9236
## 14600 SR Suriname 6546.7264
## 14601 SR Suriname 6641.4073
## 14602 SR Suriname 6591.9360
## 14603 SR Suriname 7043.1286
## 14604 SR Suriname 6901.8552
## 14605 SR Suriname 6534.2651
## 14606 SR Suriname 7094.6420
## 14607 SR Suriname 7143.2890
## 14608 SR Suriname 7078.3794
## 14609 SR Suriname 7264.0702
## 14610 SR Suriname 7587.2436
## 14611 SR Suriname 7937.0974
## 14612 SR Suriname 7423.5575
## 14613 SR Suriname 8155.8585
## 14614 SR Suriname 8221.6548
## 14615 SR Suriname 7722.4122
## 14616 SR Suriname 7001.7604
## 14617 SR Suriname 6412.4216
## 14618 SR Suriname 6195.8359
## 14619 SR Suriname 6116.3240
## 14620 SR Suriname 6177.6477
## 14621 SR Suriname 6192.6684
## 14622 SR Suriname 5981.3440
## 14623 SR Suriname 5893.8082
## 14624 SR Suriname 5751.0993
## 14625 SR Suriname 5481.3721
## 14626 SR Suriname 5027.3466
## 14627 SR Suriname 4335.7379
## 14628 SR Suriname 3976.0164
## 14629 SR Suriname 3832.9462
## 14630 SR Suriname 3725.8444
## 14631 SR Suriname 3682.7076
## 14632 SR Suriname 3612.2150
## 14633 SE Sweden 53692.5273
## 14634 SE Sweden 51541.6557
## 14635 SE Sweden 53490.3518
## 14636 SE Sweden 52983.0069
## 14637 SE Sweden 52576.8103
## 14638 SE Sweden 51955.8611
## 14639 SE Sweden 51545.4836
## 14640 SE Sweden 49855.3010
## 14641 SE Sweden 49048.8188
## 14642 SE Sweden 48885.5484
## 14643 SE Sweden 49539.9726
## 14644 SE Sweden 48369.9100
## 14645 SE Sweden 46043.4809
## 14646 SE Sweden 48544.1159
## 14647 SE Sweden 49145.1958
## 14648 SE Sweden 47864.8109
## 14649 SE Sweden 45990.3743
## 14650 SE Sweden 44891.3232
## 14651 SE Sweden 43194.9262
## 14652 SE Sweden 42377.1196
## 14653 SE Sweden 41601.3077
## 14654 SE Sweden 41117.1524
## 14655 SE Sweden 39309.5970
## 14656 SE Sweden 37737.4623
## 14657 SE Sweden 36197.6342
## 14658 SE Sweden 35139.4030
## 14659 SE Sweden 34648.1189
## 14660 SE Sweden 33511.6487
## 14661 SE Sweden 32474.4299
## 14662 SE Sweden 33352.5384
## 14663 SE Sweden 33941.9852
## 14664 SE Sweden 34570.3057
## 14665 SE Sweden 34577.4837
## 14666 SE Sweden 33908.7386
## 14667 SE Sweden 33214.9576
## 14668 SE Sweden 32244.5427
## 14669 SE Sweden 31472.5916
## 14670 SE Sweden 30857.9705
## 14671 SE Sweden 29632.6984
## 14672 SE Sweden 29093.1613
## 14673 SE Sweden 28750.8038
## 14674 SE Sweden 28654.9711
## 14675 SE Sweden 28233.2418
## 14676 SE Sweden 27248.5743
## 14677 SE Sweden 26857.5992
## 14678 SE Sweden 27390.3769
## 14679 SE Sweden 27202.3439
## 14680 SE Sweden 26630.7799
## 14681 SE Sweden 25880.4576
## 14682 SE Sweden 24935.6623
## 14683 SE Sweden 24449.8628
## 14684 SE Sweden 24388.2982
## 14685 SE Sweden 22944.5497
## 14686 SE Sweden 22004.1547
## 14687 SE Sweden 21351.2974
## 14688 SE Sweden 20815.2272
## 14689 SE Sweden 20583.8667
## 14690 SE Sweden 20013.8211
## 14691 SE Sweden 18876.3227
## 14692 SE Sweden 18022.7750
## 14693 SE Sweden 17382.1380
## 14694 SE Sweden 16525.3610
## 14695 CH Switzerland 88224.1403
## 14696 CH Switzerland 85685.2903
## 14697 CH Switzerland 88413.1917
## 14698 CH Switzerland 87980.6707
## 14699 CH Switzerland 86119.1454
## 14700 CH Switzerland 85570.3961
## 14701 CH Switzerland 84776.1422
## 14702 CH Switzerland 84348.3928
## 14703 CH Switzerland 83344.5234
## 14704 CH Switzerland 82800.0741
## 14705 CH Switzerland 82677.5990
## 14706 CH Switzerland 82026.7245
## 14707 CH Switzerland 80262.4856
## 14708 CH Switzerland 82997.6922
## 14709 CH Switzerland 81804.8618
## 14710 CH Switzerland 79367.9002
## 14711 CH Switzerland 76784.6373
## 14712 CH Switzerland 75112.8674
## 14713 CH Switzerland 73555.5996
## 14714 CH Switzerland 74138.0835
## 14715 CH Switzerland 74705.1554
## 14716 CH Switzerland 74013.0564
## 14717 CH Switzerland 71583.6867
## 14718 CH Switzerland 70691.9467
## 14719 CH Switzerland 68793.5596
## 14720 CH Switzerland 67429.3907
## 14721 CH Switzerland 67394.9716
## 14722 CH Switzerland 67522.1500
## 14723 CH Switzerland 67209.1660
## 14724 CH Switzerland 67909.6011
## 14725 CH Switzerland 68692.5025
## 14726 CH Switzerland 70199.3239
## 14727 CH Switzerland 68410.0813
## 14728 CH Switzerland 66102.6730
## 14729 CH Switzerland 64476.9843
## 14730 CH Switzerland 63870.5947
## 14731 CH Switzerland 63032.2992
## 14732 CH Switzerland 61067.7822
## 14733 CH Switzerland 59497.5210
## 14734 CH Switzerland 59373.7415
## 14735 CH Switzerland 60514.0544
## 14736 CH Switzerland 59887.0204
## 14737 CH Switzerland NA
## 14738 CH Switzerland NA
## 14739 CH Switzerland NA
## 14740 CH Switzerland NA
## 14741 CH Switzerland NA
## 14742 CH Switzerland NA
## 14743 CH Switzerland NA
## 14744 CH Switzerland NA
## 14745 CH Switzerland NA
## 14746 CH Switzerland NA
## 14747 CH Switzerland NA
## 14748 CH Switzerland NA
## 14749 CH Switzerland NA
## 14750 CH Switzerland NA
## 14751 CH Switzerland NA
## 14752 CH Switzerland NA
## 14753 CH Switzerland NA
## 14754 CH Switzerland NA
## 14755 CH Switzerland NA
## 14756 CH Switzerland NA
## 14757 SY Syrian Arab Republic NA
## 14758 SY Syrian Arab Republic NA
## 14759 SY Syrian Arab Republic NA
## 14760 SY Syrian Arab Republic 988.6372
## 14761 SY Syrian Arab Republic 965.6765
## 14762 SY Syrian Arab Republic 952.1515
## 14763 SY Syrian Arab Republic 979.1444
## 14764 SY Syrian Arab Republic 972.8236
## 14765 SY Syrian Arab Republic 1036.5812
## 14766 SY Syrian Arab Republic 1347.2815
## 14767 SY Syrian Arab Republic 1773.2483
## 14768 SY Syrian Arab Republic 1701.4544
## 14769 SY Syrian Arab Republic 1629.4263
## 14770 SY Syrian Arab Republic 1578.8118
## 14771 SY Syrian Arab Republic 1570.8977
## 14772 SY Syrian Arab Republic 1550.4211
## 14773 SY Syrian Arab Republic 1532.0564
## 14774 SY Syrian Arab Republic 1485.5618
## 14775 SY Syrian Arab Republic 1422.5600
## 14776 SY Syrian Arab Republic 1352.6366
## 14777 SY Syrian Arab Republic 1325.8614
## 14778 SY Syrian Arab Republic 1340.5602
## 14779 SY Syrian Arab Republic 1364.5621
## 14780 SY Syrian Arab Republic 1452.4229
## 14781 SY Syrian Arab Republic 1398.1611
## 14782 SY Syrian Arab Republic 1369.2818
## 14783 SY Syrian Arab Republic 1282.2954
## 14784 SY Syrian Arab Republic 1232.0334
## 14785 SY Syrian Arab Republic 1181.7948
## 14786 SY Syrian Arab Republic 1145.1768
## 14787 SY Syrian Arab Republic 1043.1207
## 14788 SY Syrian Arab Republic 997.5866
## 14789 SY Syrian Arab Republic 990.7388
## 14790 SY Syrian Arab Republic 1182.6955
## 14791 SY Syrian Arab Republic 1033.7895
## 14792 SY Syrian Arab Republic 1049.6300
## 14793 SY Syrian Arab Republic 1178.4027
## 14794 SY Syrian Arab Republic 1114.8633
## 14795 SY Syrian Arab Republic 1249.7046
## 14796 SY Syrian Arab Republic 1265.7642
## 14797 SY Syrian Arab Republic 1276.3181
## 14798 SY Syrian Arab Republic 1227.1753
## 14799 SY Syrian Arab Republic 1109.5977
## 14800 SY Syrian Arab Republic 1137.9952
## 14801 SY Syrian Arab Republic 1070.4933
## 14802 SY Syrian Arab Republic 1127.3102
## 14803 SY Syrian Arab Republic 1038.7534
## 14804 SY Syrian Arab Republic 923.7268
## 14805 SY Syrian Arab Republic 759.9027
## 14806 SY Syrian Arab Republic 878.4377
## 14807 SY Syrian Arab Republic 723.4486
## 14808 SY Syrian Arab Republic 687.0185
## 14809 SY Syrian Arab Republic 723.6899
## 14810 SY Syrian Arab Republic 630.1906
## 14811 SY Syrian Arab Republic 628.1875
## 14812 SY Syrian Arab Republic 599.8582
## 14813 SY Syrian Arab Republic 671.3878
## 14814 SY Syrian Arab Republic 678.1044
## 14815 SY Syrian Arab Republic 640.9935
## 14816 SY Syrian Arab Republic 724.6256
## 14817 SY Syrian Arab Republic 600.8509
## 14818 SY Syrian Arab Republic 559.7106
## 14819 TJ Tajikistan 1279.6703
## 14820 TJ Tajikistan 1197.9028
## 14821 TJ Tajikistan 1174.0817
## 14822 TJ Tajikistan 1119.6265
## 14823 TJ Tajikistan 1066.3983
## 14824 TJ Tajikistan 1020.6091
## 14825 TJ Tajikistan 978.4050
## 14826 TJ Tajikistan 945.3533
## 14827 TJ Tajikistan 907.2129
## 14828 TJ Tajikistan 864.5430
## 14829 TJ Tajikistan 822.7534
## 14830 TJ Tajikistan 783.3767
## 14831 TJ Tajikistan 751.8094
## 14832 TJ Tajikistan 739.1280
## 14833 TJ Tajikistan 699.2946
## 14834 TJ Tajikistan 661.8225
## 14835 TJ Tajikistan 630.6671
## 14836 TJ Tajikistan 602.3263
## 14837 TJ Tajikistan 556.1677
## 14838 TJ Tajikistan 509.9934
## 14839 TJ Tajikistan 468.1758
## 14840 TJ Tajikistan 434.2652
## 14841 TJ Tajikistan 407.2260
## 14842 TJ Tajikistan 398.7095
## 14843 TJ Tajikistan 384.2687
## 14844 TJ Tajikistan 383.5394
## 14845 TJ Tajikistan 467.3440
## 14846 TJ Tajikistan 541.6433
## 14847 TJ Tajikistan 698.8017
## 14848 TJ Tajikistan 849.6848
## 14849 TJ Tajikistan 1219.3093
## 14850 TJ Tajikistan 1341.5158
## 14851 TJ Tajikistan 1384.7145
## 14852 TJ Tajikistan 1525.0121
## 14853 TJ Tajikistan 1382.3483
## 14854 TJ Tajikistan 1445.9026
## 14855 TJ Tajikistan 1443.0347
## 14856 TJ Tajikistan NA
## 14857 TJ Tajikistan NA
## 14858 TJ Tajikistan NA
## 14859 TJ Tajikistan NA
## 14860 TJ Tajikistan NA
## 14861 TJ Tajikistan NA
## 14862 TJ Tajikistan NA
## 14863 TJ Tajikistan NA
## 14864 TJ Tajikistan NA
## 14865 TJ Tajikistan NA
## 14866 TJ Tajikistan NA
## 14867 TJ Tajikistan NA
## 14868 TJ Tajikistan NA
## 14869 TJ Tajikistan NA
## 14870 TJ Tajikistan NA
## 14871 TJ Tajikistan NA
## 14872 TJ Tajikistan NA
## 14873 TJ Tajikistan NA
## 14874 TJ Tajikistan NA
## 14875 TJ Tajikistan NA
## 14876 TJ Tajikistan NA
## 14877 TJ Tajikistan NA
## 14878 TJ Tajikistan NA
## 14879 TJ Tajikistan NA
## 14880 TJ Tajikistan NA
## 14881 TZ Tanzania 1074.8918
## 14882 TZ Tanzania 1061.1703
## 14883 TZ Tanzania 1071.3501
## 14884 TZ Tanzania 1042.9877
## 14885 TZ Tanzania 1018.9897
## 14886 TZ Tanzania 983.1659
## 14887 TZ Tanzania 947.9333
## 14888 TZ Tanzania 920.0780
## 14889 TZ Tanzania 888.2632
## 14890 TZ Tanzania 857.0877
## 14891 TZ Tanzania 844.9061
## 14892 TZ Tanzania 808.1405
## 14893 TZ Tanzania 782.3978
## 14894 TZ Tanzania 764.8582
## 14895 TZ Tanzania 744.5248
## 14896 TZ Tanzania 717.2612
## 14897 TZ Tanzania 692.4771
## 14898 TZ Tanzania 662.7249
## 14899 TZ Tanzania 634.1105
## 14900 TZ Tanzania 611.2861
## 14901 TZ Tanzania 586.5109
## 14902 TZ Tanzania 567.5402
## 14903 TZ Tanzania 556.5281
## 14904 TZ Tanzania 543.2803
## 14905 TZ Tanzania 536.0996
## 14906 TZ Tanzania 530.5375
## 14907 TZ Tanzania 521.0553
## 14908 TZ Tanzania 518.0261
## 14909 TZ Tanzania 526.5555
## 14910 TZ Tanzania 538.1158
## 14911 TZ Tanzania 553.5264
## 14912 TZ Tanzania 560.6014
## 14913 TZ Tanzania 540.6636
## 14914 TZ Tanzania 537.3235
## 14915 TZ Tanzania NA
## 14916 TZ Tanzania NA
## 14917 TZ Tanzania NA
## 14918 TZ Tanzania NA
## 14919 TZ Tanzania NA
## 14920 TZ Tanzania NA
## 14921 TZ Tanzania NA
## 14922 TZ Tanzania NA
## 14923 TZ Tanzania NA
## 14924 TZ Tanzania NA
## 14925 TZ Tanzania NA
## 14926 TZ Tanzania NA
## 14927 TZ Tanzania NA
## 14928 TZ Tanzania NA
## 14929 TZ Tanzania NA
## 14930 TZ Tanzania NA
## 14931 TZ Tanzania NA
## 14932 TZ Tanzania NA
## 14933 TZ Tanzania NA
## 14934 TZ Tanzania NA
## 14935 TZ Tanzania NA
## 14936 TZ Tanzania NA
## 14937 TZ Tanzania NA
## 14938 TZ Tanzania NA
## 14939 TZ Tanzania NA
## 14940 TZ Tanzania NA
## 14941 TZ Tanzania NA
## 14942 TZ Tanzania NA
## 14943 TH Thailand 6270.4252
## 14944 TH Thailand 6187.0703
## 14945 TH Thailand 6612.2274
## 14946 TH Thailand 6491.3303
## 14947 TH Thailand 6247.9921
## 14948 TH Thailand 6018.1775
## 14949 TH Thailand 5840.0531
## 14950 TH Thailand 5685.4021
## 14951 TH Thailand 5654.2854
## 14952 TH Thailand 5531.3490
## 14953 TH Thailand 5182.0424
## 14954 TH Thailand 5163.5977
## 14955 TH Thailand 4826.3214
## 14956 TH Thailand 4884.4178
## 14957 TH Thailand 4826.8715
## 14958 TH Thailand 4603.7524
## 14959 TH Thailand 4412.4443
## 14960 TH Thailand 4262.5188
## 14961 TH Thailand 4037.9711
## 14962 TH Thailand 3795.4107
## 14963 TH Thailand 3605.3682
## 14964 TH Thailand 3517.7989
## 14965 TH Thailand 3403.1150
## 14966 TH Thailand 3292.0189
## 14967 TH Thailand 3607.3626
## 14968 TH Thailand 3753.7021
## 14969 TH Thailand 3592.5008
## 14970 TH Thailand 3356.0980
## 14971 TH Thailand 3136.2159
## 14972 TH Thailand 2923.5433
## 14973 TH Thailand 2732.2394
## 14974 TH Thailand 2546.8468
## 14975 TH Thailand 2323.2948
## 14976 TH Thailand 2104.0715
## 14977 TH Thailand 1889.8319
## 14978 TH Thailand 1757.0306
## 14979 TH Thailand 1695.4012
## 14980 TH Thailand 1649.6635
## 14981 TH Thailand 1588.5624
## 14982 TH Thailand 1532.5873
## 14983 TH Thailand 1482.7089
## 14984 TH Thailand 1428.1398
## 14985 TH Thailand 1386.3541
## 14986 TH Thailand 1344.3220
## 14987 TH Thailand 1246.4785
## 14988 TH Thailand 1161.6869
## 14989 TH Thailand 1088.9658
## 14990 TH Thailand 1064.4110
## 14991 TH Thailand 1046.6285
## 14992 TH Thailand 976.2026
## 14993 TH Thailand 963.1591
## 14994 TH Thailand 945.0640
## 14995 TH Thailand 873.3287
## 14996 TH Thailand 844.0360
## 14997 TH Thailand 804.0326
## 14998 TH Thailand 762.5957
## 14999 TH Thailand 707.1079
## 15000 TH Thailand 673.5583
## 15001 TH Thailand 649.7253
## 15002 TH Thailand 619.9257
## 15003 TH Thailand 593.8806
## 15004 TH Thailand 580.6703
## 15005 TL Timor-Leste 1626.3502
## 15006 TL Timor-Leste 1587.8572
## 15007 TL Timor-Leste 1466.8148
## 15008 TL Timor-Leste 1251.4266
## 15009 TL Timor-Leste 1285.1399
## 15010 TL Timor-Leste 1351.9244
## 15011 TL Timor-Leste 1332.7919
## 15012 TL Timor-Leste 1321.2358
## 15013 TL Timor-Leste 1287.2636
## 15014 TL Timor-Leste 1271.3046
## 15015 TL Timor-Leste 1234.0782
## 15016 TL Timor-Leste 1185.6231
## 15017 TL Timor-Leste 1103.8631
## 15018 TL Timor-Leste 1020.1040
## 15019 TL Timor-Leste 932.6149
## 15020 TL Timor-Leste 862.4159
## 15021 TL Timor-Leste 918.7274
## 15022 TL Timor-Leste 913.4077
## 15023 TL Timor-Leste 933.5707
## 15024 TL Timor-Leste 979.6479
## 15025 TL Timor-Leste 1075.0377
## 15026 TL Timor-Leste 941.5900
## 15027 TL Timor-Leste NA
## 15028 TL Timor-Leste NA
## 15029 TL Timor-Leste NA
## 15030 TL Timor-Leste NA
## 15031 TL Timor-Leste NA
## 15032 TL Timor-Leste NA
## 15033 TL Timor-Leste NA
## 15034 TL Timor-Leste NA
## 15035 TL Timor-Leste NA
## 15036 TL Timor-Leste NA
## 15037 TL Timor-Leste NA
## 15038 TL Timor-Leste NA
## 15039 TL Timor-Leste NA
## 15040 TL Timor-Leste NA
## 15041 TL Timor-Leste NA
## 15042 TL Timor-Leste NA
## 15043 TL Timor-Leste NA
## 15044 TL Timor-Leste NA
## 15045 TL Timor-Leste NA
## 15046 TL Timor-Leste NA
## 15047 TL Timor-Leste NA
## 15048 TL Timor-Leste NA
## 15049 TL Timor-Leste NA
## 15050 TL Timor-Leste NA
## 15051 TL Timor-Leste NA
## 15052 TL Timor-Leste NA
## 15053 TL Timor-Leste NA
## 15054 TL Timor-Leste NA
## 15055 TL Timor-Leste NA
## 15056 TL Timor-Leste NA
## 15057 TL Timor-Leste NA
## 15058 TL Timor-Leste NA
## 15059 TL Timor-Leste NA
## 15060 TL Timor-Leste NA
## 15061 TL Timor-Leste NA
## 15062 TL Timor-Leste NA
## 15063 TL Timor-Leste NA
## 15064 TL Timor-Leste NA
## 15065 TL Timor-Leste NA
## 15066 TL Timor-Leste NA
## 15067 TG Togo 644.0651
## 15068 TG Togo 626.6221
## 15069 TG Togo 630.7905
## 15070 TG Togo 612.7858
## 15071 TG Togo 598.1914
## 15072 TG Togo 587.6581
## 15073 TG Togo 570.9100
## 15074 TG Togo 553.9095
## 15075 TG Togo 536.7290
## 15076 TG Togo 519.3212
## 15077 TG Togo 500.5705
## 15078 TG Togo 483.2361
## 15079 TG Togo 467.9041
## 15080 TG Togo 455.5533
## 15081 TG Togo 449.8269
## 15082 TG Togo 467.6141
## 15083 TG Togo 467.8188
## 15084 TG Togo 503.6294
## 15085 TG Togo 521.6919
## 15086 TG Togo 501.4065
## 15087 TG Togo 495.7539
## 15088 TG Togo 505.5009
## 15089 TG Togo 524.8347
## 15090 TG Togo 528.4871
## 15091 TG Togo 558.5939
## 15092 TG Togo 503.7787
## 15093 TG Togo 476.2960
## 15094 TG Togo 452.9718
## 15095 TG Togo 402.9023
## 15096 TG Togo 484.5365
## 15097 TG Togo 515.4537
## 15098 TG Togo 531.2846
## 15099 TG Togo 546.4439
## 15100 TG Togo 539.9636
## 15101 TG Togo 521.7514
## 15102 TG Togo 535.8812
## 15103 TG Togo 545.3570
## 15104 TG Togo 535.1033
## 15105 TG Togo 526.0086
## 15106 TG Togo 577.3577
## 15107 TG Togo 620.8058
## 15108 TG Togo 663.6801
## 15109 TG Togo 596.3717
## 15110 TG Togo 645.0782
## 15111 TG Togo 594.2551
## 15112 TG Togo 567.7718
## 15113 TG Togo 592.6431
## 15114 TG Togo 591.7389
## 15115 TG Togo 577.5153
## 15116 TG Togo 569.9718
## 15117 TG Togo 544.5908
## 15118 TG Togo 562.6480
## 15119 TG Togo 570.5373
## 15120 TG Togo 538.3611
## 15121 TG Togo 537.5641
## 15122 TG Togo 532.9261
## 15123 TG Togo 505.7377
## 15124 TG Togo 450.2907
## 15125 TG Togo 401.3232
## 15126 TG Togo 386.7159
## 15127 TG Togo 376.2078
## 15128 TG Togo 339.0034
## 15129 TO Tonga NA
## 15130 TO Tonga 4629.8814
## 15131 TO Tonga 4652.5886
## 15132 TO Tonga 4676.7782
## 15133 TO Tonga 4717.5075
## 15134 TO Tonga 4604.5886
## 15135 TO Tonga 4336.2396
## 15136 TO Tonga 4275.7028
## 15137 TO Tonga 4160.4159
## 15138 TO Tonga 4108.3847
## 15139 TO Tonga 4042.5002
## 15140 TO Tonga 3769.0695
## 15141 TO Tonga 3742.0498
## 15142 TO Tonga 3966.8595
## 15143 TO Tonga 3816.7650
## 15144 TO Tonga 3838.7420
## 15145 TO Tonga 3875.1637
## 15146 TO Tonga 3898.8405
## 15147 TO Tonga 4020.1437
## 15148 TO Tonga 3951.9897
## 15149 TO Tonga 3789.9617
## 15150 TO Tonga 3672.4038
## 15151 TO Tonga 3658.7018
## 15152 TO Tonga 3543.7498
## 15153 TO Tonga 3473.5641
## 15154 TO Tonga 3444.1993
## 15155 TO Tonga 3393.5151
## 15156 TO Tonga 3168.0204
## 15157 TO Tonga 3024.3080
## 15158 TO Tonga 2920.1597
## 15159 TO Tonga 2917.5605
## 15160 TO Tonga 2746.7009
## 15161 TO Tonga 2810.5511
## 15162 TO Tonga 2807.2120
## 15163 TO Tonga 2869.3649
## 15164 TO Tonga 2793.1983
## 15165 TO Tonga 2740.6369
## 15166 TO Tonga 2574.7805
## 15167 TO Tonga 2532.3245
## 15168 TO Tonga 2485.7513
## 15169 TO Tonga 2378.8447
## 15170 TO Tonga NA
## 15171 TO Tonga NA
## 15172 TO Tonga NA
## 15173 TO Tonga NA
## 15174 TO Tonga NA
## 15175 TO Tonga NA
## 15176 TO Tonga NA
## 15177 TO Tonga NA
## 15178 TO Tonga NA
## 15179 TO Tonga NA
## 15180 TO Tonga NA
## 15181 TO Tonga NA
## 15182 TO Tonga NA
## 15183 TO Tonga NA
## 15184 TO Tonga NA
## 15185 TO Tonga NA
## 15186 TO Tonga NA
## 15187 TO Tonga NA
## 15188 TO Tonga NA
## 15189 TO Tonga NA
## 15190 TO Tonga NA
## 15191 TT Trinidad and Tobago 14877.9654
## 15192 TT Trinidad and Tobago 15067.7088
## 15193 TT Trinidad and Tobago 16320.0393
## 15194 TT Trinidad and Tobago 16408.3842
## 15195 TT Trinidad and Tobago 16594.1464
## 15196 TT Trinidad and Tobago 17131.7476
## 15197 TT Trinidad and Tobago 18383.5387
## 15198 TT Trinidad and Tobago 18167.3963
## 15199 TT Trinidad and Tobago 18440.9284
## 15200 TT Trinidad and Tobago 18150.8243
## 15201 TT Trinidad and Tobago 18026.0758
## 15202 TT Trinidad and Tobago 18188.6826
## 15203 TT Trinidad and Tobago 17699.9326
## 15204 TT Trinidad and Tobago 18604.1252
## 15205 TT Trinidad and Tobago 18076.3204
## 15206 TT Trinidad and Tobago 17334.0725
## 15207 TT Trinidad and Tobago 15383.2047
## 15208 TT Trinidad and Tobago 14555.5575
## 15209 TT Trinidad and Tobago 13552.4211
## 15210 TT Trinidad and Tobago 11901.1931
## 15211 TT Trinidad and Tobago 11074.4941
## 15212 TT Trinidad and Tobago 10668.8108
## 15213 TT Trinidad and Tobago 10005.5716
## 15214 TT Trinidad and Tobago 9278.6458
## 15215 TT Trinidad and Tobago 8594.1174
## 15216 TT Trinidad and Tobago 8007.3899
## 15217 TT Trinidad and Tobago 7494.0942
## 15218 TT Trinidad and Tobago 7246.0524
## 15219 TT Trinidad and Tobago 7029.7925
## 15220 TT Trinidad and Tobago 7116.7476
## 15221 TT Trinidad and Tobago 6504.1566
## 15222 TT Trinidad and Tobago 6349.0888
## 15223 TT Trinidad and Tobago 6297.3072
## 15224 TT Trinidad and Tobago 6395.9279
## 15225 TT Trinidad and Tobago 6710.4573
## 15226 TT Trinidad and Tobago 7097.4544
## 15227 TT Trinidad and Tobago 7420.1349
## 15228 TT Trinidad and Tobago 7840.8596
## 15229 TT Trinidad and Tobago 8443.6520
## 15230 TT Trinidad and Tobago 9564.9662
## 15231 TT Trinidad and Tobago 9365.6826
## 15232 TT Trinidad and Tobago 9098.0942
## 15233 TT Trinidad and Tobago 8365.8739
## 15234 TT Trinidad and Tobago 8190.8314
## 15235 TT Trinidad and Tobago 7547.9010
## 15236 TT Trinidad and Tobago 7012.1323
## 15237 TT Trinidad and Tobago 6682.4020
## 15238 TT Trinidad and Tobago 6680.6005
## 15239 TT Trinidad and Tobago 6530.4084
## 15240 TT Trinidad and Tobago 6516.0334
## 15241 TT Trinidad and Tobago 6239.7762
## 15242 TT Trinidad and Tobago 6243.4416
## 15243 TT Trinidad and Tobago 6082.9405
## 15244 TT Trinidad and Tobago 5961.9127
## 15245 TT Trinidad and Tobago 5700.4468
## 15246 TT Trinidad and Tobago 5622.8995
## 15247 TT Trinidad and Tobago 5447.9903
## 15248 TT Trinidad and Tobago 5465.1286
## 15249 TT Trinidad and Tobago 5138.4300
## 15250 TT Trinidad and Tobago 4934.9518
## 15251 TT Trinidad and Tobago 4884.4366
## 15252 TT Trinidad and Tobago 4368.2663
## 15253 TN Tunisia 3888.7212
## 15254 TN Tunisia 3800.2319
## 15255 TN Tunisia 4208.0662
## 15256 TN Tunisia 4199.6573
## 15257 TN Tunisia 4139.4042
## 15258 TN Tunisia 4095.1809
## 15259 TN Tunisia 4094.8416
## 15260 TN Tunisia 4098.3964
## 15261 TN Tunisia 4015.5547
## 15262 TN Tunisia 3958.5886
## 15263 TN Tunisia 3835.5931
## 15264 TN Tunisia 3954.9923
## 15265 TN Tunisia 3880.8516
## 15266 TN Tunisia 3806.4661
## 15267 TN Tunisia 3690.5877
## 15268 TN Tunisia 3493.6323
## 15269 TN Tunisia 3350.5681
## 15270 TN Tunisia 3264.9823
## 15271 TN Tunisia 3097.1292
## 15272 TN Tunisia 2980.2120
## 15273 TN Tunisia 2964.5400
## 15274 TN Tunisia 2881.2876
## 15275 TN Tunisia 2778.8070
## 15276 TN Tunisia 2648.7440
## 15277 TN Tunisia 2558.6915
## 15278 TN Tunisia 2460.1187
## 15279 TN Tunisia 2331.7540
## 15280 TN Tunisia 2318.1854
## 15281 TN Tunisia 2290.7036
## 15282 TN Tunisia 2288.9992
## 15283 TN Tunisia 2170.1238
## 15284 TN Tunisia 2135.5384
## 15285 TN Tunisia 2023.0121
## 15286 TN Tunisia 2033.6677
## 15287 TN Tunisia 2079.5972
## 15288 TN Tunisia 1996.3993
## 15289 TN Tunisia 2077.7424
## 15290 TN Tunisia 2020.2153
## 15291 TN Tunisia 1964.8964
## 15292 TN Tunisia 1931.8218
## 15293 TN Tunisia 1997.5013
## 15294 TN Tunisia 1945.7403
## 15295 TN Tunisia 1858.9818
## 15296 TN Tunisia 1787.7665
## 15297 TN Tunisia 1719.3699
## 15298 TN Tunisia 1701.0074
## 15299 TN Tunisia 1612.9211
## 15300 TN Tunisia 1539.4788
## 15301 TN Tunisia 1456.4888
## 15302 TN Tunisia 1498.7819
## 15303 TN Tunisia 1301.2209
## 15304 TN Tunisia 1203.0782
## 15305 TN Tunisia 1175.0290
## 15306 TN Tunisia 1146.8105
## 15307 TN Tunisia 1061.6254
## 15308 TN Tunisia 1082.6397
## 15309 TN Tunisia 1067.8968
## 15310 TN Tunisia NA
## 15311 TN Tunisia NA
## 15312 TN Tunisia NA
## 15313 TN Tunisia NA
## 15314 TN Tunisia NA
## 15315 TR Turkiye 13250.6589
## 15316 TR Turkiye 12038.6281
## 15317 TR Turkiye 11955.4335
## 15318 TR Turkiye 12006.8159
## 15319 TR Turkiye 11835.2611
## 15320 TR Turkiye 11187.0536
## 15321 TR Turkiye 11006.2795
## 15322 TR Turkiye 10549.6761
## 15323 TR Turkiye 10225.7161
## 15324 TR Turkiye 9586.7691
## 15325 TR Turkiye 9299.1373
## 15326 TR Turkiye 8491.5887
## 15327 TR Turkiye 7942.0313
## 15328 TR Turkiye 8451.4791
## 15329 TR Turkiye 8483.9661
## 15330 TR Turkiye 8173.5363
## 15331 TR Turkiye 7738.5782
## 15332 TR Turkiye 7194.6820
## 15333 TR Turkiye 6644.1459
## 15334 TR Turkiye 6373.1319
## 15335 TR Turkiye 6075.9956
## 15336 TR Turkiye 6543.7314
## 15337 TR Turkiye 6213.0638
## 15338 TR Turkiye 6522.9417
## 15339 TR Turkiye 6470.7834
## 15340 TR Turkiye 6111.0779
## 15341 TR Turkiye 5782.2531
## 15342 TR Turkiye 5445.8526
## 15343 TR Turkiye 5804.3191
## 15344 TR Turkiye 5479.2938
## 15345 TR Turkiye 5303.0098
## 15346 TR Turkiye 5354.8045
## 15347 TR Turkiye 4986.6375
## 15348 TR Turkiye 5061.8726
## 15349 TR Turkiye 5039.3078
## 15350 TR Turkiye 4691.9979
## 15351 TR Turkiye 4473.3084
## 15352 TR Turkiye 4382.2532
## 15353 TR Turkiye 4197.4045
## 15354 TR Turkiye 4089.6834
## 15355 TR Turkiye 4039.9978
## 15356 TR Turkiye 3941.5802
## 15357 TR Turkiye 4132.7435
## 15358 TR Turkiye 4253.0765
## 15359 TR Turkiye 4285.0681
## 15360 TR Turkiye 4238.6282
## 15361 TR Turkiye 3926.3395
## 15362 TR Turkiye 3750.1105
## 15363 TR Turkiye 3636.5296
## 15364 TR Turkiye 3606.8320
## 15365 TR Turkiye 3438.9713
## 15366 TR Turkiye 3336.4917
## 15367 TR Turkiye 3309.8922
## 15368 TR Turkiye 3256.5036
## 15369 TR Turkiye 3122.8900
## 15370 TR Turkiye 3053.2711
## 15371 TR Turkiye 2811.4238
## 15372 TR Turkiye 2800.1036
## 15373 TR Turkiye 2719.2533
## 15374 TR Turkiye 2553.6141
## 15375 TR Turkiye 2477.7954
## 15376 TR Turkiye 2509.6235
## 15377 TM Turkmenistan NA
## 15378 TM Turkmenistan NA
## 15379 TM Turkmenistan 7692.5787
## 15380 TM Turkmenistan 7349.4591
## 15381 TM Turkmenistan 7032.4579
## 15382 TM Turkmenistan 6714.3775
## 15383 TM Turkmenistan 6432.6853
## 15384 TM Turkmenistan 6149.4261
## 15385 TM Turkmenistan 5679.0193
## 15386 TM Turkmenistan 5249.7041
## 15387 TM Turkmenistan 4810.8962
## 15388 TM Turkmenistan 4265.9486
## 15389 TM Turkmenistan 3968.3730
## 15390 TM Turkmenistan 3794.9222
## 15391 TM Turkmenistan 3353.1448
## 15392 TM Turkmenistan 3056.9169
## 15393 TM Turkmenistan 2786.7739
## 15394 TM Turkmenistan 2492.2964
## 15395 TM Turkmenistan 2397.8964
## 15396 TM Turkmenistan 2345.0299
## 15397 TM Turkmenistan 2362.5532
## 15398 TM Turkmenistan 2288.2445
## 15399 TM Turkmenistan 2193.8753
## 15400 TM Turkmenistan 1905.6222
## 15401 TM Turkmenistan 1803.1322
## 15402 TM Turkmenistan 2067.3159
## 15403 TM Turkmenistan 1974.1073
## 15404 TM Turkmenistan 2175.2109
## 15405 TM Turkmenistan 2698.6480
## 15406 TM Turkmenistan 2734.4053
## 15407 TM Turkmenistan 3309.5670
## 15408 TM Turkmenistan 3568.4194
## 15409 TM Turkmenistan 2707.8812
## 15410 TM Turkmenistan 2902.6833
## 15411 TM Turkmenistan 2680.9091
## 15412 TM Turkmenistan NA
## 15413 TM Turkmenistan NA
## 15414 TM Turkmenistan NA
## 15415 TM Turkmenistan NA
## 15416 TM Turkmenistan NA
## 15417 TM Turkmenistan NA
## 15418 TM Turkmenistan NA
## 15419 TM Turkmenistan NA
## 15420 TM Turkmenistan NA
## 15421 TM Turkmenistan NA
## 15422 TM Turkmenistan NA
## 15423 TM Turkmenistan NA
## 15424 TM Turkmenistan NA
## 15425 TM Turkmenistan NA
## 15426 TM Turkmenistan NA
## 15427 TM Turkmenistan NA
## 15428 TM Turkmenistan NA
## 15429 TM Turkmenistan NA
## 15430 TM Turkmenistan NA
## 15431 TM Turkmenistan NA
## 15432 TM Turkmenistan NA
## 15433 TM Turkmenistan NA
## 15434 TM Turkmenistan NA
## 15435 TM Turkmenistan NA
## 15436 TM Turkmenistan NA
## 15437 TM Turkmenistan NA
## 15438 TM Turkmenistan NA
## 15439 TC Turks and Caicos Islands 20885.0928
## 15440 TC Turks and Caicos Islands 20723.9137
## 15441 TC Turks and Caicos Islands 28693.0613
## 15442 TC Turks and Caicos Islands 27623.6702
## 15443 TC Turks and Caicos Islands 26544.3607
## 15444 TC Turks and Caicos Islands 27637.7591
## 15445 TC Turks and Caicos Islands 26183.8850
## 15446 TC Turks and Caicos Islands 23926.6993
## 15447 TC Turks and Caicos Islands 22413.6796
## 15448 TC Turks and Caicos Islands 22609.7380
## 15449 TC Turks and Caicos Islands 23307.9192
## 15450 TC Turks and Caicos Islands NA
## 15451 TC Turks and Caicos Islands NA
## 15452 TC Turks and Caicos Islands NA
## 15453 TC Turks and Caicos Islands NA
## 15454 TC Turks and Caicos Islands NA
## 15455 TC Turks and Caicos Islands NA
## 15456 TC Turks and Caicos Islands NA
## 15457 TC Turks and Caicos Islands NA
## 15458 TC Turks and Caicos Islands NA
## 15459 TC Turks and Caicos Islands NA
## 15460 TC Turks and Caicos Islands NA
## 15461 TC Turks and Caicos Islands NA
## 15462 TC Turks and Caicos Islands NA
## 15463 TC Turks and Caicos Islands NA
## 15464 TC Turks and Caicos Islands NA
## 15465 TC Turks and Caicos Islands NA
## 15466 TC Turks and Caicos Islands NA
## 15467 TC Turks and Caicos Islands NA
## 15468 TC Turks and Caicos Islands NA
## 15469 TC Turks and Caicos Islands NA
## 15470 TC Turks and Caicos Islands NA
## 15471 TC Turks and Caicos Islands NA
## 15472 TC Turks and Caicos Islands NA
## 15473 TC Turks and Caicos Islands NA
## 15474 TC Turks and Caicos Islands NA
## 15475 TC Turks and Caicos Islands NA
## 15476 TC Turks and Caicos Islands NA
## 15477 TC Turks and Caicos Islands NA
## 15478 TC Turks and Caicos Islands NA
## 15479 TC Turks and Caicos Islands NA
## 15480 TC Turks and Caicos Islands NA
## 15481 TC Turks and Caicos Islands NA
## 15482 TC Turks and Caicos Islands NA
## 15483 TC Turks and Caicos Islands NA
## 15484 TC Turks and Caicos Islands NA
## 15485 TC Turks and Caicos Islands NA
## 15486 TC Turks and Caicos Islands NA
## 15487 TC Turks and Caicos Islands NA
## 15488 TC Turks and Caicos Islands NA
## 15489 TC Turks and Caicos Islands NA
## 15490 TC Turks and Caicos Islands NA
## 15491 TC Turks and Caicos Islands NA
## 15492 TC Turks and Caicos Islands NA
## 15493 TC Turks and Caicos Islands NA
## 15494 TC Turks and Caicos Islands NA
## 15495 TC Turks and Caicos Islands NA
## 15496 TC Turks and Caicos Islands NA
## 15497 TC Turks and Caicos Islands NA
## 15498 TC Turks and Caicos Islands NA
## 15499 TC Turks and Caicos Islands NA
## 15500 TC Turks and Caicos Islands NA
## 15501 TV Tuvalu 4018.8355
## 15502 TV Tuvalu 3946.3614
## 15503 TV Tuvalu 3933.1561
## 15504 TV Tuvalu 3501.4739
## 15505 TV Tuvalu 3483.4930
## 15506 TV Tuvalu 3462.9041
## 15507 TV Tuvalu 3316.6645
## 15508 TV Tuvalu 3038.2631
## 15509 TV Tuvalu 3072.9894
## 15510 TV Tuvalu 2973.7288
## 15511 TV Tuvalu 3072.1157
## 15512 TV Tuvalu 2904.7261
## 15513 TV Tuvalu 3001.5541
## 15514 TV Tuvalu 3232.0758
## 15515 TV Tuvalu 3058.5363
## 15516 TV Tuvalu 2883.1295
## 15517 TV Tuvalu 2848.5490
## 15518 TV Tuvalu 3025.6371
## 15519 TV Tuvalu 3142.8037
## 15520 TV Tuvalu 3330.5267
## 15521 TV Tuvalu 3077.8122
## 15522 TV Tuvalu 3105.9949
## 15523 TV Tuvalu 3152.5490
## 15524 TV Tuvalu 3206.7497
## 15525 TV Tuvalu 2777.5679
## 15526 TV Tuvalu 2527.9688
## 15527 TV Tuvalu 2693.7168
## 15528 TV Tuvalu 2847.5678
## 15529 TV Tuvalu 2600.2982
## 15530 TV Tuvalu 2520.6582
## 15531 TV Tuvalu 2478.3846
## 15532 TV Tuvalu 2419.9722
## 15533 TV Tuvalu NA
## 15534 TV Tuvalu NA
## 15535 TV Tuvalu NA
## 15536 TV Tuvalu NA
## 15537 TV Tuvalu NA
## 15538 TV Tuvalu NA
## 15539 TV Tuvalu NA
## 15540 TV Tuvalu NA
## 15541 TV Tuvalu NA
## 15542 TV Tuvalu NA
## 15543 TV Tuvalu NA
## 15544 TV Tuvalu NA
## 15545 TV Tuvalu NA
## 15546 TV Tuvalu NA
## 15547 TV Tuvalu NA
## 15548 TV Tuvalu NA
## 15549 TV Tuvalu NA
## 15550 TV Tuvalu NA
## 15551 TV Tuvalu NA
## 15552 TV Tuvalu NA
## 15553 TV Tuvalu NA
## 15554 TV Tuvalu NA
## 15555 TV Tuvalu NA
## 15556 TV Tuvalu NA
## 15557 TV Tuvalu NA
## 15558 TV Tuvalu NA
## 15559 TV Tuvalu NA
## 15560 TV Tuvalu NA
## 15561 TV Tuvalu NA
## 15562 TV Tuvalu NA
## 15563 UG Uganda 894.3854
## 15564 UG Uganda 891.2959
## 15565 UG Uganda 894.5204
## 15566 UG Uganda 870.7087
## 15567 UG Uganda 850.1622
## 15568 UG Uganda 855.8972
## 15569 UG Uganda 847.2676
## 15570 UG Uganda 834.1526
## 15571 UG Uganda 820.6864
## 15572 UG Uganda 818.3075
## 15573 UG Uganda 813.5351
## 15574 UG Uganda 767.7385
## 15575 UG Uganda 750.2984
## 15576 UG Uganda 725.1252
## 15577 UG Uganda 688.4215
## 15578 UG Uganda 655.3352
## 15579 UG Uganda 610.4893
## 15580 UG Uganda 592.6115
## 15581 UG Uganda 572.7972
## 15582 UG Uganda 555.3576
## 15583 UG Uganda 527.0539
## 15584 UG Uganda 516.7330
## 15585 UG Uganda 516.2225
## 15586 UG Uganda 491.9252
## 15587 UG Uganda 482.6820
## 15588 UG Uganda 472.8539
## 15589 UG Uganda 446.6842
## 15590 UG Uganda 413.0683
## 15591 UG Uganda 400.7109
## 15592 UG Uganda 382.1536
## 15593 UG Uganda 382.0387
## 15594 UG Uganda 374.4318
## 15595 UG Uganda 364.0704
## 15596 UG Uganda 354.6254
## 15597 UG Uganda 339.4501
## 15598 UG Uganda 338.2664
## 15599 UG Uganda 348.7773
## 15600 UG Uganda 372.9078
## 15601 UG Uganda 386.3832
## 15602 UG Uganda 376.9096
## 15603 UG Uganda NA
## 15604 UG Uganda NA
## 15605 UG Uganda NA
## 15606 UG Uganda NA
## 15607 UG Uganda NA
## 15608 UG Uganda NA
## 15609 UG Uganda NA
## 15610 UG Uganda NA
## 15611 UG Uganda NA
## 15612 UG Uganda NA
## 15613 UG Uganda NA
## 15614 UG Uganda NA
## 15615 UG Uganda NA
## 15616 UG Uganda NA
## 15617 UG Uganda NA
## 15618 UG Uganda NA
## 15619 UG Uganda NA
## 15620 UG Uganda NA
## 15621 UG Uganda NA
## 15622 UG Uganda NA
## 15623 UG Uganda NA
## 15624 UG Uganda NA
## 15625 UA Ukraine 2451.9009
## 15626 UA Ukraine 2350.3999
## 15627 UA Ukraine 2425.6345
## 15628 UA Ukraine 2336.9763
## 15629 UA Ukraine 2246.7385
## 15630 UA Ukraine 2185.3171
## 15631 UA Ukraine 2124.6624
## 15632 UA Ukraine 2346.2371
## 15633 UA Ukraine 2466.4841
## 15634 UA Ukraine 2459.7568
## 15635 UA Ukraine 2449.9578
## 15636 UA Ukraine 2315.0999
## 15637 UA Ukraine 2215.2720
## 15638 UA Ukraine 2598.8330
## 15639 UA Ukraine 2528.0811
## 15640 UA Ukraine 2322.2446
## 15641 UA Ukraine 2144.2478
## 15642 UA Ukraine 2065.1663
## 15643 UA Ukraine 1833.3138
## 15644 UA Ukraine 1660.4778
## 15645 UA Ukraine 1561.4100
## 15646 UA Ukraine 1420.1166
## 15647 UA Ukraine 1327.5673
## 15648 UA Ukraine 1317.7463
## 15649 UA Ukraine 1331.3184
## 15650 UA Ukraine 1360.0419
## 15651 UA Ukraine 1497.8099
## 15652 UA Ukraine 1692.5088
## 15653 UA Ukraine 2184.3667
## 15654 UA Ukraine 2547.2878
## 15655 UA Ukraine 2835.3284
## 15656 UA Ukraine 3112.0369
## 15657 UA Ukraine 3330.4805
## 15658 UA Ukraine 3221.9800
## 15659 UA Ukraine 3155.3218
## 15660 UA Ukraine NA
## 15661 UA Ukraine NA
## 15662 UA Ukraine NA
## 15663 UA Ukraine NA
## 15664 UA Ukraine NA
## 15665 UA Ukraine NA
## 15666 UA Ukraine NA
## 15667 UA Ukraine NA
## 15668 UA Ukraine NA
## 15669 UA Ukraine NA
## 15670 UA Ukraine NA
## 15671 UA Ukraine NA
## 15672 UA Ukraine NA
## 15673 UA Ukraine NA
## 15674 UA Ukraine NA
## 15675 UA Ukraine NA
## 15676 UA Ukraine NA
## 15677 UA Ukraine NA
## 15678 UA Ukraine NA
## 15679 UA Ukraine NA
## 15680 UA Ukraine NA
## 15681 UA Ukraine NA
## 15682 UA Ukraine NA
## 15683 UA Ukraine NA
## 15684 UA Ukraine NA
## 15685 UA Ukraine NA
## 15686 UA Ukraine NA
## 15687 AE United Arab Emirates NA
## 15688 AE United Arab Emirates 37497.5807
## 15689 AE United Arab Emirates 40438.3257
## 15690 AE United Arab Emirates 39670.9190
## 15691 AE United Arab Emirates 39798.5091
## 15692 AE United Arab Emirates 39400.0053
## 15693 AE United Arab Emirates 38663.3883
## 15694 AE United Arab Emirates 36995.6900
## 15695 AE United Arab Emirates 35495.7540
## 15696 AE United Arab Emirates 33996.5281
## 15697 AE United Arab Emirates 33246.1301
## 15698 AE United Arab Emirates 32534.8072
## 15699 AE United Arab Emirates 34580.2023
## 15700 AE United Arab Emirates 40755.0989
## 15701 AE United Arab Emirates 45388.6673
## 15702 AE United Arab Emirates 51197.3396
## 15703 AE United Arab Emirates 53844.7058
## 15704 AE United Arab Emirates 57910.2130
## 15705 AE United Arab Emirates 57932.2331
## 15706 AE United Arab Emirates 56815.0664
## 15707 AE United Arab Emirates 58421.8441
## 15708 AE United Arab Emirates 60716.2539
## 15709 AE United Arab Emirates 57875.0740
## 15710 AE United Arab Emirates 59297.9207
## 15711 AE United Arab Emirates 62264.9131
## 15712 AE United Arab Emirates 60548.5642
## 15713 AE United Arab Emirates 60169.0552
## 15714 AE United Arab Emirates 59364.6946
## 15715 AE United Arab Emirates 58633.2887
## 15716 AE United Arab Emirates 61294.5453
## 15717 AE United Arab Emirates 62854.0726
## 15718 AE United Arab Emirates 66023.6263
## 15719 AE United Arab Emirates 59119.7576
## 15720 AE United Arab Emirates 55816.1572
## 15721 AE United Arab Emirates 60813.4793
## 15722 AE United Arab Emirates 62368.0166
## 15723 AE United Arab Emirates 77644.4145
## 15724 AE United Arab Emirates 85032.9507
## 15725 AE United Arab Emirates 86108.7683
## 15726 AE United Arab Emirates 95337.9852
## 15727 AE United Arab Emirates 108563.1766
## 15728 AE United Arab Emirates 111574.2690
## 15729 AE United Arab Emirates 98553.2726
## 15730 AE United Arab Emirates 90889.7686
## 15731 AE United Arab Emirates 104936.6281
## 15732 AE United Arab Emirates 99606.9779
## 15733 AE United Arab Emirates 99453.4265
## 15734 AE United Arab Emirates NA
## 15735 AE United Arab Emirates NA
## 15736 AE United Arab Emirates NA
## 15737 AE United Arab Emirates NA
## 15738 AE United Arab Emirates NA
## 15739 AE United Arab Emirates NA
## 15740 AE United Arab Emirates NA
## 15741 AE United Arab Emirates NA
## 15742 AE United Arab Emirates NA
## 15743 AE United Arab Emirates NA
## 15744 AE United Arab Emirates NA
## 15745 AE United Arab Emirates NA
## 15746 AE United Arab Emirates NA
## 15747 AE United Arab Emirates NA
## 15748 AE United Arab Emirates NA
## 15749 GB United Kingdom 46209.1052
## 15750 GB United Kingdom 43166.1552
## 15751 GB United Kingdom 47750.8797
## 15752 GB United Kingdom 47231.3369
## 15753 GB United Kingdom 46746.6419
## 15754 GB United Kingdom 46081.7153
## 15755 GB United Kingdom 45404.5678
## 15756 GB United Kingdom 44596.1897
## 15757 GB United Kingdom 43621.0592
## 15758 GB United Kingdom 43099.5973
## 15759 GB United Kingdom 42771.6411
## 15760 GB United Kingdom 42487.9254
## 15761 GB United Kingdom 41928.6098
## 15762 GB United Kingdom 44120.9295
## 15763 GB United Kingdom 44576.3677
## 15764 GB United Kingdom 43927.8860
## 15765 GB United Kingdom 43137.2552
## 15766 GB United Kingdom 42336.5542
## 15767 GB United Kingdom 41598.2117
## 15768 GB United Kingdom 40563.3373
## 15769 GB United Kingdom 39888.4993
## 15770 GB United Kingdom 39229.2685
## 15771 GB United Kingdom 37975.0999
## 15772 GB United Kingdom 36995.7094
## 15773 GB United Kingdom 35969.2150
## 15774 GB United Kingdom 34374.5202
## 15775 GB United Kingdom 33645.0733
## 15776 GB United Kingdom 32901.2473
## 15777 GB United Kingdom 31763.4894
## 15778 GB United Kingdom 31066.2355
## 15779 GB United Kingdom 31025.9226
## 15780 GB United Kingdom 31469.1613
## 15781 GB United Kingdom 31333.4620
## 15782 GB United Kingdom 30625.7233
## 15783 GB United Kingdom 29029.7048
## 15784 GB United Kingdom 27602.9439
## 15785 GB United Kingdom 26821.9660
## 15786 GB United Kingdom 25812.3621
## 15787 GB United Kingdom 25279.6243
## 15788 GB United Kingdom 24263.8611
## 15789 GB United Kingdom 23780.7654
## 15790 GB United Kingdom 23977.9324
## 15791 GB United Kingdom 24504.3814
## 15792 GB United Kingdom 23640.1072
## 15793 GB United Kingdom 22687.5314
## 15794 GB United Kingdom 22136.0261
## 15795 GB United Kingdom 21504.7354
## 15796 GB United Kingdom 21824.7596
## 15797 GB United Kingdom 22394.9064
## 15798 GB United Kingdom 21064.0294
## 15799 GB United Kingdom 20259.9999
## 15800 GB United Kingdom 19655.9120
## 15801 GB United Kingdom 18561.7283
## 15802 GB United Kingdom 18287.2057
## 15803 GB United Kingdom 17428.1584
## 15804 GB United Kingdom 17047.2525
## 15805 GB United Kingdom 16876.0174
## 15806 GB United Kingdom 16628.5761
## 15807 GB United Kingdom 15859.4491
## 15808 GB United Kingdom 15235.9237
## 15809 GB United Kingdom 15198.1534
## 15810 GB United Kingdom 14914.8808
## 15811 US United States 61280.3896
## 15812 US United States 58060.3139
## 15813 US United States 60687.2323
## 15814 US United States 59600.0531
## 15815 US United States 58215.4116
## 15816 US United States 57292.5388
## 15817 US United States 56762.7295
## 15818 US United States 55675.3869
## 15819 US United States 54830.7841
## 15820 US United States 54213.4596
## 15821 US United States 53394.8618
## 15822 US United States 52963.4642
## 15823 US United States 51996.1835
## 15824 US United States 53854.1606
## 15825 US United States 54299.6172
## 15826 US United States 53738.0917
## 15827 US United States 52789.7314
## 15828 US United States 51485.2074
## 15829 US United States 50036.2342
## 15830 US United States 49095.3318
## 15831 US United States 48726.5817
## 15832 US United States 48746.0410
## 15833 US United States 47360.5364
## 15834 US United States 45715.6926
## 15835 US United States 44267.9059
## 15836 US United States 42896.4165
## 15837 US United States 41820.6802
## 15838 US United States 41215.3429
## 15839 US United States 40108.0080
## 15840 US United States 39552.0219
## 15841 US United States 38739.7983
## 15842 US United States 39303.4890
## 15843 US United States 39014.2041
## 15844 US United States 37989.1924
## 15845 US United States 36798.6044
## 15846 US United States 35887.5545
## 15847 US United States 35008.5302
## 15848 US United States 33906.3512
## 15849 US United States 31893.1990
## 15850 US United States 30775.4414
## 15851 US United States 31640.6778
## 15852 US United States 31161.9307
## 15853 US United States 31543.3843
## 15854 US United States 30914.6159
## 15855 US United States 29605.1833
## 15856 US United States 28582.7368
## 15857 US United States 27380.3394
## 15858 US United States 27708.5700
## 15859 US United States 28114.8676
## 15860 US United States 26867.6303
## 15861 US United States 25800.0013
## 15862 US United States 25295.2100
## 15863 US United States 25664.3794
## 15864 US United States 25137.1602
## 15865 US United States 24226.5288
## 15866 US United States 23894.4082
## 15867 US United States 22696.6786
## 15868 US United States 21599.8187
## 15869 US United States 20701.2699
## 15870 US United States 20116.2351
## 15871 US United States 19253.5473
## 15872 US United States 19135.2682
## 15873 UY Uruguay 15606.4871
## 15874 UY Uruguay 15002.6494
## 15875 UY Uruguay 16036.2964
## 15876 UY Uruguay 16037.9321
## 15877 UY Uruguay 16020.3805
## 15878 UY Uruguay 15821.3590
## 15879 UY Uruguay 15613.7460
## 15880 UY Uruguay 15609.0211
## 15881 UY Uruguay 15168.4186
## 15882 UY Uruguay 14541.0327
## 15883 UY Uruguay 14086.0179
## 15884 UY Uruguay 13433.0621
## 15885 UY Uruguay 12496.4030
## 15886 UY Uruguay 12021.6384
## 15887 UY Uruguay 11245.2195
## 15888 UY Uruguay 10574.9323
## 15889 UY Uruguay 10169.5969
## 15890 UY Uruguay 9464.4916
## 15891 UY Uruguay 9007.5460
## 15892 UY Uruguay 8929.1817
## 15893 UY Uruguay 9679.1156
## 15894 UY Uruguay 10083.4640
## 15895 UY Uruguay 10318.3534
## 15896 UY Uruguay 10576.6054
## 15897 UY Uruguay 10183.9827
## 15898 UY Uruguay 9447.8354
## 15899 UY Uruguay 9012.8158
## 15900 UY Uruguay 9211.2692
## 15901 UY Uruguay 8649.3530
## 15902 UY Uruguay 8487.6097
## 15903 UY Uruguay 7921.1370
## 15904 UY Uruguay 7704.6747
## 15905 UY Uruguay 7734.0507
## 15906 UY Uruguay 7699.1853
## 15907 UY Uruguay 7634.4287
## 15908 UY Uruguay 7113.5213
## 15909 UY Uruguay 6579.1064
## 15910 UY Uruguay 6525.7706
## 15911 UY Uruguay 6643.8322
## 15912 UY Uruguay 7452.7314
## 15913 UY Uruguay 8312.7057
## 15914 UY Uruguay 8239.0578
## 15915 UY Uruguay 7837.1698
## 15916 UY Uruguay 7430.9128
## 15917 UY Uruguay 7098.2633
## 15918 UY Uruguay 7034.8135
## 15919 UY Uruguay 6795.2262
## 15920 UY Uruguay 6418.5170
## 15921 UY Uruguay 6242.2912
## 15922 UY Uruguay 6226.6025
## 15923 UY Uruguay 6316.9741
## 15924 UY Uruguay 6352.0366
## 15925 UY Uruguay 6239.9926
## 15926 UY Uruguay 5937.3782
## 15927 UY Uruguay 5879.5801
## 15928 UY Uruguay 6163.7554
## 15929 UY Uruguay 6043.4667
## 15930 UY Uruguay 6046.3494
## 15931 UY Uruguay 5970.0761
## 15932 UY Uruguay 6031.4253
## 15933 UY Uruguay 6204.6422
## 15934 UY Uruguay 6132.4943
## 15935 UZ Uzbekistan 3327.7803
## 15936 UZ Uzbekistan 3159.7260
## 15937 UZ Uzbekistan 3161.4154
## 15938 UZ Uzbekistan 3047.3084
## 15939 UZ Uzbekistan 2943.0992
## 15940 UZ Uzbekistan 2867.0511
## 15941 UZ Uzbekistan 2753.9711
## 15942 UZ Uzbekistan 2613.7483
## 15943 UZ Uzbekistan 2487.2444
## 15944 UZ Uzbekistan 2354.5937
## 15945 UZ Uzbekistan 2231.0527
## 15946 UZ Uzbekistan 2131.3577
## 15947 UZ Uzbekistan 2037.5815
## 15948 UZ Uzbekistan 1917.8494
## 15949 UZ Uzbekistan 1787.4902
## 15950 UZ Uzbekistan 1656.2226
## 15951 UZ Uzbekistan 1560.2920
## 15952 UZ Uzbekistan 1475.9697
## 15953 UZ Uzbekistan 1389.5872
## 15954 UZ Uzbekistan 1348.7638
## 15955 UZ Uzbekistan 1313.1923
## 15956 UZ Uzbekistan 1276.7603
## 15957 UZ Uzbekistan 1246.7378
## 15958 UZ Uzbekistan 1208.2926
## 15959 UZ Uzbekistan 1177.2745
## 15960 UZ Uzbekistan 1140.3798
## 15961 UZ Uzbekistan 1142.9711
## 15962 UZ Uzbekistan 1174.3803
## 15963 UZ Uzbekistan 1263.3569
## 15964 UZ Uzbekistan 1322.8197
## 15965 UZ Uzbekistan 1524.9980
## 15966 UZ Uzbekistan 1565.5650
## 15967 UZ Uzbekistan 1586.6996
## 15968 UZ Uzbekistan 1576.6594
## 15969 UZ Uzbekistan 1480.2282
## 15970 UZ Uzbekistan NA
## 15971 UZ Uzbekistan NA
## 15972 UZ Uzbekistan NA
## 15973 UZ Uzbekistan NA
## 15974 UZ Uzbekistan NA
## 15975 UZ Uzbekistan NA
## 15976 UZ Uzbekistan NA
## 15977 UZ Uzbekistan NA
## 15978 UZ Uzbekistan NA
## 15979 UZ Uzbekistan NA
## 15980 UZ Uzbekistan NA
## 15981 UZ Uzbekistan NA
## 15982 UZ Uzbekistan NA
## 15983 UZ Uzbekistan NA
## 15984 UZ Uzbekistan NA
## 15985 UZ Uzbekistan NA
## 15986 UZ Uzbekistan NA
## 15987 UZ Uzbekistan NA
## 15988 UZ Uzbekistan NA
## 15989 UZ Uzbekistan NA
## 15990 UZ Uzbekistan NA
## 15991 UZ Uzbekistan NA
## 15992 UZ Uzbekistan NA
## 15993 UZ Uzbekistan NA
## 15994 UZ Uzbekistan NA
## 15995 UZ Uzbekistan NA
## 15996 UZ Uzbekistan NA
## 15997 VU Vanuatu 2613.4894
## 15998 VU Vanuatu 2661.5728
## 15999 VU Vanuatu 2881.7490
## 16000 VU Vanuatu 2860.0125
## 16001 VU Vanuatu 2849.2635
## 16002 VU Vanuatu 2749.0739
## 16003 VU Vanuatu 2695.6662
## 16004 VU Vanuatu 2759.3709
## 16005 VU Vanuatu 2751.3209
## 16006 VU Vanuatu 2816.7667
## 16007 VU Vanuatu 2867.2860
## 16008 VU Vanuatu 2855.8681
## 16009 VU Vanuatu 2893.4654
## 16010 VU Vanuatu 2877.4600
## 16011 VU Vanuatu 2789.7986
## 16012 VU Vanuatu 2776.2473
## 16013 VU Vanuatu 2621.9129
## 16014 VU Vanuatu 2552.7475
## 16015 VU Vanuatu 2518.5660
## 16016 VU Vanuatu 2477.6793
## 16017 VU Vanuatu 2678.7090
## 16018 VU Vanuatu 2836.5610
## 16019 VU Vanuatu 2732.6378
## 16020 VU Vanuatu 2773.5180
## 16021 VU Vanuatu 2789.3697
## 16022 VU Vanuatu 2708.3887
## 16023 VU Vanuatu 2702.8221
## 16024 VU Vanuatu 2741.7113
## 16025 VU Vanuatu 2582.4481
## 16026 VU Vanuatu 2639.0436
## 16027 VU Vanuatu 2648.6244
## 16028 VU Vanuatu 2640.3792
## 16029 VU Vanuatu 2426.3783
## 16030 VU Vanuatu 2449.4971
## 16031 VU Vanuatu 2551.0793
## 16032 VU Vanuatu 2688.0881
## 16033 VU Vanuatu 2754.2496
## 16034 VU Vanuatu 2789.8415
## 16035 VU Vanuatu 2604.3722
## 16036 VU Vanuatu 2586.9066
## 16037 VU Vanuatu 2597.7112
## 16038 VU Vanuatu 2552.2232
## 16039 VU Vanuatu 2958.8014
## 16040 VU Vanuatu NA
## 16041 VU Vanuatu NA
## 16042 VU Vanuatu NA
## 16043 VU Vanuatu NA
## 16044 VU Vanuatu NA
## 16045 VU Vanuatu NA
## 16046 VU Vanuatu NA
## 16047 VU Vanuatu NA
## 16048 VU Vanuatu NA
## 16049 VU Vanuatu NA
## 16050 VU Vanuatu NA
## 16051 VU Vanuatu NA
## 16052 VU Vanuatu NA
## 16053 VU Vanuatu NA
## 16054 VU Vanuatu NA
## 16055 VU Vanuatu NA
## 16056 VU Vanuatu NA
## 16057 VU Vanuatu NA
## 16058 VU Vanuatu NA
## 16059 VE Venezuela, RB NA
## 16060 VE Venezuela, RB NA
## 16061 VE Venezuela, RB NA
## 16062 VE Venezuela, RB NA
## 16063 VE Venezuela, RB NA
## 16064 VE Venezuela, RB NA
## 16065 VE Venezuela, RB NA
## 16066 VE Venezuela, RB NA
## 16067 VE Venezuela, RB NA
## 16068 VE Venezuela, RB NA
## 16069 VE Venezuela, RB NA
## 16070 VE Venezuela, RB NA
## 16071 VE Venezuela, RB NA
## 16072 VE Venezuela, RB NA
## 16073 VE Venezuela, RB NA
## 16074 VE Venezuela, RB NA
## 16075 VE Venezuela, RB NA
## 16076 VE Venezuela, RB NA
## 16077 VE Venezuela, RB NA
## 16078 VE Venezuela, RB NA
## 16079 VE Venezuela, RB NA
## 16080 VE Venezuela, RB NA
## 16081 VE Venezuela, RB NA
## 16082 VE Venezuela, RB NA
## 16083 VE Venezuela, RB NA
## 16084 VE Venezuela, RB NA
## 16085 VE Venezuela, RB NA
## 16086 VE Venezuela, RB NA
## 16087 VE Venezuela, RB NA
## 16088 VE Venezuela, RB NA
## 16089 VE Venezuela, RB NA
## 16090 VE Venezuela, RB NA
## 16091 VE Venezuela, RB NA
## 16092 VE Venezuela, RB NA
## 16093 VE Venezuela, RB NA
## 16094 VE Venezuela, RB NA
## 16095 VE Venezuela, RB NA
## 16096 VE Venezuela, RB NA
## 16097 VE Venezuela, RB NA
## 16098 VE Venezuela, RB NA
## 16099 VE Venezuela, RB NA
## 16100 VE Venezuela, RB NA
## 16101 VE Venezuela, RB NA
## 16102 VE Venezuela, RB NA
## 16103 VE Venezuela, RB NA
## 16104 VE Venezuela, RB NA
## 16105 VE Venezuela, RB NA
## 16106 VE Venezuela, RB NA
## 16107 VE Venezuela, RB NA
## 16108 VE Venezuela, RB NA
## 16109 VE Venezuela, RB NA
## 16110 VE Venezuela, RB NA
## 16111 VE Venezuela, RB NA
## 16112 VE Venezuela, RB NA
## 16113 VE Venezuela, RB NA
## 16114 VE Venezuela, RB NA
## 16115 VE Venezuela, RB NA
## 16116 VE Venezuela, RB NA
## 16117 VE Venezuela, RB NA
## 16118 VE Venezuela, RB NA
## 16119 VE Venezuela, RB NA
## 16120 VE Venezuela, RB NA
## 16121 VN Vietnam 3373.0825
## 16122 VN Vietnam 3316.0043
## 16123 VN Vietnam 3250.5675
## 16124 VN Vietnam 3062.7492
## 16125 VN Vietnam 2885.5917
## 16126 VN Vietnam 2725.9970
## 16127 VN Vietnam 2581.6224
## 16128 VN Vietnam 2438.2990
## 16129 VN Vietnam 2315.4723
## 16130 VN Vietnam 2216.9441
## 16131 VN Vietnam 2123.3716
## 16132 VN Vietnam 2015.9626
## 16133 VN Vietnam 1913.3284
## 16134 VN Vietnam 1833.2052
## 16135 VN Vietnam 1751.7080
## 16136 VN Vietnam 1650.6298
## 16137 VN Vietnam 1557.4085
## 16138 VN Vietnam 1461.5371
## 16139 VN Vietnam 1371.6788
## 16140 VN Vietnam 1295.2278
## 16141 VN Vietnam 1230.1740
## 16142 VN Vietnam 1170.4960
## 16143 VN Vietnam 1108.2287
## 16144 VN Vietnam 1070.1962
## 16145 VN Vietnam 1024.7564
## 16146 VN Vietnam 960.7734
## 16147 VN Vietnam 892.2890
## 16148 VN Vietnam 828.5018
## 16149 VN Vietnam 775.4410
## 16150 VN Vietnam 731.8595
## 16151 VN Vietnam 687.6512
## 16152 VN Vietnam 662.7897
## 16153 VN Vietnam 644.2544
## 16154 VN Vietnam 613.2378
## 16155 VN Vietnam 596.2741
## 16156 VN Vietnam 588.6581
## 16157 VN Vietnam 585.8231
## 16158 VN Vietnam 577.4702
## 16159 VN Vietnam NA
## 16160 VN Vietnam NA
## 16161 VN Vietnam NA
## 16162 VN Vietnam NA
## 16163 VN Vietnam NA
## 16164 VN Vietnam NA
## 16165 VN Vietnam NA
## 16166 VN Vietnam NA
## 16167 VN Vietnam NA
## 16168 VN Vietnam NA
## 16169 VN Vietnam NA
## 16170 VN Vietnam NA
## 16171 VN Vietnam NA
## 16172 VN Vietnam NA
## 16173 VN Vietnam NA
## 16174 VN Vietnam NA
## 16175 VN Vietnam NA
## 16176 VN Vietnam NA
## 16177 VN Vietnam NA
## 16178 VN Vietnam NA
## 16179 VN Vietnam NA
## 16180 VN Vietnam NA
## 16181 VN Vietnam NA
## 16182 VN Vietnam NA
## 16183 VI Virgin Islands (U.S.) NA
## 16184 VI Virgin Islands (U.S.) 35620.8719
## 16185 VI Virgin Islands (U.S.) 36273.0951
## 16186 VI Virgin Islands (U.S.) 35183.2358
## 16187 VI Virgin Islands (U.S.) 34435.4944
## 16188 VI Virgin Islands (U.S.) 34614.7483
## 16189 VI Virgin Islands (U.S.) 34007.3529
## 16190 VI Virgin Islands (U.S.) 34098.7110
## 16191 VI Virgin Islands (U.S.) 34663.6461
## 16192 VI Virgin Islands (U.S.) 36938.1682
## 16193 VI Virgin Islands (U.S.) 43320.1768
## 16194 VI Virgin Islands (U.S.) 47162.7376
## 16195 VI Virgin Islands (U.S.) 46862.8076
## 16196 VI Virgin Islands (U.S.) 50174.7529
## 16197 VI Virgin Islands (U.S.) 49598.1259
## 16198 VI Virgin Islands (U.S.) 47671.5672
## 16199 VI Virgin Islands (U.S.) 46021.5906
## 16200 VI Virgin Islands (U.S.) 44466.2872
## 16201 VI Virgin Islands (U.S.) 43036.1815
## 16202 VI Virgin Islands (U.S.) 43205.7247
## 16203 VI Virgin Islands (U.S.) NA
## 16204 VI Virgin Islands (U.S.) NA
## 16205 VI Virgin Islands (U.S.) NA
## 16206 VI Virgin Islands (U.S.) NA
## 16207 VI Virgin Islands (U.S.) NA
## 16208 VI Virgin Islands (U.S.) NA
## 16209 VI Virgin Islands (U.S.) NA
## 16210 VI Virgin Islands (U.S.) NA
## 16211 VI Virgin Islands (U.S.) NA
## 16212 VI Virgin Islands (U.S.) NA
## 16213 VI Virgin Islands (U.S.) NA
## 16214 VI Virgin Islands (U.S.) NA
## 16215 VI Virgin Islands (U.S.) NA
## 16216 VI Virgin Islands (U.S.) NA
## 16217 VI Virgin Islands (U.S.) NA
## 16218 VI Virgin Islands (U.S.) NA
## 16219 VI Virgin Islands (U.S.) NA
## 16220 VI Virgin Islands (U.S.) NA
## 16221 VI Virgin Islands (U.S.) NA
## 16222 VI Virgin Islands (U.S.) NA
## 16223 VI Virgin Islands (U.S.) NA
## 16224 VI Virgin Islands (U.S.) NA
## 16225 VI Virgin Islands (U.S.) NA
## 16226 VI Virgin Islands (U.S.) NA
## 16227 VI Virgin Islands (U.S.) NA
## 16228 VI Virgin Islands (U.S.) NA
## 16229 VI Virgin Islands (U.S.) NA
## 16230 VI Virgin Islands (U.S.) NA
## 16231 VI Virgin Islands (U.S.) NA
## 16232 VI Virgin Islands (U.S.) NA
## 16233 VI Virgin Islands (U.S.) NA
## 16234 VI Virgin Islands (U.S.) NA
## 16235 VI Virgin Islands (U.S.) NA
## 16236 VI Virgin Islands (U.S.) NA
## 16237 VI Virgin Islands (U.S.) NA
## 16238 VI Virgin Islands (U.S.) NA
## 16239 VI Virgin Islands (U.S.) NA
## 16240 VI Virgin Islands (U.S.) NA
## 16241 VI Virgin Islands (U.S.) NA
## 16242 VI Virgin Islands (U.S.) NA
## 16243 VI Virgin Islands (U.S.) NA
## 16244 VI Virgin Islands (U.S.) NA
## 16245 PS West Bank and Gaza 3052.5830
## 16246 PS West Bank and Gaza 2922.4680
## 16247 PS West Bank and Gaza 3378.4346
## 16248 PS West Bank and Gaza 3417.7944
## 16249 PS West Bank and Gaza 3462.9799
## 16250 PS West Bank and Gaza 3483.0990
## 16251 PS West Bank and Gaza 3272.1543
## 16252 PS West Bank and Gaza 3227.8493
## 16253 PS West Bank and Gaza 3309.6312
## 16254 PS West Bank and Gaza 3237.9162
## 16255 PS West Bank and Gaza 3128.1081
## 16256 PS West Bank and Gaza 2927.0810
## 16257 PS West Bank and Gaza 2840.0159
## 16258 PS West Bank and Gaza 2685.9860
## 16259 PS West Bank and Gaza 2569.9843
## 16260 PS West Bank and Gaza 2540.2676
## 16261 PS West Bank and Gaza 2632.2463
## 16262 PS West Bank and Gaza 2426.4157
## 16263 PS West Bank and Gaza 2041.5922
## 16264 PS West Bank and Gaza 1836.9656
## 16265 PS West Bank and Gaza 2153.4598
## 16266 PS West Bank and Gaza 2436.0030
## 16267 PS West Bank and Gaza 2732.8810
## 16268 PS West Bank and Gaza 2589.2152
## 16269 PS West Bank and Gaza 2323.2148
## 16270 PS West Bank and Gaza 2118.8354
## 16271 PS West Bank and Gaza 2189.2677
## 16272 PS West Bank and Gaza 2137.3787
## 16273 PS West Bank and Gaza NA
## 16274 PS West Bank and Gaza NA
## 16275 PS West Bank and Gaza NA
## 16276 PS West Bank and Gaza NA
## 16277 PS West Bank and Gaza NA
## 16278 PS West Bank and Gaza NA
## 16279 PS West Bank and Gaza NA
## 16280 PS West Bank and Gaza NA
## 16281 PS West Bank and Gaza NA
## 16282 PS West Bank and Gaza NA
## 16283 PS West Bank and Gaza NA
## 16284 PS West Bank and Gaza NA
## 16285 PS West Bank and Gaza NA
## 16286 PS West Bank and Gaza NA
## 16287 PS West Bank and Gaza NA
## 16288 PS West Bank and Gaza NA
## 16289 PS West Bank and Gaza NA
## 16290 PS West Bank and Gaza NA
## 16291 PS West Bank and Gaza NA
## 16292 PS West Bank and Gaza NA
## 16293 PS West Bank and Gaza NA
## 16294 PS West Bank and Gaza NA
## 16295 PS West Bank and Gaza NA
## 16296 PS West Bank and Gaza NA
## 16297 PS West Bank and Gaza NA
## 16298 PS West Bank and Gaza NA
## 16299 PS West Bank and Gaza NA
## 16300 PS West Bank and Gaza NA
## 16301 PS West Bank and Gaza NA
## 16302 PS West Bank and Gaza NA
## 16303 PS West Bank and Gaza NA
## 16304 PS West Bank and Gaza NA
## 16305 PS West Bank and Gaza NA
## 16306 PS West Bank and Gaza NA
## 16307 YE Yemen, Rep. 1096.3913
## 16308 YE Yemen, Rep. 1144.4167
## 16309 YE Yemen, Rep. 1279.2089
## 16310 YE Yemen, Rep. 1290.9068
## 16311 YE Yemen, Rep. 1311.8247
## 16312 YE Yemen, Rep. 1415.8191
## 16313 YE Yemen, Rep. 1601.8072
## 16314 YE Yemen, Rep. 2282.6592
## 16315 YE Yemen, Rep. 2348.4840
## 16316 YE Yemen, Rep. 2302.1154
## 16317 YE Yemen, Rep. 2311.1720
## 16318 YE Yemen, Rep. 2722.4825
## 16319 YE Yemen, Rep. 2599.4528
## 16320 YE Yemen, Rep. 2574.0642
## 16321 YE Yemen, Rep. 2554.6165
## 16322 YE Yemen, Rep. 2543.1717
## 16323 YE Yemen, Rep. 2536.1526
## 16324 YE Yemen, Rep. 2471.5817
## 16325 YE Yemen, Rep. 2446.6493
## 16326 YE Yemen, Rep. 2427.4901
## 16327 YE Yemen, Rep. 2404.0521
## 16328 YE Yemen, Rep. 2383.7140
## 16329 YE Yemen, Rep. 2309.6657
## 16330 YE Yemen, Rep. 2289.3397
## 16331 YE Yemen, Rep. 2223.7793
## 16332 YE Yemen, Rep. 2182.4125
## 16333 YE Yemen, Rep. 2163.4945
## 16334 YE Yemen, Rep. 2135.5864
## 16335 YE Yemen, Rep. 2098.4622
## 16336 YE Yemen, Rep. 2123.6178
## 16337 YE Yemen, Rep. 2066.5577
## 16338 YE Yemen, Rep. 2042.5122
## 16339 YE Yemen, Rep. NA
## 16340 YE Yemen, Rep. NA
## 16341 YE Yemen, Rep. NA
## 16342 YE Yemen, Rep. NA
## 16343 YE Yemen, Rep. NA
## 16344 YE Yemen, Rep. NA
## 16345 YE Yemen, Rep. NA
## 16346 YE Yemen, Rep. NA
## 16347 YE Yemen, Rep. NA
## 16348 YE Yemen, Rep. NA
## 16349 YE Yemen, Rep. NA
## 16350 YE Yemen, Rep. NA
## 16351 YE Yemen, Rep. NA
## 16352 YE Yemen, Rep. NA
## 16353 YE Yemen, Rep. NA
## 16354 YE Yemen, Rep. NA
## 16355 YE Yemen, Rep. NA
## 16356 YE Yemen, Rep. NA
## 16357 YE Yemen, Rep. NA
## 16358 YE Yemen, Rep. NA
## 16359 YE Yemen, Rep. NA
## 16360 YE Yemen, Rep. NA
## 16361 YE Yemen, Rep. NA
## 16362 YE Yemen, Rep. NA
## 16363 YE Yemen, Rep. NA
## 16364 YE Yemen, Rep. NA
## 16365 YE Yemen, Rep. NA
## 16366 YE Yemen, Rep. NA
## 16367 YE Yemen, Rep. NA
## 16368 YE Yemen, Rep. NA
## 16369 ZM Zambia 1281.9672
## 16370 ZM Zambia 1273.8796
## 16371 ZM Zambia 1348.7384
## 16372 ZM Zambia 1368.6018
## 16373 ZM Zambia 1354.4071
## 16374 ZM Zambia 1347.7481
## 16375 ZM Zambia 1338.2909
## 16376 ZM Zambia 1340.8110
## 16377 ZM Zambia 1321.2488
## 16378 ZM Zambia 1297.7626
## 16379 ZM Zambia 1244.1378
## 16380 ZM Zambia 1214.6950
## 16381 ZM Zambia 1133.8534
## 16382 ZM Zambia 1067.7552
## 16383 ZM Zambia 1018.1197
## 16384 ZM Zambia 965.0656
## 16385 ZM Zambia 918.3104
## 16386 ZM Zambia 879.0054
## 16387 ZM Zambia 842.6937
## 16388 ZM Zambia 808.4402
## 16389 ZM Zambia 793.8049
## 16390 ZM Zambia 773.7207
## 16391 ZM Zambia 764.9205
## 16392 ZM Zambia 751.2361
## 16393 ZM Zambia 775.2715
## 16394 ZM Zambia 767.4077
## 16395 ZM Zambia 741.7903
## 16396 ZM Zambia 739.3396
## 16397 ZM Zambia 829.0644
## 16398 ZM Zambia 795.1402
## 16399 ZM Zambia 829.2291
## 16400 ZM Zambia 851.1848
## 16401 ZM Zambia 878.9946
## 16402 ZM Zambia 914.0231
## 16403 ZM Zambia 886.3042
## 16404 ZM Zambia 890.4881
## 16405 ZM Zambia 912.6698
## 16406 ZM Zambia 927.8613
## 16407 ZM Zambia 962.5442
## 16408 ZM Zambia 1015.7071
## 16409 ZM Zambia 1081.4355
## 16410 ZM Zambia 1054.0383
## 16411 ZM Zambia 1058.3742
## 16412 ZM Zambia 1128.8757
## 16413 ZM Zambia 1161.0285
## 16414 ZM Zambia 1258.1284
## 16415 ZM Zambia 1225.0684
## 16416 ZM Zambia 1296.6816
## 16417 ZM Zambia 1260.3421
## 16418 ZM Zambia 1316.2886
## 16419 ZM Zambia 1246.2999
## 16420 ZM Zambia 1289.2095
## 16421 ZM Zambia 1270.7351
## 16422 ZM Zambia 1317.6303
## 16423 ZM Zambia 1342.8450
## 16424 ZM Zambia 1283.4762
## 16425 ZM Zambia 1401.6274
## 16426 ZM Zambia 1238.8059
## 16427 ZM Zambia 1137.8445
## 16428 ZM Zambia 1135.3957
## 16429 ZM Zambia 1199.8406
## 16430 ZM Zambia 1219.7873
## 16431 ZW Zimbabwe 1362.4520
## 16432 ZW Zimbabwe 1307.0136
## 16433 ZW Zimbabwe 1414.8291
## 16434 ZW Zimbabwe 1529.0264
## 16435 ZW Zimbabwe 1479.3761
## 16436 ZW Zimbabwe 1433.6088
## 16437 ZW Zimbabwe 1445.0697
## 16438 ZW Zimbabwe 1443.6178
## 16439 ZW Zimbabwe 1435.0627
## 16440 ZW Zimbabwe 1432.3059
## 16441 ZW Zimbabwe 1248.7292
## 16442 ZW Zimbabwe 1110.4470
## 16443 ZW Zimbabwe 940.5317
## 16444 ZW Zimbabwe 849.6116
## 16445 ZW Zimbabwe 1042.3553
## 16446 ZW Zimbabwe 1090.8180
## 16447 ZW Zimbabwe 1137.3032
## 16448 ZW Zimbabwe 1211.8881
## 16449 ZW Zimbabwe 1290.6556
## 16450 ZW Zimbabwe 1558.5469
## 16451 ZW Zimbabwe 1715.0562
## 16452 ZW Zimbabwe 1696.7533
## 16453 ZW Zimbabwe 1758.9973
## 16454 ZW Zimbabwe 1784.9215
## 16455 ZW Zimbabwe 1748.8350
## 16456 ZW Zimbabwe 1719.7137
## 16457 ZW Zimbabwe 1576.0869
## 16458 ZW Zimbabwe 1594.4156
## 16459 ZW Zimbabwe 1481.8515
## 16460 ZW Zimbabwe 1492.2976
## 16461 ZW Zimbabwe 1673.8749
## 16462 ZW Zimbabwe 1623.9302
## 16463 ZW Zimbabwe 1559.4944
## 16464 ZW Zimbabwe 1528.2769
## 16465 ZW Zimbabwe 1468.9753
## 16466 ZW Zimbabwe 1503.8894
## 16467 ZW Zimbabwe 1526.5079
## 16468 ZW Zimbabwe 1479.9357
## 16469 ZW Zimbabwe 1564.9161
## 16470 ZW Zimbabwe 1597.8901
## 16471 ZW Zimbabwe 1614.2101
## 16472 ZW Zimbabwe 1486.2190
## 16473 ZW Zimbabwe 1344.0081
## 16474 ZW Zimbabwe 1344.3619
## 16475 ZW Zimbabwe 1426.3991
## 16476 ZW Zimbabwe 1580.9883
## 16477 ZW Zimbabwe 1625.8528
## 16478 ZW Zimbabwe 1714.7564
## 16479 ZW Zimbabwe 1664.9440
## 16480 ZW Zimbabwe 1680.9656
## 16481 ZW Zimbabwe 1607.5065
## 16482 ZW Zimbabwe 1528.2575
## 16483 ZW Zimbabwe 1290.3132
## 16484 ZW Zimbabwe 1187.0234
## 16485 ZW Zimbabwe 1203.5617
## 16486 ZW Zimbabwe 1148.2261
## 16487 ZW Zimbabwe 1169.4894
## 16488 ZW Zimbabwe 1152.9977
## 16489 ZW Zimbabwe 1206.1072
## 16490 ZW Zimbabwe 1174.4314
## 16491 ZW Zimbabwe 1197.6038
## 16492 ZW Zimbabwe 1164.7402
## year
## 1 2021
## 2 2020
## 3 2019
## 4 2018
## 5 2017
## 6 2016
## 7 2015
## 8 2014
## 9 2013
## 10 2012
## 11 2011
## 12 2010
## 13 2009
## 14 2008
## 15 2007
## 16 2006
## 17 2005
## 18 2004
## 19 2003
## 20 2002
## 21 2001
## 22 2000
## 23 1999
## 24 1998
## 25 1997
## 26 1996
## 27 1995
## 28 1994
## 29 1993
## 30 1992
## 31 1991
## 32 1990
## 33 1989
## 34 1988
## 35 1987
## 36 1986
## 37 1985
## 38 1984
## 39 1983
## 40 1982
## 41 1981
## 42 1980
## 43 1979
## 44 1978
## 45 1977
## 46 1976
## 47 1975
## 48 1974
## 49 1973
## 50 1972
## 51 1971
## 52 1970
## 53 1969
## 54 1968
## 55 1967
## 56 1966
## 57 1965
## 58 1964
## 59 1963
## 60 1962
## 61 1961
## 62 1960
## 63 2021
## 64 2020
## 65 2019
## 66 2018
## 67 2017
## 68 2016
## 69 2015
## 70 2014
## 71 2013
## 72 2012
## 73 2011
## 74 2010
## 75 2009
## 76 2008
## 77 2007
## 78 2006
## 79 2005
## 80 2004
## 81 2003
## 82 2002
## 83 2001
## 84 2000
## 85 1999
## 86 1998
## 87 1997
## 88 1996
## 89 1995
## 90 1994
## 91 1993
## 92 1992
## 93 1991
## 94 1990
## 95 1989
## 96 1988
## 97 1987
## 98 1986
## 99 1985
## 100 1984
## 101 1983
## 102 1982
## 103 1981
## 104 1980
## 105 1979
## 106 1978
## 107 1977
## 108 1976
## 109 1975
## 110 1974
## 111 1973
## 112 1972
## 113 1971
## 114 1970
## 115 1969
## 116 1968
## 117 1967
## 118 1966
## 119 1965
## 120 1964
## 121 1963
## 122 1962
## 123 1961
## 124 1960
## 125 2021
## 126 2020
## 127 2019
## 128 2018
## 129 2017
## 130 2016
## 131 2015
## 132 2014
## 133 2013
## 134 2012
## 135 2011
## 136 2010
## 137 2009
## 138 2008
## 139 2007
## 140 2006
## 141 2005
## 142 2004
## 143 2003
## 144 2002
## 145 2001
## 146 2000
## 147 1999
## 148 1998
## 149 1997
## 150 1996
## 151 1995
## 152 1994
## 153 1993
## 154 1992
## 155 1991
## 156 1990
## 157 1989
## 158 1988
## 159 1987
## 160 1986
## 161 1985
## 162 1984
## 163 1983
## 164 1982
## 165 1981
## 166 1980
## 167 1979
## 168 1978
## 169 1977
## 170 1976
## 171 1975
## 172 1974
## 173 1973
## 174 1972
## 175 1971
## 176 1970
## 177 1969
## 178 1968
## 179 1967
## 180 1966
## 181 1965
## 182 1964
## 183 1963
## 184 1962
## 185 1961
## 186 1960
## 187 2021
## 188 2020
## 189 2019
## 190 2018
## 191 2017
## 192 2016
## 193 2015
## 194 2014
## 195 2013
## 196 2012
## 197 2011
## 198 2010
## 199 2009
## 200 2008
## 201 2007
## 202 2006
## 203 2005
## 204 2004
## 205 2003
## 206 2002
## 207 2001
## 208 2000
## 209 1999
## 210 1998
## 211 1997
## 212 1996
## 213 1995
## 214 1994
## 215 1993
## 216 1992
## 217 1991
## 218 1990
## 219 1989
## 220 1988
## 221 1987
## 222 1986
## 223 1985
## 224 1984
## 225 1983
## 226 1982
## 227 1981
## 228 1980
## 229 1979
## 230 1978
## 231 1977
## 232 1976
## 233 1975
## 234 1974
## 235 1973
## 236 1972
## 237 1971
## 238 1970
## 239 1969
## 240 1968
## 241 1967
## 242 1966
## 243 1965
## 244 1964
## 245 1963
## 246 1962
## 247 1961
## 248 1960
## 249 2021
## 250 2020
## 251 2019
## 252 2018
## 253 2017
## 254 2016
## 255 2015
## 256 2014
## 257 2013
## 258 2012
## 259 2011
## 260 2010
## 261 2009
## 262 2008
## 263 2007
## 264 2006
## 265 2005
## 266 2004
## 267 2003
## 268 2002
## 269 2001
## 270 2000
## 271 1999
## 272 1998
## 273 1997
## 274 1996
## 275 1995
## 276 1994
## 277 1993
## 278 1992
## 279 1991
## 280 1990
## 281 1989
## 282 1988
## 283 1987
## 284 1986
## 285 1985
## 286 1984
## 287 1983
## 288 1982
## 289 1981
## 290 1980
## 291 1979
## 292 1978
## 293 1977
## 294 1976
## 295 1975
## 296 1974
## 297 1973
## 298 1972
## 299 1971
## 300 1970
## 301 1969
## 302 1968
## 303 1967
## 304 1966
## 305 1965
## 306 1964
## 307 1963
## 308 1962
## 309 1961
## 310 1960
## 311 2021
## 312 2020
## 313 2019
## 314 2018
## 315 2017
## 316 2016
## 317 2015
## 318 2014
## 319 2013
## 320 2012
## 321 2011
## 322 2010
## 323 2009
## 324 2008
## 325 2007
## 326 2006
## 327 2005
## 328 2004
## 329 2003
## 330 2002
## 331 2001
## 332 2000
## 333 1999
## 334 1998
## 335 1997
## 336 1996
## 337 1995
## 338 1994
## 339 1993
## 340 1992
## 341 1991
## 342 1990
## 343 1989
## 344 1988
## 345 1987
## 346 1986
## 347 1985
## 348 1984
## 349 1983
## 350 1982
## 351 1981
## 352 1980
## 353 1979
## 354 1978
## 355 1977
## 356 1976
## 357 1975
## 358 1974
## 359 1973
## 360 1972
## 361 1971
## 362 1970
## 363 1969
## 364 1968
## 365 1967
## 366 1966
## 367 1965
## 368 1964
## 369 1963
## 370 1962
## 371 1961
## 372 1960
## 373 2021
## 374 2020
## 375 2019
## 376 2018
## 377 2017
## 378 2016
## 379 2015
## 380 2014
## 381 2013
## 382 2012
## 383 2011
## 384 2010
## 385 2009
## 386 2008
## 387 2007
## 388 2006
## 389 2005
## 390 2004
## 391 2003
## 392 2002
## 393 2001
## 394 2000
## 395 1999
## 396 1998
## 397 1997
## 398 1996
## 399 1995
## 400 1994
## 401 1993
## 402 1992
## 403 1991
## 404 1990
## 405 1989
## 406 1988
## 407 1987
## 408 1986
## 409 1985
## 410 1984
## 411 1983
## 412 1982
## 413 1981
## 414 1980
## 415 1979
## 416 1978
## 417 1977
## 418 1976
## 419 1975
## 420 1974
## 421 1973
## 422 1972
## 423 1971
## 424 1970
## 425 1969
## 426 1968
## 427 1967
## 428 1966
## 429 1965
## 430 1964
## 431 1963
## 432 1962
## 433 1961
## 434 1960
## 435 2021
## 436 2020
## 437 2019
## 438 2018
## 439 2017
## 440 2016
## 441 2015
## 442 2014
## 443 2013
## 444 2012
## 445 2011
## 446 2010
## 447 2009
## 448 2008
## 449 2007
## 450 2006
## 451 2005
## 452 2004
## 453 2003
## 454 2002
## 455 2001
## 456 2000
## 457 1999
## 458 1998
## 459 1997
## 460 1996
## 461 1995
## 462 1994
## 463 1993
## 464 1992
## 465 1991
## 466 1990
## 467 1989
## 468 1988
## 469 1987
## 470 1986
## 471 1985
## 472 1984
## 473 1983
## 474 1982
## 475 1981
## 476 1980
## 477 1979
## 478 1978
## 479 1977
## 480 1976
## 481 1975
## 482 1974
## 483 1973
## 484 1972
## 485 1971
## 486 1970
## 487 1969
## 488 1968
## 489 1967
## 490 1966
## 491 1965
## 492 1964
## 493 1963
## 494 1962
## 495 1961
## 496 1960
## 497 2021
## 498 2020
## 499 2019
## 500 2018
## 501 2017
## 502 2016
## 503 2015
## 504 2014
## 505 2013
## 506 2012
## 507 2011
## 508 2010
## 509 2009
## 510 2008
## 511 2007
## 512 2006
## 513 2005
## 514 2004
## 515 2003
## 516 2002
## 517 2001
## 518 2000
## 519 1999
## 520 1998
## 521 1997
## 522 1996
## 523 1995
## 524 1994
## 525 1993
## 526 1992
## 527 1991
## 528 1990
## 529 1989
## 530 1988
## 531 1987
## 532 1986
## 533 1985
## 534 1984
## 535 1983
## 536 1982
## 537 1981
## 538 1980
## 539 1979
## 540 1978
## 541 1977
## 542 1976
## 543 1975
## 544 1974
## 545 1973
## 546 1972
## 547 1971
## 548 1970
## 549 1969
## 550 1968
## 551 1967
## 552 1966
## 553 1965
## 554 1964
## 555 1963
## 556 1962
## 557 1961
## 558 1960
## 559 2021
## 560 2020
## 561 2019
## 562 2018
## 563 2017
## 564 2016
## 565 2015
## 566 2014
## 567 2013
## 568 2012
## 569 2011
## 570 2010
## 571 2009
## 572 2008
## 573 2007
## 574 2006
## 575 2005
## 576 2004
## 577 2003
## 578 2002
## 579 2001
## 580 2000
## 581 1999
## 582 1998
## 583 1997
## 584 1996
## 585 1995
## 586 1994
## 587 1993
## 588 1992
## 589 1991
## 590 1990
## 591 1989
## 592 1988
## 593 1987
## 594 1986
## 595 1985
## 596 1984
## 597 1983
## 598 1982
## 599 1981
## 600 1980
## 601 1979
## 602 1978
## 603 1977
## 604 1976
## 605 1975
## 606 1974
## 607 1973
## 608 1972
## 609 1971
## 610 1970
## 611 1969
## 612 1968
## 613 1967
## 614 1966
## 615 1965
## 616 1964
## 617 1963
## 618 1962
## 619 1961
## 620 1960
## 621 2021
## 622 2020
## 623 2019
## 624 2018
## 625 2017
## 626 2016
## 627 2015
## 628 2014
## 629 2013
## 630 2012
## 631 2011
## 632 2010
## 633 2009
## 634 2008
## 635 2007
## 636 2006
## 637 2005
## 638 2004
## 639 2003
## 640 2002
## 641 2001
## 642 2000
## 643 1999
## 644 1998
## 645 1997
## 646 1996
## 647 1995
## 648 1994
## 649 1993
## 650 1992
## 651 1991
## 652 1990
## 653 1989
## 654 1988
## 655 1987
## 656 1986
## 657 1985
## 658 1984
## 659 1983
## 660 1982
## 661 1981
## 662 1980
## 663 1979
## 664 1978
## 665 1977
## 666 1976
## 667 1975
## 668 1974
## 669 1973
## 670 1972
## 671 1971
## 672 1970
## 673 1969
## 674 1968
## 675 1967
## 676 1966
## 677 1965
## 678 1964
## 679 1963
## 680 1962
## 681 1961
## 682 1960
## 683 2021
## 684 2020
## 685 2019
## 686 2018
## 687 2017
## 688 2016
## 689 2015
## 690 2014
## 691 2013
## 692 2012
## 693 2011
## 694 2010
## 695 2009
## 696 2008
## 697 2007
## 698 2006
## 699 2005
## 700 2004
## 701 2003
## 702 2002
## 703 2001
## 704 2000
## 705 1999
## 706 1998
## 707 1997
## 708 1996
## 709 1995
## 710 1994
## 711 1993
## 712 1992
## 713 1991
## 714 1990
## 715 1989
## 716 1988
## 717 1987
## 718 1986
## 719 1985
## 720 1984
## 721 1983
## 722 1982
## 723 1981
## 724 1980
## 725 1979
## 726 1978
## 727 1977
## 728 1976
## 729 1975
## 730 1974
## 731 1973
## 732 1972
## 733 1971
## 734 1970
## 735 1969
## 736 1968
## 737 1967
## 738 1966
## 739 1965
## 740 1964
## 741 1963
## 742 1962
## 743 1961
## 744 1960
## 745 2021
## 746 2020
## 747 2019
## 748 2018
## 749 2017
## 750 2016
## 751 2015
## 752 2014
## 753 2013
## 754 2012
## 755 2011
## 756 2010
## 757 2009
## 758 2008
## 759 2007
## 760 2006
## 761 2005
## 762 2004
## 763 2003
## 764 2002
## 765 2001
## 766 2000
## 767 1999
## 768 1998
## 769 1997
## 770 1996
## 771 1995
## 772 1994
## 773 1993
## 774 1992
## 775 1991
## 776 1990
## 777 1989
## 778 1988
## 779 1987
## 780 1986
## 781 1985
## 782 1984
## 783 1983
## 784 1982
## 785 1981
## 786 1980
## 787 1979
## 788 1978
## 789 1977
## 790 1976
## 791 1975
## 792 1974
## 793 1973
## 794 1972
## 795 1971
## 796 1970
## 797 1969
## 798 1968
## 799 1967
## 800 1966
## 801 1965
## 802 1964
## 803 1963
## 804 1962
## 805 1961
## 806 1960
## 807 2021
## 808 2020
## 809 2019
## 810 2018
## 811 2017
## 812 2016
## 813 2015
## 814 2014
## 815 2013
## 816 2012
## 817 2011
## 818 2010
## 819 2009
## 820 2008
## 821 2007
## 822 2006
## 823 2005
## 824 2004
## 825 2003
## 826 2002
## 827 2001
## 828 2000
## 829 1999
## 830 1998
## 831 1997
## 832 1996
## 833 1995
## 834 1994
## 835 1993
## 836 1992
## 837 1991
## 838 1990
## 839 1989
## 840 1988
## 841 1987
## 842 1986
## 843 1985
## 844 1984
## 845 1983
## 846 1982
## 847 1981
## 848 1980
## 849 1979
## 850 1978
## 851 1977
## 852 1976
## 853 1975
## 854 1974
## 855 1973
## 856 1972
## 857 1971
## 858 1970
## 859 1969
## 860 1968
## 861 1967
## 862 1966
## 863 1965
## 864 1964
## 865 1963
## 866 1962
## 867 1961
## 868 1960
## 869 2021
## 870 2020
## 871 2019
## 872 2018
## 873 2017
## 874 2016
## 875 2015
## 876 2014
## 877 2013
## 878 2012
## 879 2011
## 880 2010
## 881 2009
## 882 2008
## 883 2007
## 884 2006
## 885 2005
## 886 2004
## 887 2003
## 888 2002
## 889 2001
## 890 2000
## 891 1999
## 892 1998
## 893 1997
## 894 1996
## 895 1995
## 896 1994
## 897 1993
## 898 1992
## 899 1991
## 900 1990
## 901 1989
## 902 1988
## 903 1987
## 904 1986
## 905 1985
## 906 1984
## 907 1983
## 908 1982
## 909 1981
## 910 1980
## 911 1979
## 912 1978
## 913 1977
## 914 1976
## 915 1975
## 916 1974
## 917 1973
## 918 1972
## 919 1971
## 920 1970
## 921 1969
## 922 1968
## 923 1967
## 924 1966
## 925 1965
## 926 1964
## 927 1963
## 928 1962
## 929 1961
## 930 1960
## 931 2021
## 932 2020
## 933 2019
## 934 2018
## 935 2017
## 936 2016
## 937 2015
## 938 2014
## 939 2013
## 940 2012
## 941 2011
## 942 2010
## 943 2009
## 944 2008
## 945 2007
## 946 2006
## 947 2005
## 948 2004
## 949 2003
## 950 2002
## 951 2001
## 952 2000
## 953 1999
## 954 1998
## 955 1997
## 956 1996
## 957 1995
## 958 1994
## 959 1993
## 960 1992
## 961 1991
## 962 1990
## 963 1989
## 964 1988
## 965 1987
## 966 1986
## 967 1985
## 968 1984
## 969 1983
## 970 1982
## 971 1981
## 972 1980
## 973 1979
## 974 1978
## 975 1977
## 976 1976
## 977 1975
## 978 1974
## 979 1973
## 980 1972
## 981 1971
## 982 1970
## 983 1969
## 984 1968
## 985 1967
## 986 1966
## 987 1965
## 988 1964
## 989 1963
## 990 1962
## 991 1961
## 992 1960
## 993 2021
## 994 2020
## 995 2019
## 996 2018
## 997 2017
## 998 2016
## 999 2015
## 1000 2014
## 1001 2013
## 1002 2012
## 1003 2011
## 1004 2010
## 1005 2009
## 1006 2008
## 1007 2007
## 1008 2006
## 1009 2005
## 1010 2004
## 1011 2003
## 1012 2002
## 1013 2001
## 1014 2000
## 1015 1999
## 1016 1998
## 1017 1997
## 1018 1996
## 1019 1995
## 1020 1994
## 1021 1993
## 1022 1992
## 1023 1991
## 1024 1990
## 1025 1989
## 1026 1988
## 1027 1987
## 1028 1986
## 1029 1985
## 1030 1984
## 1031 1983
## 1032 1982
## 1033 1981
## 1034 1980
## 1035 1979
## 1036 1978
## 1037 1977
## 1038 1976
## 1039 1975
## 1040 1974
## 1041 1973
## 1042 1972
## 1043 1971
## 1044 1970
## 1045 1969
## 1046 1968
## 1047 1967
## 1048 1966
## 1049 1965
## 1050 1964
## 1051 1963
## 1052 1962
## 1053 1961
## 1054 1960
## 1055 2021
## 1056 2020
## 1057 2019
## 1058 2018
## 1059 2017
## 1060 2016
## 1061 2015
## 1062 2014
## 1063 2013
## 1064 2012
## 1065 2011
## 1066 2010
## 1067 2009
## 1068 2008
## 1069 2007
## 1070 2006
## 1071 2005
## 1072 2004
## 1073 2003
## 1074 2002
## 1075 2001
## 1076 2000
## 1077 1999
## 1078 1998
## 1079 1997
## 1080 1996
## 1081 1995
## 1082 1994
## 1083 1993
## 1084 1992
## 1085 1991
## 1086 1990
## 1087 1989
## 1088 1988
## 1089 1987
## 1090 1986
## 1091 1985
## 1092 1984
## 1093 1983
## 1094 1982
## 1095 1981
## 1096 1980
## 1097 1979
## 1098 1978
## 1099 1977
## 1100 1976
## 1101 1975
## 1102 1974
## 1103 1973
## 1104 1972
## 1105 1971
## 1106 1970
## 1107 1969
## 1108 1968
## 1109 1967
## 1110 1966
## 1111 1965
## 1112 1964
## 1113 1963
## 1114 1962
## 1115 1961
## 1116 1960
## 1117 2021
## 1118 2020
## 1119 2019
## 1120 2018
## 1121 2017
## 1122 2016
## 1123 2015
## 1124 2014
## 1125 2013
## 1126 2012
## 1127 2011
## 1128 2010
## 1129 2009
## 1130 2008
## 1131 2007
## 1132 2006
## 1133 2005
## 1134 2004
## 1135 2003
## 1136 2002
## 1137 2001
## 1138 2000
## 1139 1999
## 1140 1998
## 1141 1997
## 1142 1996
## 1143 1995
## 1144 1994
## 1145 1993
## 1146 1992
## 1147 1991
## 1148 1990
## 1149 1989
## 1150 1988
## 1151 1987
## 1152 1986
## 1153 1985
## 1154 1984
## 1155 1983
## 1156 1982
## 1157 1981
## 1158 1980
## 1159 1979
## 1160 1978
## 1161 1977
## 1162 1976
## 1163 1975
## 1164 1974
## 1165 1973
## 1166 1972
## 1167 1971
## 1168 1970
## 1169 1969
## 1170 1968
## 1171 1967
## 1172 1966
## 1173 1965
## 1174 1964
## 1175 1963
## 1176 1962
## 1177 1961
## 1178 1960
## 1179 2021
## 1180 2020
## 1181 2019
## 1182 2018
## 1183 2017
## 1184 2016
## 1185 2015
## 1186 2014
## 1187 2013
## 1188 2012
## 1189 2011
## 1190 2010
## 1191 2009
## 1192 2008
## 1193 2007
## 1194 2006
## 1195 2005
## 1196 2004
## 1197 2003
## 1198 2002
## 1199 2001
## 1200 2000
## 1201 1999
## 1202 1998
## 1203 1997
## 1204 1996
## 1205 1995
## 1206 1994
## 1207 1993
## 1208 1992
## 1209 1991
## 1210 1990
## 1211 1989
## 1212 1988
## 1213 1987
## 1214 1986
## 1215 1985
## 1216 1984
## 1217 1983
## 1218 1982
## 1219 1981
## 1220 1980
## 1221 1979
## 1222 1978
## 1223 1977
## 1224 1976
## 1225 1975
## 1226 1974
## 1227 1973
## 1228 1972
## 1229 1971
## 1230 1970
## 1231 1969
## 1232 1968
## 1233 1967
## 1234 1966
## 1235 1965
## 1236 1964
## 1237 1963
## 1238 1962
## 1239 1961
## 1240 1960
## 1241 2021
## 1242 2020
## 1243 2019
## 1244 2018
## 1245 2017
## 1246 2016
## 1247 2015
## 1248 2014
## 1249 2013
## 1250 2012
## 1251 2011
## 1252 2010
## 1253 2009
## 1254 2008
## 1255 2007
## 1256 2006
## 1257 2005
## 1258 2004
## 1259 2003
## 1260 2002
## 1261 2001
## 1262 2000
## 1263 1999
## 1264 1998
## 1265 1997
## 1266 1996
## 1267 1995
## 1268 1994
## 1269 1993
## 1270 1992
## 1271 1991
## 1272 1990
## 1273 1989
## 1274 1988
## 1275 1987
## 1276 1986
## 1277 1985
## 1278 1984
## 1279 1983
## 1280 1982
## 1281 1981
## 1282 1980
## 1283 1979
## 1284 1978
## 1285 1977
## 1286 1976
## 1287 1975
## 1288 1974
## 1289 1973
## 1290 1972
## 1291 1971
## 1292 1970
## 1293 1969
## 1294 1968
## 1295 1967
## 1296 1966
## 1297 1965
## 1298 1964
## 1299 1963
## 1300 1962
## 1301 1961
## 1302 1960
## 1303 2021
## 1304 2020
## 1305 2019
## 1306 2018
## 1307 2017
## 1308 2016
## 1309 2015
## 1310 2014
## 1311 2013
## 1312 2012
## 1313 2011
## 1314 2010
## 1315 2009
## 1316 2008
## 1317 2007
## 1318 2006
## 1319 2005
## 1320 2004
## 1321 2003
## 1322 2002
## 1323 2001
## 1324 2000
## 1325 1999
## 1326 1998
## 1327 1997
## 1328 1996
## 1329 1995
## 1330 1994
## 1331 1993
## 1332 1992
## 1333 1991
## 1334 1990
## 1335 1989
## 1336 1988
## 1337 1987
## 1338 1986
## 1339 1985
## 1340 1984
## 1341 1983
## 1342 1982
## 1343 1981
## 1344 1980
## 1345 1979
## 1346 1978
## 1347 1977
## 1348 1976
## 1349 1975
## 1350 1974
## 1351 1973
## 1352 1972
## 1353 1971
## 1354 1970
## 1355 1969
## 1356 1968
## 1357 1967
## 1358 1966
## 1359 1965
## 1360 1964
## 1361 1963
## 1362 1962
## 1363 1961
## 1364 1960
## 1365 2021
## 1366 2020
## 1367 2019
## 1368 2018
## 1369 2017
## 1370 2016
## 1371 2015
## 1372 2014
## 1373 2013
## 1374 2012
## 1375 2011
## 1376 2010
## 1377 2009
## 1378 2008
## 1379 2007
## 1380 2006
## 1381 2005
## 1382 2004
## 1383 2003
## 1384 2002
## 1385 2001
## 1386 2000
## 1387 1999
## 1388 1998
## 1389 1997
## 1390 1996
## 1391 1995
## 1392 1994
## 1393 1993
## 1394 1992
## 1395 1991
## 1396 1990
## 1397 1989
## 1398 1988
## 1399 1987
## 1400 1986
## 1401 1985
## 1402 1984
## 1403 1983
## 1404 1982
## 1405 1981
## 1406 1980
## 1407 1979
## 1408 1978
## 1409 1977
## 1410 1976
## 1411 1975
## 1412 1974
## 1413 1973
## 1414 1972
## 1415 1971
## 1416 1970
## 1417 1969
## 1418 1968
## 1419 1967
## 1420 1966
## 1421 1965
## 1422 1964
## 1423 1963
## 1424 1962
## 1425 1961
## 1426 1960
## 1427 2021
## 1428 2020
## 1429 2019
## 1430 2018
## 1431 2017
## 1432 2016
## 1433 2015
## 1434 2014
## 1435 2013
## 1436 2012
## 1437 2011
## 1438 2010
## 1439 2009
## 1440 2008
## 1441 2007
## 1442 2006
## 1443 2005
## 1444 2004
## 1445 2003
## 1446 2002
## 1447 2001
## 1448 2000
## 1449 1999
## 1450 1998
## 1451 1997
## 1452 1996
## 1453 1995
## 1454 1994
## 1455 1993
## 1456 1992
## 1457 1991
## 1458 1990
## 1459 1989
## 1460 1988
## 1461 1987
## 1462 1986
## 1463 1985
## 1464 1984
## 1465 1983
## 1466 1982
## 1467 1981
## 1468 1980
## 1469 1979
## 1470 1978
## 1471 1977
## 1472 1976
## 1473 1975
## 1474 1974
## 1475 1973
## 1476 1972
## 1477 1971
## 1478 1970
## 1479 1969
## 1480 1968
## 1481 1967
## 1482 1966
## 1483 1965
## 1484 1964
## 1485 1963
## 1486 1962
## 1487 1961
## 1488 1960
## 1489 2021
## 1490 2020
## 1491 2019
## 1492 2018
## 1493 2017
## 1494 2016
## 1495 2015
## 1496 2014
## 1497 2013
## 1498 2012
## 1499 2011
## 1500 2010
## 1501 2009
## 1502 2008
## 1503 2007
## 1504 2006
## 1505 2005
## 1506 2004
## 1507 2003
## 1508 2002
## 1509 2001
## 1510 2000
## 1511 1999
## 1512 1998
## 1513 1997
## 1514 1996
## 1515 1995
## 1516 1994
## 1517 1993
## 1518 1992
## 1519 1991
## 1520 1990
## 1521 1989
## 1522 1988
## 1523 1987
## 1524 1986
## 1525 1985
## 1526 1984
## 1527 1983
## 1528 1982
## 1529 1981
## 1530 1980
## 1531 1979
## 1532 1978
## 1533 1977
## 1534 1976
## 1535 1975
## 1536 1974
## 1537 1973
## 1538 1972
## 1539 1971
## 1540 1970
## 1541 1969
## 1542 1968
## 1543 1967
## 1544 1966
## 1545 1965
## 1546 1964
## 1547 1963
## 1548 1962
## 1549 1961
## 1550 1960
## 1551 2021
## 1552 2020
## 1553 2019
## 1554 2018
## 1555 2017
## 1556 2016
## 1557 2015
## 1558 2014
## 1559 2013
## 1560 2012
## 1561 2011
## 1562 2010
## 1563 2009
## 1564 2008
## 1565 2007
## 1566 2006
## 1567 2005
## 1568 2004
## 1569 2003
## 1570 2002
## 1571 2001
## 1572 2000
## 1573 1999
## 1574 1998
## 1575 1997
## 1576 1996
## 1577 1995
## 1578 1994
## 1579 1993
## 1580 1992
## 1581 1991
## 1582 1990
## 1583 1989
## 1584 1988
## 1585 1987
## 1586 1986
## 1587 1985
## 1588 1984
## 1589 1983
## 1590 1982
## 1591 1981
## 1592 1980
## 1593 1979
## 1594 1978
## 1595 1977
## 1596 1976
## 1597 1975
## 1598 1974
## 1599 1973
## 1600 1972
## 1601 1971
## 1602 1970
## 1603 1969
## 1604 1968
## 1605 1967
## 1606 1966
## 1607 1965
## 1608 1964
## 1609 1963
## 1610 1962
## 1611 1961
## 1612 1960
## 1613 2021
## 1614 2020
## 1615 2019
## 1616 2018
## 1617 2017
## 1618 2016
## 1619 2015
## 1620 2014
## 1621 2013
## 1622 2012
## 1623 2011
## 1624 2010
## 1625 2009
## 1626 2008
## 1627 2007
## 1628 2006
## 1629 2005
## 1630 2004
## 1631 2003
## 1632 2002
## 1633 2001
## 1634 2000
## 1635 1999
## 1636 1998
## 1637 1997
## 1638 1996
## 1639 1995
## 1640 1994
## 1641 1993
## 1642 1992
## 1643 1991
## 1644 1990
## 1645 1989
## 1646 1988
## 1647 1987
## 1648 1986
## 1649 1985
## 1650 1984
## 1651 1983
## 1652 1982
## 1653 1981
## 1654 1980
## 1655 1979
## 1656 1978
## 1657 1977
## 1658 1976
## 1659 1975
## 1660 1974
## 1661 1973
## 1662 1972
## 1663 1971
## 1664 1970
## 1665 1969
## 1666 1968
## 1667 1967
## 1668 1966
## 1669 1965
## 1670 1964
## 1671 1963
## 1672 1962
## 1673 1961
## 1674 1960
## 1675 2021
## 1676 2020
## 1677 2019
## 1678 2018
## 1679 2017
## 1680 2016
## 1681 2015
## 1682 2014
## 1683 2013
## 1684 2012
## 1685 2011
## 1686 2010
## 1687 2009
## 1688 2008
## 1689 2007
## 1690 2006
## 1691 2005
## 1692 2004
## 1693 2003
## 1694 2002
## 1695 2001
## 1696 2000
## 1697 1999
## 1698 1998
## 1699 1997
## 1700 1996
## 1701 1995
## 1702 1994
## 1703 1993
## 1704 1992
## 1705 1991
## 1706 1990
## 1707 1989
## 1708 1988
## 1709 1987
## 1710 1986
## 1711 1985
## 1712 1984
## 1713 1983
## 1714 1982
## 1715 1981
## 1716 1980
## 1717 1979
## 1718 1978
## 1719 1977
## 1720 1976
## 1721 1975
## 1722 1974
## 1723 1973
## 1724 1972
## 1725 1971
## 1726 1970
## 1727 1969
## 1728 1968
## 1729 1967
## 1730 1966
## 1731 1965
## 1732 1964
## 1733 1963
## 1734 1962
## 1735 1961
## 1736 1960
## 1737 2021
## 1738 2020
## 1739 2019
## 1740 2018
## 1741 2017
## 1742 2016
## 1743 2015
## 1744 2014
## 1745 2013
## 1746 2012
## 1747 2011
## 1748 2010
## 1749 2009
## 1750 2008
## 1751 2007
## 1752 2006
## 1753 2005
## 1754 2004
## 1755 2003
## 1756 2002
## 1757 2001
## 1758 2000
## 1759 1999
## 1760 1998
## 1761 1997
## 1762 1996
## 1763 1995
## 1764 1994
## 1765 1993
## 1766 1992
## 1767 1991
## 1768 1990
## 1769 1989
## 1770 1988
## 1771 1987
## 1772 1986
## 1773 1985
## 1774 1984
## 1775 1983
## 1776 1982
## 1777 1981
## 1778 1980
## 1779 1979
## 1780 1978
## 1781 1977
## 1782 1976
## 1783 1975
## 1784 1974
## 1785 1973
## 1786 1972
## 1787 1971
## 1788 1970
## 1789 1969
## 1790 1968
## 1791 1967
## 1792 1966
## 1793 1965
## 1794 1964
## 1795 1963
## 1796 1962
## 1797 1961
## 1798 1960
## 1799 2021
## 1800 2020
## 1801 2019
## 1802 2018
## 1803 2017
## 1804 2016
## 1805 2015
## 1806 2014
## 1807 2013
## 1808 2012
## 1809 2011
## 1810 2010
## 1811 2009
## 1812 2008
## 1813 2007
## 1814 2006
## 1815 2005
## 1816 2004
## 1817 2003
## 1818 2002
## 1819 2001
## 1820 2000
## 1821 1999
## 1822 1998
## 1823 1997
## 1824 1996
## 1825 1995
## 1826 1994
## 1827 1993
## 1828 1992
## 1829 1991
## 1830 1990
## 1831 1989
## 1832 1988
## 1833 1987
## 1834 1986
## 1835 1985
## 1836 1984
## 1837 1983
## 1838 1982
## 1839 1981
## 1840 1980
## 1841 1979
## 1842 1978
## 1843 1977
## 1844 1976
## 1845 1975
## 1846 1974
## 1847 1973
## 1848 1972
## 1849 1971
## 1850 1970
## 1851 1969
## 1852 1968
## 1853 1967
## 1854 1966
## 1855 1965
## 1856 1964
## 1857 1963
## 1858 1962
## 1859 1961
## 1860 1960
## 1861 2021
## 1862 2020
## 1863 2019
## 1864 2018
## 1865 2017
## 1866 2016
## 1867 2015
## 1868 2014
## 1869 2013
## 1870 2012
## 1871 2011
## 1872 2010
## 1873 2009
## 1874 2008
## 1875 2007
## 1876 2006
## 1877 2005
## 1878 2004
## 1879 2003
## 1880 2002
## 1881 2001
## 1882 2000
## 1883 1999
## 1884 1998
## 1885 1997
## 1886 1996
## 1887 1995
## 1888 1994
## 1889 1993
## 1890 1992
## 1891 1991
## 1892 1990
## 1893 1989
## 1894 1988
## 1895 1987
## 1896 1986
## 1897 1985
## 1898 1984
## 1899 1983
## 1900 1982
## 1901 1981
## 1902 1980
## 1903 1979
## 1904 1978
## 1905 1977
## 1906 1976
## 1907 1975
## 1908 1974
## 1909 1973
## 1910 1972
## 1911 1971
## 1912 1970
## 1913 1969
## 1914 1968
## 1915 1967
## 1916 1966
## 1917 1965
## 1918 1964
## 1919 1963
## 1920 1962
## 1921 1961
## 1922 1960
## 1923 2021
## 1924 2020
## 1925 2019
## 1926 2018
## 1927 2017
## 1928 2016
## 1929 2015
## 1930 2014
## 1931 2013
## 1932 2012
## 1933 2011
## 1934 2010
## 1935 2009
## 1936 2008
## 1937 2007
## 1938 2006
## 1939 2005
## 1940 2004
## 1941 2003
## 1942 2002
## 1943 2001
## 1944 2000
## 1945 1999
## 1946 1998
## 1947 1997
## 1948 1996
## 1949 1995
## 1950 1994
## 1951 1993
## 1952 1992
## 1953 1991
## 1954 1990
## 1955 1989
## 1956 1988
## 1957 1987
## 1958 1986
## 1959 1985
## 1960 1984
## 1961 1983
## 1962 1982
## 1963 1981
## 1964 1980
## 1965 1979
## 1966 1978
## 1967 1977
## 1968 1976
## 1969 1975
## 1970 1974
## 1971 1973
## 1972 1972
## 1973 1971
## 1974 1970
## 1975 1969
## 1976 1968
## 1977 1967
## 1978 1966
## 1979 1965
## 1980 1964
## 1981 1963
## 1982 1962
## 1983 1961
## 1984 1960
## 1985 2021
## 1986 2020
## 1987 2019
## 1988 2018
## 1989 2017
## 1990 2016
## 1991 2015
## 1992 2014
## 1993 2013
## 1994 2012
## 1995 2011
## 1996 2010
## 1997 2009
## 1998 2008
## 1999 2007
## 2000 2006
## 2001 2005
## 2002 2004
## 2003 2003
## 2004 2002
## 2005 2001
## 2006 2000
## 2007 1999
## 2008 1998
## 2009 1997
## 2010 1996
## 2011 1995
## 2012 1994
## 2013 1993
## 2014 1992
## 2015 1991
## 2016 1990
## 2017 1989
## 2018 1988
## 2019 1987
## 2020 1986
## 2021 1985
## 2022 1984
## 2023 1983
## 2024 1982
## 2025 1981
## 2026 1980
## 2027 1979
## 2028 1978
## 2029 1977
## 2030 1976
## 2031 1975
## 2032 1974
## 2033 1973
## 2034 1972
## 2035 1971
## 2036 1970
## 2037 1969
## 2038 1968
## 2039 1967
## 2040 1966
## 2041 1965
## 2042 1964
## 2043 1963
## 2044 1962
## 2045 1961
## 2046 1960
## 2047 2021
## 2048 2020
## 2049 2019
## 2050 2018
## 2051 2017
## 2052 2016
## 2053 2015
## 2054 2014
## 2055 2013
## 2056 2012
## 2057 2011
## 2058 2010
## 2059 2009
## 2060 2008
## 2061 2007
## 2062 2006
## 2063 2005
## 2064 2004
## 2065 2003
## 2066 2002
## 2067 2001
## 2068 2000
## 2069 1999
## 2070 1998
## 2071 1997
## 2072 1996
## 2073 1995
## 2074 1994
## 2075 1993
## 2076 1992
## 2077 1991
## 2078 1990
## 2079 1989
## 2080 1988
## 2081 1987
## 2082 1986
## 2083 1985
## 2084 1984
## 2085 1983
## 2086 1982
## 2087 1981
## 2088 1980
## 2089 1979
## 2090 1978
## 2091 1977
## 2092 1976
## 2093 1975
## 2094 1974
## 2095 1973
## 2096 1972
## 2097 1971
## 2098 1970
## 2099 1969
## 2100 1968
## 2101 1967
## 2102 1966
## 2103 1965
## 2104 1964
## 2105 1963
## 2106 1962
## 2107 1961
## 2108 1960
## 2109 2021
## 2110 2020
## 2111 2019
## 2112 2018
## 2113 2017
## 2114 2016
## 2115 2015
## 2116 2014
## 2117 2013
## 2118 2012
## 2119 2011
## 2120 2010
## 2121 2009
## 2122 2008
## 2123 2007
## 2124 2006
## 2125 2005
## 2126 2004
## 2127 2003
## 2128 2002
## 2129 2001
## 2130 2000
## 2131 1999
## 2132 1998
## 2133 1997
## 2134 1996
## 2135 1995
## 2136 1994
## 2137 1993
## 2138 1992
## 2139 1991
## 2140 1990
## 2141 1989
## 2142 1988
## 2143 1987
## 2144 1986
## 2145 1985
## 2146 1984
## 2147 1983
## 2148 1982
## 2149 1981
## 2150 1980
## 2151 1979
## 2152 1978
## 2153 1977
## 2154 1976
## 2155 1975
## 2156 1974
## 2157 1973
## 2158 1972
## 2159 1971
## 2160 1970
## 2161 1969
## 2162 1968
## 2163 1967
## 2164 1966
## 2165 1965
## 2166 1964
## 2167 1963
## 2168 1962
## 2169 1961
## 2170 1960
## 2171 2021
## 2172 2020
## 2173 2019
## 2174 2018
## 2175 2017
## 2176 2016
## 2177 2015
## 2178 2014
## 2179 2013
## 2180 2012
## 2181 2011
## 2182 2010
## 2183 2009
## 2184 2008
## 2185 2007
## 2186 2006
## 2187 2005
## 2188 2004
## 2189 2003
## 2190 2002
## 2191 2001
## 2192 2000
## 2193 1999
## 2194 1998
## 2195 1997
## 2196 1996
## 2197 1995
## 2198 1994
## 2199 1993
## 2200 1992
## 2201 1991
## 2202 1990
## 2203 1989
## 2204 1988
## 2205 1987
## 2206 1986
## 2207 1985
## 2208 1984
## 2209 1983
## 2210 1982
## 2211 1981
## 2212 1980
## 2213 1979
## 2214 1978
## 2215 1977
## 2216 1976
## 2217 1975
## 2218 1974
## 2219 1973
## 2220 1972
## 2221 1971
## 2222 1970
## 2223 1969
## 2224 1968
## 2225 1967
## 2226 1966
## 2227 1965
## 2228 1964
## 2229 1963
## 2230 1962
## 2231 1961
## 2232 1960
## 2233 2021
## 2234 2020
## 2235 2019
## 2236 2018
## 2237 2017
## 2238 2016
## 2239 2015
## 2240 2014
## 2241 2013
## 2242 2012
## 2243 2011
## 2244 2010
## 2245 2009
## 2246 2008
## 2247 2007
## 2248 2006
## 2249 2005
## 2250 2004
## 2251 2003
## 2252 2002
## 2253 2001
## 2254 2000
## 2255 1999
## 2256 1998
## 2257 1997
## 2258 1996
## 2259 1995
## 2260 1994
## 2261 1993
## 2262 1992
## 2263 1991
## 2264 1990
## 2265 1989
## 2266 1988
## 2267 1987
## 2268 1986
## 2269 1985
## 2270 1984
## 2271 1983
## 2272 1982
## 2273 1981
## 2274 1980
## 2275 1979
## 2276 1978
## 2277 1977
## 2278 1976
## 2279 1975
## 2280 1974
## 2281 1973
## 2282 1972
## 2283 1971
## 2284 1970
## 2285 1969
## 2286 1968
## 2287 1967
## 2288 1966
## 2289 1965
## 2290 1964
## 2291 1963
## 2292 1962
## 2293 1961
## 2294 1960
## 2295 2021
## 2296 2020
## 2297 2019
## 2298 2018
## 2299 2017
## 2300 2016
## 2301 2015
## 2302 2014
## 2303 2013
## 2304 2012
## 2305 2011
## 2306 2010
## 2307 2009
## 2308 2008
## 2309 2007
## 2310 2006
## 2311 2005
## 2312 2004
## 2313 2003
## 2314 2002
## 2315 2001
## 2316 2000
## 2317 1999
## 2318 1998
## 2319 1997
## 2320 1996
## 2321 1995
## 2322 1994
## 2323 1993
## 2324 1992
## 2325 1991
## 2326 1990
## 2327 1989
## 2328 1988
## 2329 1987
## 2330 1986
## 2331 1985
## 2332 1984
## 2333 1983
## 2334 1982
## 2335 1981
## 2336 1980
## 2337 1979
## 2338 1978
## 2339 1977
## 2340 1976
## 2341 1975
## 2342 1974
## 2343 1973
## 2344 1972
## 2345 1971
## 2346 1970
## 2347 1969
## 2348 1968
## 2349 1967
## 2350 1966
## 2351 1965
## 2352 1964
## 2353 1963
## 2354 1962
## 2355 1961
## 2356 1960
## 2357 2021
## 2358 2020
## 2359 2019
## 2360 2018
## 2361 2017
## 2362 2016
## 2363 2015
## 2364 2014
## 2365 2013
## 2366 2012
## 2367 2011
## 2368 2010
## 2369 2009
## 2370 2008
## 2371 2007
## 2372 2006
## 2373 2005
## 2374 2004
## 2375 2003
## 2376 2002
## 2377 2001
## 2378 2000
## 2379 1999
## 2380 1998
## 2381 1997
## 2382 1996
## 2383 1995
## 2384 1994
## 2385 1993
## 2386 1992
## 2387 1991
## 2388 1990
## 2389 1989
## 2390 1988
## 2391 1987
## 2392 1986
## 2393 1985
## 2394 1984
## 2395 1983
## 2396 1982
## 2397 1981
## 2398 1980
## 2399 1979
## 2400 1978
## 2401 1977
## 2402 1976
## 2403 1975
## 2404 1974
## 2405 1973
## 2406 1972
## 2407 1971
## 2408 1970
## 2409 1969
## 2410 1968
## 2411 1967
## 2412 1966
## 2413 1965
## 2414 1964
## 2415 1963
## 2416 1962
## 2417 1961
## 2418 1960
## 2419 2021
## 2420 2020
## 2421 2019
## 2422 2018
## 2423 2017
## 2424 2016
## 2425 2015
## 2426 2014
## 2427 2013
## 2428 2012
## 2429 2011
## 2430 2010
## 2431 2009
## 2432 2008
## 2433 2007
## 2434 2006
## 2435 2005
## 2436 2004
## 2437 2003
## 2438 2002
## 2439 2001
## 2440 2000
## 2441 1999
## 2442 1998
## 2443 1997
## 2444 1996
## 2445 1995
## 2446 1994
## 2447 1993
## 2448 1992
## 2449 1991
## 2450 1990
## 2451 1989
## 2452 1988
## 2453 1987
## 2454 1986
## 2455 1985
## 2456 1984
## 2457 1983
## 2458 1982
## 2459 1981
## 2460 1980
## 2461 1979
## 2462 1978
## 2463 1977
## 2464 1976
## 2465 1975
## 2466 1974
## 2467 1973
## 2468 1972
## 2469 1971
## 2470 1970
## 2471 1969
## 2472 1968
## 2473 1967
## 2474 1966
## 2475 1965
## 2476 1964
## 2477 1963
## 2478 1962
## 2479 1961
## 2480 1960
## 2481 2021
## 2482 2020
## 2483 2019
## 2484 2018
## 2485 2017
## 2486 2016
## 2487 2015
## 2488 2014
## 2489 2013
## 2490 2012
## 2491 2011
## 2492 2010
## 2493 2009
## 2494 2008
## 2495 2007
## 2496 2006
## 2497 2005
## 2498 2004
## 2499 2003
## 2500 2002
## 2501 2001
## 2502 2000
## 2503 1999
## 2504 1998
## 2505 1997
## 2506 1996
## 2507 1995
## 2508 1994
## 2509 1993
## 2510 1992
## 2511 1991
## 2512 1990
## 2513 1989
## 2514 1988
## 2515 1987
## 2516 1986
## 2517 1985
## 2518 1984
## 2519 1983
## 2520 1982
## 2521 1981
## 2522 1980
## 2523 1979
## 2524 1978
## 2525 1977
## 2526 1976
## 2527 1975
## 2528 1974
## 2529 1973
## 2530 1972
## 2531 1971
## 2532 1970
## 2533 1969
## 2534 1968
## 2535 1967
## 2536 1966
## 2537 1965
## 2538 1964
## 2539 1963
## 2540 1962
## 2541 1961
## 2542 1960
## 2543 2021
## 2544 2020
## 2545 2019
## 2546 2018
## 2547 2017
## 2548 2016
## 2549 2015
## 2550 2014
## 2551 2013
## 2552 2012
## 2553 2011
## 2554 2010
## 2555 2009
## 2556 2008
## 2557 2007
## 2558 2006
## 2559 2005
## 2560 2004
## 2561 2003
## 2562 2002
## 2563 2001
## 2564 2000
## 2565 1999
## 2566 1998
## 2567 1997
## 2568 1996
## 2569 1995
## 2570 1994
## 2571 1993
## 2572 1992
## 2573 1991
## 2574 1990
## 2575 1989
## 2576 1988
## 2577 1987
## 2578 1986
## 2579 1985
## 2580 1984
## 2581 1983
## 2582 1982
## 2583 1981
## 2584 1980
## 2585 1979
## 2586 1978
## 2587 1977
## 2588 1976
## 2589 1975
## 2590 1974
## 2591 1973
## 2592 1972
## 2593 1971
## 2594 1970
## 2595 1969
## 2596 1968
## 2597 1967
## 2598 1966
## 2599 1965
## 2600 1964
## 2601 1963
## 2602 1962
## 2603 1961
## 2604 1960
## 2605 2021
## 2606 2020
## 2607 2019
## 2608 2018
## 2609 2017
## 2610 2016
## 2611 2015
## 2612 2014
## 2613 2013
## 2614 2012
## 2615 2011
## 2616 2010
## 2617 2009
## 2618 2008
## 2619 2007
## 2620 2006
## 2621 2005
## 2622 2004
## 2623 2003
## 2624 2002
## 2625 2001
## 2626 2000
## 2627 1999
## 2628 1998
## 2629 1997
## 2630 1996
## 2631 1995
## 2632 1994
## 2633 1993
## 2634 1992
## 2635 1991
## 2636 1990
## 2637 1989
## 2638 1988
## 2639 1987
## 2640 1986
## 2641 1985
## 2642 1984
## 2643 1983
## 2644 1982
## 2645 1981
## 2646 1980
## 2647 1979
## 2648 1978
## 2649 1977
## 2650 1976
## 2651 1975
## 2652 1974
## 2653 1973
## 2654 1972
## 2655 1971
## 2656 1970
## 2657 1969
## 2658 1968
## 2659 1967
## 2660 1966
## 2661 1965
## 2662 1964
## 2663 1963
## 2664 1962
## 2665 1961
## 2666 1960
## 2667 2021
## 2668 2020
## 2669 2019
## 2670 2018
## 2671 2017
## 2672 2016
## 2673 2015
## 2674 2014
## 2675 2013
## 2676 2012
## 2677 2011
## 2678 2010
## 2679 2009
## 2680 2008
## 2681 2007
## 2682 2006
## 2683 2005
## 2684 2004
## 2685 2003
## 2686 2002
## 2687 2001
## 2688 2000
## 2689 1999
## 2690 1998
## 2691 1997
## 2692 1996
## 2693 1995
## 2694 1994
## 2695 1993
## 2696 1992
## 2697 1991
## 2698 1990
## 2699 1989
## 2700 1988
## 2701 1987
## 2702 1986
## 2703 1985
## 2704 1984
## 2705 1983
## 2706 1982
## 2707 1981
## 2708 1980
## 2709 1979
## 2710 1978
## 2711 1977
## 2712 1976
## 2713 1975
## 2714 1974
## 2715 1973
## 2716 1972
## 2717 1971
## 2718 1970
## 2719 1969
## 2720 1968
## 2721 1967
## 2722 1966
## 2723 1965
## 2724 1964
## 2725 1963
## 2726 1962
## 2727 1961
## 2728 1960
## 2729 2021
## 2730 2020
## 2731 2019
## 2732 2018
## 2733 2017
## 2734 2016
## 2735 2015
## 2736 2014
## 2737 2013
## 2738 2012
## 2739 2011
## 2740 2010
## 2741 2009
## 2742 2008
## 2743 2007
## 2744 2006
## 2745 2005
## 2746 2004
## 2747 2003
## 2748 2002
## 2749 2001
## 2750 2000
## 2751 1999
## 2752 1998
## 2753 1997
## 2754 1996
## 2755 1995
## 2756 1994
## 2757 1993
## 2758 1992
## 2759 1991
## 2760 1990
## 2761 1989
## 2762 1988
## 2763 1987
## 2764 1986
## 2765 1985
## 2766 1984
## 2767 1983
## 2768 1982
## 2769 1981
## 2770 1980
## 2771 1979
## 2772 1978
## 2773 1977
## 2774 1976
## 2775 1975
## 2776 1974
## 2777 1973
## 2778 1972
## 2779 1971
## 2780 1970
## 2781 1969
## 2782 1968
## 2783 1967
## 2784 1966
## 2785 1965
## 2786 1964
## 2787 1963
## 2788 1962
## 2789 1961
## 2790 1960
## 2791 2021
## 2792 2020
## 2793 2019
## 2794 2018
## 2795 2017
## 2796 2016
## 2797 2015
## 2798 2014
## 2799 2013
## 2800 2012
## 2801 2011
## 2802 2010
## 2803 2009
## 2804 2008
## 2805 2007
## 2806 2006
## 2807 2005
## 2808 2004
## 2809 2003
## 2810 2002
## 2811 2001
## 2812 2000
## 2813 1999
## 2814 1998
## 2815 1997
## 2816 1996
## 2817 1995
## 2818 1994
## 2819 1993
## 2820 1992
## 2821 1991
## 2822 1990
## 2823 1989
## 2824 1988
## 2825 1987
## 2826 1986
## 2827 1985
## 2828 1984
## 2829 1983
## 2830 1982
## 2831 1981
## 2832 1980
## 2833 1979
## 2834 1978
## 2835 1977
## 2836 1976
## 2837 1975
## 2838 1974
## 2839 1973
## 2840 1972
## 2841 1971
## 2842 1970
## 2843 1969
## 2844 1968
## 2845 1967
## 2846 1966
## 2847 1965
## 2848 1964
## 2849 1963
## 2850 1962
## 2851 1961
## 2852 1960
## 2853 2021
## 2854 2020
## 2855 2019
## 2856 2018
## 2857 2017
## 2858 2016
## 2859 2015
## 2860 2014
## 2861 2013
## 2862 2012
## 2863 2011
## 2864 2010
## 2865 2009
## 2866 2008
## 2867 2007
## 2868 2006
## 2869 2005
## 2870 2004
## 2871 2003
## 2872 2002
## 2873 2001
## 2874 2000
## 2875 1999
## 2876 1998
## 2877 1997
## 2878 1996
## 2879 1995
## 2880 1994
## 2881 1993
## 2882 1992
## 2883 1991
## 2884 1990
## 2885 1989
## 2886 1988
## 2887 1987
## 2888 1986
## 2889 1985
## 2890 1984
## 2891 1983
## 2892 1982
## 2893 1981
## 2894 1980
## 2895 1979
## 2896 1978
## 2897 1977
## 2898 1976
## 2899 1975
## 2900 1974
## 2901 1973
## 2902 1972
## 2903 1971
## 2904 1970
## 2905 1969
## 2906 1968
## 2907 1967
## 2908 1966
## 2909 1965
## 2910 1964
## 2911 1963
## 2912 1962
## 2913 1961
## 2914 1960
## 2915 2021
## 2916 2020
## 2917 2019
## 2918 2018
## 2919 2017
## 2920 2016
## 2921 2015
## 2922 2014
## 2923 2013
## 2924 2012
## 2925 2011
## 2926 2010
## 2927 2009
## 2928 2008
## 2929 2007
## 2930 2006
## 2931 2005
## 2932 2004
## 2933 2003
## 2934 2002
## 2935 2001
## 2936 2000
## 2937 1999
## 2938 1998
## 2939 1997
## 2940 1996
## 2941 1995
## 2942 1994
## 2943 1993
## 2944 1992
## 2945 1991
## 2946 1990
## 2947 1989
## 2948 1988
## 2949 1987
## 2950 1986
## 2951 1985
## 2952 1984
## 2953 1983
## 2954 1982
## 2955 1981
## 2956 1980
## 2957 1979
## 2958 1978
## 2959 1977
## 2960 1976
## 2961 1975
## 2962 1974
## 2963 1973
## 2964 1972
## 2965 1971
## 2966 1970
## 2967 1969
## 2968 1968
## 2969 1967
## 2970 1966
## 2971 1965
## 2972 1964
## 2973 1963
## 2974 1962
## 2975 1961
## 2976 1960
## 2977 2021
## 2978 2020
## 2979 2019
## 2980 2018
## 2981 2017
## 2982 2016
## 2983 2015
## 2984 2014
## 2985 2013
## 2986 2012
## 2987 2011
## 2988 2010
## 2989 2009
## 2990 2008
## 2991 2007
## 2992 2006
## 2993 2005
## 2994 2004
## 2995 2003
## 2996 2002
## 2997 2001
## 2998 2000
## 2999 1999
## 3000 1998
## 3001 1997
## 3002 1996
## 3003 1995
## 3004 1994
## 3005 1993
## 3006 1992
## 3007 1991
## 3008 1990
## 3009 1989
## 3010 1988
## 3011 1987
## 3012 1986
## 3013 1985
## 3014 1984
## 3015 1983
## 3016 1982
## 3017 1981
## 3018 1980
## 3019 1979
## 3020 1978
## 3021 1977
## 3022 1976
## 3023 1975
## 3024 1974
## 3025 1973
## 3026 1972
## 3027 1971
## 3028 1970
## 3029 1969
## 3030 1968
## 3031 1967
## 3032 1966
## 3033 1965
## 3034 1964
## 3035 1963
## 3036 1962
## 3037 1961
## 3038 1960
## 3039 2021
## 3040 2020
## 3041 2019
## 3042 2018
## 3043 2017
## 3044 2016
## 3045 2015
## 3046 2014
## 3047 2013
## 3048 2012
## 3049 2011
## 3050 2010
## 3051 2009
## 3052 2008
## 3053 2007
## 3054 2006
## 3055 2005
## 3056 2004
## 3057 2003
## 3058 2002
## 3059 2001
## 3060 2000
## 3061 1999
## 3062 1998
## 3063 1997
## 3064 1996
## 3065 1995
## 3066 1994
## 3067 1993
## 3068 1992
## 3069 1991
## 3070 1990
## 3071 1989
## 3072 1988
## 3073 1987
## 3074 1986
## 3075 1985
## 3076 1984
## 3077 1983
## 3078 1982
## 3079 1981
## 3080 1980
## 3081 1979
## 3082 1978
## 3083 1977
## 3084 1976
## 3085 1975
## 3086 1974
## 3087 1973
## 3088 1972
## 3089 1971
## 3090 1970
## 3091 1969
## 3092 1968
## 3093 1967
## 3094 1966
## 3095 1965
## 3096 1964
## 3097 1963
## 3098 1962
## 3099 1961
## 3100 1960
## 3101 2021
## 3102 2020
## 3103 2019
## 3104 2018
## 3105 2017
## 3106 2016
## 3107 2015
## 3108 2014
## 3109 2013
## 3110 2012
## 3111 2011
## 3112 2010
## 3113 2009
## 3114 2008
## 3115 2007
## 3116 2006
## 3117 2005
## 3118 2004
## 3119 2003
## 3120 2002
## 3121 2001
## 3122 2000
## 3123 1999
## 3124 1998
## 3125 1997
## 3126 1996
## 3127 1995
## 3128 1994
## 3129 1993
## 3130 1992
## 3131 1991
## 3132 1990
## 3133 1989
## 3134 1988
## 3135 1987
## 3136 1986
## 3137 1985
## 3138 1984
## 3139 1983
## 3140 1982
## 3141 1981
## 3142 1980
## 3143 1979
## 3144 1978
## 3145 1977
## 3146 1976
## 3147 1975
## 3148 1974
## 3149 1973
## 3150 1972
## 3151 1971
## 3152 1970
## 3153 1969
## 3154 1968
## 3155 1967
## 3156 1966
## 3157 1965
## 3158 1964
## 3159 1963
## 3160 1962
## 3161 1961
## 3162 1960
## 3163 2021
## 3164 2020
## 3165 2019
## 3166 2018
## 3167 2017
## 3168 2016
## 3169 2015
## 3170 2014
## 3171 2013
## 3172 2012
## 3173 2011
## 3174 2010
## 3175 2009
## 3176 2008
## 3177 2007
## 3178 2006
## 3179 2005
## 3180 2004
## 3181 2003
## 3182 2002
## 3183 2001
## 3184 2000
## 3185 1999
## 3186 1998
## 3187 1997
## 3188 1996
## 3189 1995
## 3190 1994
## 3191 1993
## 3192 1992
## 3193 1991
## 3194 1990
## 3195 1989
## 3196 1988
## 3197 1987
## 3198 1986
## 3199 1985
## 3200 1984
## 3201 1983
## 3202 1982
## 3203 1981
## 3204 1980
## 3205 1979
## 3206 1978
## 3207 1977
## 3208 1976
## 3209 1975
## 3210 1974
## 3211 1973
## 3212 1972
## 3213 1971
## 3214 1970
## 3215 1969
## 3216 1968
## 3217 1967
## 3218 1966
## 3219 1965
## 3220 1964
## 3221 1963
## 3222 1962
## 3223 1961
## 3224 1960
## 3225 2021
## 3226 2020
## 3227 2019
## 3228 2018
## 3229 2017
## 3230 2016
## 3231 2015
## 3232 2014
## 3233 2013
## 3234 2012
## 3235 2011
## 3236 2010
## 3237 2009
## 3238 2008
## 3239 2007
## 3240 2006
## 3241 2005
## 3242 2004
## 3243 2003
## 3244 2002
## 3245 2001
## 3246 2000
## 3247 1999
## 3248 1998
## 3249 1997
## 3250 1996
## 3251 1995
## 3252 1994
## 3253 1993
## 3254 1992
## 3255 1991
## 3256 1990
## 3257 1989
## 3258 1988
## 3259 1987
## 3260 1986
## 3261 1985
## 3262 1984
## 3263 1983
## 3264 1982
## 3265 1981
## 3266 1980
## 3267 1979
## 3268 1978
## 3269 1977
## 3270 1976
## 3271 1975
## 3272 1974
## 3273 1973
## 3274 1972
## 3275 1971
## 3276 1970
## 3277 1969
## 3278 1968
## 3279 1967
## 3280 1966
## 3281 1965
## 3282 1964
## 3283 1963
## 3284 1962
## 3285 1961
## 3286 1960
## 3287 2021
## 3288 2020
## 3289 2019
## 3290 2018
## 3291 2017
## 3292 2016
## 3293 2015
## 3294 2014
## 3295 2013
## 3296 2012
## 3297 2011
## 3298 2010
## 3299 2009
## 3300 2008
## 3301 2007
## 3302 2006
## 3303 2005
## 3304 2004
## 3305 2003
## 3306 2002
## 3307 2001
## 3308 2000
## 3309 1999
## 3310 1998
## 3311 1997
## 3312 1996
## 3313 1995
## 3314 1994
## 3315 1993
## 3316 1992
## 3317 1991
## 3318 1990
## 3319 1989
## 3320 1988
## 3321 1987
## 3322 1986
## 3323 1985
## 3324 1984
## 3325 1983
## 3326 1982
## 3327 1981
## 3328 1980
## 3329 1979
## 3330 1978
## 3331 1977
## 3332 1976
## 3333 1975
## 3334 1974
## 3335 1973
## 3336 1972
## 3337 1971
## 3338 1970
## 3339 1969
## 3340 1968
## 3341 1967
## 3342 1966
## 3343 1965
## 3344 1964
## 3345 1963
## 3346 1962
## 3347 1961
## 3348 1960
## 3349 2021
## 3350 2020
## 3351 2019
## 3352 2018
## 3353 2017
## 3354 2016
## 3355 2015
## 3356 2014
## 3357 2013
## 3358 2012
## 3359 2011
## 3360 2010
## 3361 2009
## 3362 2008
## 3363 2007
## 3364 2006
## 3365 2005
## 3366 2004
## 3367 2003
## 3368 2002
## 3369 2001
## 3370 2000
## 3371 1999
## 3372 1998
## 3373 1997
## 3374 1996
## 3375 1995
## 3376 1994
## 3377 1993
## 3378 1992
## 3379 1991
## 3380 1990
## 3381 1989
## 3382 1988
## 3383 1987
## 3384 1986
## 3385 1985
## 3386 1984
## 3387 1983
## 3388 1982
## 3389 1981
## 3390 1980
## 3391 1979
## 3392 1978
## 3393 1977
## 3394 1976
## 3395 1975
## 3396 1974
## 3397 1973
## 3398 1972
## 3399 1971
## 3400 1970
## 3401 1969
## 3402 1968
## 3403 1967
## 3404 1966
## 3405 1965
## 3406 1964
## 3407 1963
## 3408 1962
## 3409 1961
## 3410 1960
## 3411 2021
## 3412 2020
## 3413 2019
## 3414 2018
## 3415 2017
## 3416 2016
## 3417 2015
## 3418 2014
## 3419 2013
## 3420 2012
## 3421 2011
## 3422 2010
## 3423 2009
## 3424 2008
## 3425 2007
## 3426 2006
## 3427 2005
## 3428 2004
## 3429 2003
## 3430 2002
## 3431 2001
## 3432 2000
## 3433 1999
## 3434 1998
## 3435 1997
## 3436 1996
## 3437 1995
## 3438 1994
## 3439 1993
## 3440 1992
## 3441 1991
## 3442 1990
## 3443 1989
## 3444 1988
## 3445 1987
## 3446 1986
## 3447 1985
## 3448 1984
## 3449 1983
## 3450 1982
## 3451 1981
## 3452 1980
## 3453 1979
## 3454 1978
## 3455 1977
## 3456 1976
## 3457 1975
## 3458 1974
## 3459 1973
## 3460 1972
## 3461 1971
## 3462 1970
## 3463 1969
## 3464 1968
## 3465 1967
## 3466 1966
## 3467 1965
## 3468 1964
## 3469 1963
## 3470 1962
## 3471 1961
## 3472 1960
## 3473 2021
## 3474 2020
## 3475 2019
## 3476 2018
## 3477 2017
## 3478 2016
## 3479 2015
## 3480 2014
## 3481 2013
## 3482 2012
## 3483 2011
## 3484 2010
## 3485 2009
## 3486 2008
## 3487 2007
## 3488 2006
## 3489 2005
## 3490 2004
## 3491 2003
## 3492 2002
## 3493 2001
## 3494 2000
## 3495 1999
## 3496 1998
## 3497 1997
## 3498 1996
## 3499 1995
## 3500 1994
## 3501 1993
## 3502 1992
## 3503 1991
## 3504 1990
## 3505 1989
## 3506 1988
## 3507 1987
## 3508 1986
## 3509 1985
## 3510 1984
## 3511 1983
## 3512 1982
## 3513 1981
## 3514 1980
## 3515 1979
## 3516 1978
## 3517 1977
## 3518 1976
## 3519 1975
## 3520 1974
## 3521 1973
## 3522 1972
## 3523 1971
## 3524 1970
## 3525 1969
## 3526 1968
## 3527 1967
## 3528 1966
## 3529 1965
## 3530 1964
## 3531 1963
## 3532 1962
## 3533 1961
## 3534 1960
## 3535 2021
## 3536 2020
## 3537 2019
## 3538 2018
## 3539 2017
## 3540 2016
## 3541 2015
## 3542 2014
## 3543 2013
## 3544 2012
## 3545 2011
## 3546 2010
## 3547 2009
## 3548 2008
## 3549 2007
## 3550 2006
## 3551 2005
## 3552 2004
## 3553 2003
## 3554 2002
## 3555 2001
## 3556 2000
## 3557 1999
## 3558 1998
## 3559 1997
## 3560 1996
## 3561 1995
## 3562 1994
## 3563 1993
## 3564 1992
## 3565 1991
## 3566 1990
## 3567 1989
## 3568 1988
## 3569 1987
## 3570 1986
## 3571 1985
## 3572 1984
## 3573 1983
## 3574 1982
## 3575 1981
## 3576 1980
## 3577 1979
## 3578 1978
## 3579 1977
## 3580 1976
## 3581 1975
## 3582 1974
## 3583 1973
## 3584 1972
## 3585 1971
## 3586 1970
## 3587 1969
## 3588 1968
## 3589 1967
## 3590 1966
## 3591 1965
## 3592 1964
## 3593 1963
## 3594 1962
## 3595 1961
## 3596 1960
## 3597 2021
## 3598 2020
## 3599 2019
## 3600 2018
## 3601 2017
## 3602 2016
## 3603 2015
## 3604 2014
## 3605 2013
## 3606 2012
## 3607 2011
## 3608 2010
## 3609 2009
## 3610 2008
## 3611 2007
## 3612 2006
## 3613 2005
## 3614 2004
## 3615 2003
## 3616 2002
## 3617 2001
## 3618 2000
## 3619 1999
## 3620 1998
## 3621 1997
## 3622 1996
## 3623 1995
## 3624 1994
## 3625 1993
## 3626 1992
## 3627 1991
## 3628 1990
## 3629 1989
## 3630 1988
## 3631 1987
## 3632 1986
## 3633 1985
## 3634 1984
## 3635 1983
## 3636 1982
## 3637 1981
## 3638 1980
## 3639 1979
## 3640 1978
## 3641 1977
## 3642 1976
## 3643 1975
## 3644 1974
## 3645 1973
## 3646 1972
## 3647 1971
## 3648 1970
## 3649 1969
## 3650 1968
## 3651 1967
## 3652 1966
## 3653 1965
## 3654 1964
## 3655 1963
## 3656 1962
## 3657 1961
## 3658 1960
## 3659 2021
## 3660 2020
## 3661 2019
## 3662 2018
## 3663 2017
## 3664 2016
## 3665 2015
## 3666 2014
## 3667 2013
## 3668 2012
## 3669 2011
## 3670 2010
## 3671 2009
## 3672 2008
## 3673 2007
## 3674 2006
## 3675 2005
## 3676 2004
## 3677 2003
## 3678 2002
## 3679 2001
## 3680 2000
## 3681 1999
## 3682 1998
## 3683 1997
## 3684 1996
## 3685 1995
## 3686 1994
## 3687 1993
## 3688 1992
## 3689 1991
## 3690 1990
## 3691 1989
## 3692 1988
## 3693 1987
## 3694 1986
## 3695 1985
## 3696 1984
## 3697 1983
## 3698 1982
## 3699 1981
## 3700 1980
## 3701 1979
## 3702 1978
## 3703 1977
## 3704 1976
## 3705 1975
## 3706 1974
## 3707 1973
## 3708 1972
## 3709 1971
## 3710 1970
## 3711 1969
## 3712 1968
## 3713 1967
## 3714 1966
## 3715 1965
## 3716 1964
## 3717 1963
## 3718 1962
## 3719 1961
## 3720 1960
## 3721 2021
## 3722 2020
## 3723 2019
## 3724 2018
## 3725 2017
## 3726 2016
## 3727 2015
## 3728 2014
## 3729 2013
## 3730 2012
## 3731 2011
## 3732 2010
## 3733 2009
## 3734 2008
## 3735 2007
## 3736 2006
## 3737 2005
## 3738 2004
## 3739 2003
## 3740 2002
## 3741 2001
## 3742 2000
## 3743 1999
## 3744 1998
## 3745 1997
## 3746 1996
## 3747 1995
## 3748 1994
## 3749 1993
## 3750 1992
## 3751 1991
## 3752 1990
## 3753 1989
## 3754 1988
## 3755 1987
## 3756 1986
## 3757 1985
## 3758 1984
## 3759 1983
## 3760 1982
## 3761 1981
## 3762 1980
## 3763 1979
## 3764 1978
## 3765 1977
## 3766 1976
## 3767 1975
## 3768 1974
## 3769 1973
## 3770 1972
## 3771 1971
## 3772 1970
## 3773 1969
## 3774 1968
## 3775 1967
## 3776 1966
## 3777 1965
## 3778 1964
## 3779 1963
## 3780 1962
## 3781 1961
## 3782 1960
## 3783 2021
## 3784 2020
## 3785 2019
## 3786 2018
## 3787 2017
## 3788 2016
## 3789 2015
## 3790 2014
## 3791 2013
## 3792 2012
## 3793 2011
## 3794 2010
## 3795 2009
## 3796 2008
## 3797 2007
## 3798 2006
## 3799 2005
## 3800 2004
## 3801 2003
## 3802 2002
## 3803 2001
## 3804 2000
## 3805 1999
## 3806 1998
## 3807 1997
## 3808 1996
## 3809 1995
## 3810 1994
## 3811 1993
## 3812 1992
## 3813 1991
## 3814 1990
## 3815 1989
## 3816 1988
## 3817 1987
## 3818 1986
## 3819 1985
## 3820 1984
## 3821 1983
## 3822 1982
## 3823 1981
## 3824 1980
## 3825 1979
## 3826 1978
## 3827 1977
## 3828 1976
## 3829 1975
## 3830 1974
## 3831 1973
## 3832 1972
## 3833 1971
## 3834 1970
## 3835 1969
## 3836 1968
## 3837 1967
## 3838 1966
## 3839 1965
## 3840 1964
## 3841 1963
## 3842 1962
## 3843 1961
## 3844 1960
## 3845 2021
## 3846 2020
## 3847 2019
## 3848 2018
## 3849 2017
## 3850 2016
## 3851 2015
## 3852 2014
## 3853 2013
## 3854 2012
## 3855 2011
## 3856 2010
## 3857 2009
## 3858 2008
## 3859 2007
## 3860 2006
## 3861 2005
## 3862 2004
## 3863 2003
## 3864 2002
## 3865 2001
## 3866 2000
## 3867 1999
## 3868 1998
## 3869 1997
## 3870 1996
## 3871 1995
## 3872 1994
## 3873 1993
## 3874 1992
## 3875 1991
## 3876 1990
## 3877 1989
## 3878 1988
## 3879 1987
## 3880 1986
## 3881 1985
## 3882 1984
## 3883 1983
## 3884 1982
## 3885 1981
## 3886 1980
## 3887 1979
## 3888 1978
## 3889 1977
## 3890 1976
## 3891 1975
## 3892 1974
## 3893 1973
## 3894 1972
## 3895 1971
## 3896 1970
## 3897 1969
## 3898 1968
## 3899 1967
## 3900 1966
## 3901 1965
## 3902 1964
## 3903 1963
## 3904 1962
## 3905 1961
## 3906 1960
## 3907 2021
## 3908 2020
## 3909 2019
## 3910 2018
## 3911 2017
## 3912 2016
## 3913 2015
## 3914 2014
## 3915 2013
## 3916 2012
## 3917 2011
## 3918 2010
## 3919 2009
## 3920 2008
## 3921 2007
## 3922 2006
## 3923 2005
## 3924 2004
## 3925 2003
## 3926 2002
## 3927 2001
## 3928 2000
## 3929 1999
## 3930 1998
## 3931 1997
## 3932 1996
## 3933 1995
## 3934 1994
## 3935 1993
## 3936 1992
## 3937 1991
## 3938 1990
## 3939 1989
## 3940 1988
## 3941 1987
## 3942 1986
## 3943 1985
## 3944 1984
## 3945 1983
## 3946 1982
## 3947 1981
## 3948 1980
## 3949 1979
## 3950 1978
## 3951 1977
## 3952 1976
## 3953 1975
## 3954 1974
## 3955 1973
## 3956 1972
## 3957 1971
## 3958 1970
## 3959 1969
## 3960 1968
## 3961 1967
## 3962 1966
## 3963 1965
## 3964 1964
## 3965 1963
## 3966 1962
## 3967 1961
## 3968 1960
## 3969 2021
## 3970 2020
## 3971 2019
## 3972 2018
## 3973 2017
## 3974 2016
## 3975 2015
## 3976 2014
## 3977 2013
## 3978 2012
## 3979 2011
## 3980 2010
## 3981 2009
## 3982 2008
## 3983 2007
## 3984 2006
## 3985 2005
## 3986 2004
## 3987 2003
## 3988 2002
## 3989 2001
## 3990 2000
## 3991 1999
## 3992 1998
## 3993 1997
## 3994 1996
## 3995 1995
## 3996 1994
## 3997 1993
## 3998 1992
## 3999 1991
## 4000 1990
## 4001 1989
## 4002 1988
## 4003 1987
## 4004 1986
## 4005 1985
## 4006 1984
## 4007 1983
## 4008 1982
## 4009 1981
## 4010 1980
## 4011 1979
## 4012 1978
## 4013 1977
## 4014 1976
## 4015 1975
## 4016 1974
## 4017 1973
## 4018 1972
## 4019 1971
## 4020 1970
## 4021 1969
## 4022 1968
## 4023 1967
## 4024 1966
## 4025 1965
## 4026 1964
## 4027 1963
## 4028 1962
## 4029 1961
## 4030 1960
## 4031 2021
## 4032 2020
## 4033 2019
## 4034 2018
## 4035 2017
## 4036 2016
## 4037 2015
## 4038 2014
## 4039 2013
## 4040 2012
## 4041 2011
## 4042 2010
## 4043 2009
## 4044 2008
## 4045 2007
## 4046 2006
## 4047 2005
## 4048 2004
## 4049 2003
## 4050 2002
## 4051 2001
## 4052 2000
## 4053 1999
## 4054 1998
## 4055 1997
## 4056 1996
## 4057 1995
## 4058 1994
## 4059 1993
## 4060 1992
## 4061 1991
## 4062 1990
## 4063 1989
## 4064 1988
## 4065 1987
## 4066 1986
## 4067 1985
## 4068 1984
## 4069 1983
## 4070 1982
## 4071 1981
## 4072 1980
## 4073 1979
## 4074 1978
## 4075 1977
## 4076 1976
## 4077 1975
## 4078 1974
## 4079 1973
## 4080 1972
## 4081 1971
## 4082 1970
## 4083 1969
## 4084 1968
## 4085 1967
## 4086 1966
## 4087 1965
## 4088 1964
## 4089 1963
## 4090 1962
## 4091 1961
## 4092 1960
## 4093 2021
## 4094 2020
## 4095 2019
## 4096 2018
## 4097 2017
## 4098 2016
## 4099 2015
## 4100 2014
## 4101 2013
## 4102 2012
## 4103 2011
## 4104 2010
## 4105 2009
## 4106 2008
## 4107 2007
## 4108 2006
## 4109 2005
## 4110 2004
## 4111 2003
## 4112 2002
## 4113 2001
## 4114 2000
## 4115 1999
## 4116 1998
## 4117 1997
## 4118 1996
## 4119 1995
## 4120 1994
## 4121 1993
## 4122 1992
## 4123 1991
## 4124 1990
## 4125 1989
## 4126 1988
## 4127 1987
## 4128 1986
## 4129 1985
## 4130 1984
## 4131 1983
## 4132 1982
## 4133 1981
## 4134 1980
## 4135 1979
## 4136 1978
## 4137 1977
## 4138 1976
## 4139 1975
## 4140 1974
## 4141 1973
## 4142 1972
## 4143 1971
## 4144 1970
## 4145 1969
## 4146 1968
## 4147 1967
## 4148 1966
## 4149 1965
## 4150 1964
## 4151 1963
## 4152 1962
## 4153 1961
## 4154 1960
## 4155 2021
## 4156 2020
## 4157 2019
## 4158 2018
## 4159 2017
## 4160 2016
## 4161 2015
## 4162 2014
## 4163 2013
## 4164 2012
## 4165 2011
## 4166 2010
## 4167 2009
## 4168 2008
## 4169 2007
## 4170 2006
## 4171 2005
## 4172 2004
## 4173 2003
## 4174 2002
## 4175 2001
## 4176 2000
## 4177 1999
## 4178 1998
## 4179 1997
## 4180 1996
## 4181 1995
## 4182 1994
## 4183 1993
## 4184 1992
## 4185 1991
## 4186 1990
## 4187 1989
## 4188 1988
## 4189 1987
## 4190 1986
## 4191 1985
## 4192 1984
## 4193 1983
## 4194 1982
## 4195 1981
## 4196 1980
## 4197 1979
## 4198 1978
## 4199 1977
## 4200 1976
## 4201 1975
## 4202 1974
## 4203 1973
## 4204 1972
## 4205 1971
## 4206 1970
## 4207 1969
## 4208 1968
## 4209 1967
## 4210 1966
## 4211 1965
## 4212 1964
## 4213 1963
## 4214 1962
## 4215 1961
## 4216 1960
## 4217 2021
## 4218 2020
## 4219 2019
## 4220 2018
## 4221 2017
## 4222 2016
## 4223 2015
## 4224 2014
## 4225 2013
## 4226 2012
## 4227 2011
## 4228 2010
## 4229 2009
## 4230 2008
## 4231 2007
## 4232 2006
## 4233 2005
## 4234 2004
## 4235 2003
## 4236 2002
## 4237 2001
## 4238 2000
## 4239 1999
## 4240 1998
## 4241 1997
## 4242 1996
## 4243 1995
## 4244 1994
## 4245 1993
## 4246 1992
## 4247 1991
## 4248 1990
## 4249 1989
## 4250 1988
## 4251 1987
## 4252 1986
## 4253 1985
## 4254 1984
## 4255 1983
## 4256 1982
## 4257 1981
## 4258 1980
## 4259 1979
## 4260 1978
## 4261 1977
## 4262 1976
## 4263 1975
## 4264 1974
## 4265 1973
## 4266 1972
## 4267 1971
## 4268 1970
## 4269 1969
## 4270 1968
## 4271 1967
## 4272 1966
## 4273 1965
## 4274 1964
## 4275 1963
## 4276 1962
## 4277 1961
## 4278 1960
## 4279 2021
## 4280 2020
## 4281 2019
## 4282 2018
## 4283 2017
## 4284 2016
## 4285 2015
## 4286 2014
## 4287 2013
## 4288 2012
## 4289 2011
## 4290 2010
## 4291 2009
## 4292 2008
## 4293 2007
## 4294 2006
## 4295 2005
## 4296 2004
## 4297 2003
## 4298 2002
## 4299 2001
## 4300 2000
## 4301 1999
## 4302 1998
## 4303 1997
## 4304 1996
## 4305 1995
## 4306 1994
## 4307 1993
## 4308 1992
## 4309 1991
## 4310 1990
## 4311 1989
## 4312 1988
## 4313 1987
## 4314 1986
## 4315 1985
## 4316 1984
## 4317 1983
## 4318 1982
## 4319 1981
## 4320 1980
## 4321 1979
## 4322 1978
## 4323 1977
## 4324 1976
## 4325 1975
## 4326 1974
## 4327 1973
## 4328 1972
## 4329 1971
## 4330 1970
## 4331 1969
## 4332 1968
## 4333 1967
## 4334 1966
## 4335 1965
## 4336 1964
## 4337 1963
## 4338 1962
## 4339 1961
## 4340 1960
## 4341 2021
## 4342 2020
## 4343 2019
## 4344 2018
## 4345 2017
## 4346 2016
## 4347 2015
## 4348 2014
## 4349 2013
## 4350 2012
## 4351 2011
## 4352 2010
## 4353 2009
## 4354 2008
## 4355 2007
## 4356 2006
## 4357 2005
## 4358 2004
## 4359 2003
## 4360 2002
## 4361 2001
## 4362 2000
## 4363 1999
## 4364 1998
## 4365 1997
## 4366 1996
## 4367 1995
## 4368 1994
## 4369 1993
## 4370 1992
## 4371 1991
## 4372 1990
## 4373 1989
## 4374 1988
## 4375 1987
## 4376 1986
## 4377 1985
## 4378 1984
## 4379 1983
## 4380 1982
## 4381 1981
## 4382 1980
## 4383 1979
## 4384 1978
## 4385 1977
## 4386 1976
## 4387 1975
## 4388 1974
## 4389 1973
## 4390 1972
## 4391 1971
## 4392 1970
## 4393 1969
## 4394 1968
## 4395 1967
## 4396 1966
## 4397 1965
## 4398 1964
## 4399 1963
## 4400 1962
## 4401 1961
## 4402 1960
## 4403 2021
## 4404 2020
## 4405 2019
## 4406 2018
## 4407 2017
## 4408 2016
## 4409 2015
## 4410 2014
## 4411 2013
## 4412 2012
## 4413 2011
## 4414 2010
## 4415 2009
## 4416 2008
## 4417 2007
## 4418 2006
## 4419 2005
## 4420 2004
## 4421 2003
## 4422 2002
## 4423 2001
## 4424 2000
## 4425 1999
## 4426 1998
## 4427 1997
## 4428 1996
## 4429 1995
## 4430 1994
## 4431 1993
## 4432 1992
## 4433 1991
## 4434 1990
## 4435 1989
## 4436 1988
## 4437 1987
## 4438 1986
## 4439 1985
## 4440 1984
## 4441 1983
## 4442 1982
## 4443 1981
## 4444 1980
## 4445 1979
## 4446 1978
## 4447 1977
## 4448 1976
## 4449 1975
## 4450 1974
## 4451 1973
## 4452 1972
## 4453 1971
## 4454 1970
## 4455 1969
## 4456 1968
## 4457 1967
## 4458 1966
## 4459 1965
## 4460 1964
## 4461 1963
## 4462 1962
## 4463 1961
## 4464 1960
## 4465 2021
## 4466 2020
## 4467 2019
## 4468 2018
## 4469 2017
## 4470 2016
## 4471 2015
## 4472 2014
## 4473 2013
## 4474 2012
## 4475 2011
## 4476 2010
## 4477 2009
## 4478 2008
## 4479 2007
## 4480 2006
## 4481 2005
## 4482 2004
## 4483 2003
## 4484 2002
## 4485 2001
## 4486 2000
## 4487 1999
## 4488 1998
## 4489 1997
## 4490 1996
## 4491 1995
## 4492 1994
## 4493 1993
## 4494 1992
## 4495 1991
## 4496 1990
## 4497 1989
## 4498 1988
## 4499 1987
## 4500 1986
## 4501 1985
## 4502 1984
## 4503 1983
## 4504 1982
## 4505 1981
## 4506 1980
## 4507 1979
## 4508 1978
## 4509 1977
## 4510 1976
## 4511 1975
## 4512 1974
## 4513 1973
## 4514 1972
## 4515 1971
## 4516 1970
## 4517 1969
## 4518 1968
## 4519 1967
## 4520 1966
## 4521 1965
## 4522 1964
## 4523 1963
## 4524 1962
## 4525 1961
## 4526 1960
## 4527 2021
## 4528 2020
## 4529 2019
## 4530 2018
## 4531 2017
## 4532 2016
## 4533 2015
## 4534 2014
## 4535 2013
## 4536 2012
## 4537 2011
## 4538 2010
## 4539 2009
## 4540 2008
## 4541 2007
## 4542 2006
## 4543 2005
## 4544 2004
## 4545 2003
## 4546 2002
## 4547 2001
## 4548 2000
## 4549 1999
## 4550 1998
## 4551 1997
## 4552 1996
## 4553 1995
## 4554 1994
## 4555 1993
## 4556 1992
## 4557 1991
## 4558 1990
## 4559 1989
## 4560 1988
## 4561 1987
## 4562 1986
## 4563 1985
## 4564 1984
## 4565 1983
## 4566 1982
## 4567 1981
## 4568 1980
## 4569 1979
## 4570 1978
## 4571 1977
## 4572 1976
## 4573 1975
## 4574 1974
## 4575 1973
## 4576 1972
## 4577 1971
## 4578 1970
## 4579 1969
## 4580 1968
## 4581 1967
## 4582 1966
## 4583 1965
## 4584 1964
## 4585 1963
## 4586 1962
## 4587 1961
## 4588 1960
## 4589 2021
## 4590 2020
## 4591 2019
## 4592 2018
## 4593 2017
## 4594 2016
## 4595 2015
## 4596 2014
## 4597 2013
## 4598 2012
## 4599 2011
## 4600 2010
## 4601 2009
## 4602 2008
## 4603 2007
## 4604 2006
## 4605 2005
## 4606 2004
## 4607 2003
## 4608 2002
## 4609 2001
## 4610 2000
## 4611 1999
## 4612 1998
## 4613 1997
## 4614 1996
## 4615 1995
## 4616 1994
## 4617 1993
## 4618 1992
## 4619 1991
## 4620 1990
## 4621 1989
## 4622 1988
## 4623 1987
## 4624 1986
## 4625 1985
## 4626 1984
## 4627 1983
## 4628 1982
## 4629 1981
## 4630 1980
## 4631 1979
## 4632 1978
## 4633 1977
## 4634 1976
## 4635 1975
## 4636 1974
## 4637 1973
## 4638 1972
## 4639 1971
## 4640 1970
## 4641 1969
## 4642 1968
## 4643 1967
## 4644 1966
## 4645 1965
## 4646 1964
## 4647 1963
## 4648 1962
## 4649 1961
## 4650 1960
## 4651 2021
## 4652 2020
## 4653 2019
## 4654 2018
## 4655 2017
## 4656 2016
## 4657 2015
## 4658 2014
## 4659 2013
## 4660 2012
## 4661 2011
## 4662 2010
## 4663 2009
## 4664 2008
## 4665 2007
## 4666 2006
## 4667 2005
## 4668 2004
## 4669 2003
## 4670 2002
## 4671 2001
## 4672 2000
## 4673 1999
## 4674 1998
## 4675 1997
## 4676 1996
## 4677 1995
## 4678 1994
## 4679 1993
## 4680 1992
## 4681 1991
## 4682 1990
## 4683 1989
## 4684 1988
## 4685 1987
## 4686 1986
## 4687 1985
## 4688 1984
## 4689 1983
## 4690 1982
## 4691 1981
## 4692 1980
## 4693 1979
## 4694 1978
## 4695 1977
## 4696 1976
## 4697 1975
## 4698 1974
## 4699 1973
## 4700 1972
## 4701 1971
## 4702 1970
## 4703 1969
## 4704 1968
## 4705 1967
## 4706 1966
## 4707 1965
## 4708 1964
## 4709 1963
## 4710 1962
## 4711 1961
## 4712 1960
## 4713 2021
## 4714 2020
## 4715 2019
## 4716 2018
## 4717 2017
## 4718 2016
## 4719 2015
## 4720 2014
## 4721 2013
## 4722 2012
## 4723 2011
## 4724 2010
## 4725 2009
## 4726 2008
## 4727 2007
## 4728 2006
## 4729 2005
## 4730 2004
## 4731 2003
## 4732 2002
## 4733 2001
## 4734 2000
## 4735 1999
## 4736 1998
## 4737 1997
## 4738 1996
## 4739 1995
## 4740 1994
## 4741 1993
## 4742 1992
## 4743 1991
## 4744 1990
## 4745 1989
## 4746 1988
## 4747 1987
## 4748 1986
## 4749 1985
## 4750 1984
## 4751 1983
## 4752 1982
## 4753 1981
## 4754 1980
## 4755 1979
## 4756 1978
## 4757 1977
## 4758 1976
## 4759 1975
## 4760 1974
## 4761 1973
## 4762 1972
## 4763 1971
## 4764 1970
## 4765 1969
## 4766 1968
## 4767 1967
## 4768 1966
## 4769 1965
## 4770 1964
## 4771 1963
## 4772 1962
## 4773 1961
## 4774 1960
## 4775 2021
## 4776 2020
## 4777 2019
## 4778 2018
## 4779 2017
## 4780 2016
## 4781 2015
## 4782 2014
## 4783 2013
## 4784 2012
## 4785 2011
## 4786 2010
## 4787 2009
## 4788 2008
## 4789 2007
## 4790 2006
## 4791 2005
## 4792 2004
## 4793 2003
## 4794 2002
## 4795 2001
## 4796 2000
## 4797 1999
## 4798 1998
## 4799 1997
## 4800 1996
## 4801 1995
## 4802 1994
## 4803 1993
## 4804 1992
## 4805 1991
## 4806 1990
## 4807 1989
## 4808 1988
## 4809 1987
## 4810 1986
## 4811 1985
## 4812 1984
## 4813 1983
## 4814 1982
## 4815 1981
## 4816 1980
## 4817 1979
## 4818 1978
## 4819 1977
## 4820 1976
## 4821 1975
## 4822 1974
## 4823 1973
## 4824 1972
## 4825 1971
## 4826 1970
## 4827 1969
## 4828 1968
## 4829 1967
## 4830 1966
## 4831 1965
## 4832 1964
## 4833 1963
## 4834 1962
## 4835 1961
## 4836 1960
## 4837 2021
## 4838 2020
## 4839 2019
## 4840 2018
## 4841 2017
## 4842 2016
## 4843 2015
## 4844 2014
## 4845 2013
## 4846 2012
## 4847 2011
## 4848 2010
## 4849 2009
## 4850 2008
## 4851 2007
## 4852 2006
## 4853 2005
## 4854 2004
## 4855 2003
## 4856 2002
## 4857 2001
## 4858 2000
## 4859 1999
## 4860 1998
## 4861 1997
## 4862 1996
## 4863 1995
## 4864 1994
## 4865 1993
## 4866 1992
## 4867 1991
## 4868 1990
## 4869 1989
## 4870 1988
## 4871 1987
## 4872 1986
## 4873 1985
## 4874 1984
## 4875 1983
## 4876 1982
## 4877 1981
## 4878 1980
## 4879 1979
## 4880 1978
## 4881 1977
## 4882 1976
## 4883 1975
## 4884 1974
## 4885 1973
## 4886 1972
## 4887 1971
## 4888 1970
## 4889 1969
## 4890 1968
## 4891 1967
## 4892 1966
## 4893 1965
## 4894 1964
## 4895 1963
## 4896 1962
## 4897 1961
## 4898 1960
## 4899 2021
## 4900 2020
## 4901 2019
## 4902 2018
## 4903 2017
## 4904 2016
## 4905 2015
## 4906 2014
## 4907 2013
## 4908 2012
## 4909 2011
## 4910 2010
## 4911 2009
## 4912 2008
## 4913 2007
## 4914 2006
## 4915 2005
## 4916 2004
## 4917 2003
## 4918 2002
## 4919 2001
## 4920 2000
## 4921 1999
## 4922 1998
## 4923 1997
## 4924 1996
## 4925 1995
## 4926 1994
## 4927 1993
## 4928 1992
## 4929 1991
## 4930 1990
## 4931 1989
## 4932 1988
## 4933 1987
## 4934 1986
## 4935 1985
## 4936 1984
## 4937 1983
## 4938 1982
## 4939 1981
## 4940 1980
## 4941 1979
## 4942 1978
## 4943 1977
## 4944 1976
## 4945 1975
## 4946 1974
## 4947 1973
## 4948 1972
## 4949 1971
## 4950 1970
## 4951 1969
## 4952 1968
## 4953 1967
## 4954 1966
## 4955 1965
## 4956 1964
## 4957 1963
## 4958 1962
## 4959 1961
## 4960 1960
## 4961 2021
## 4962 2020
## 4963 2019
## 4964 2018
## 4965 2017
## 4966 2016
## 4967 2015
## 4968 2014
## 4969 2013
## 4970 2012
## 4971 2011
## 4972 2010
## 4973 2009
## 4974 2008
## 4975 2007
## 4976 2006
## 4977 2005
## 4978 2004
## 4979 2003
## 4980 2002
## 4981 2001
## 4982 2000
## 4983 1999
## 4984 1998
## 4985 1997
## 4986 1996
## 4987 1995
## 4988 1994
## 4989 1993
## 4990 1992
## 4991 1991
## 4992 1990
## 4993 1989
## 4994 1988
## 4995 1987
## 4996 1986
## 4997 1985
## 4998 1984
## 4999 1983
## 5000 1982
## 5001 1981
## 5002 1980
## 5003 1979
## 5004 1978
## 5005 1977
## 5006 1976
## 5007 1975
## 5008 1974
## 5009 1973
## 5010 1972
## 5011 1971
## 5012 1970
## 5013 1969
## 5014 1968
## 5015 1967
## 5016 1966
## 5017 1965
## 5018 1964
## 5019 1963
## 5020 1962
## 5021 1961
## 5022 1960
## 5023 2021
## 5024 2020
## 5025 2019
## 5026 2018
## 5027 2017
## 5028 2016
## 5029 2015
## 5030 2014
## 5031 2013
## 5032 2012
## 5033 2011
## 5034 2010
## 5035 2009
## 5036 2008
## 5037 2007
## 5038 2006
## 5039 2005
## 5040 2004
## 5041 2003
## 5042 2002
## 5043 2001
## 5044 2000
## 5045 1999
## 5046 1998
## 5047 1997
## 5048 1996
## 5049 1995
## 5050 1994
## 5051 1993
## 5052 1992
## 5053 1991
## 5054 1990
## 5055 1989
## 5056 1988
## 5057 1987
## 5058 1986
## 5059 1985
## 5060 1984
## 5061 1983
## 5062 1982
## 5063 1981
## 5064 1980
## 5065 1979
## 5066 1978
## 5067 1977
## 5068 1976
## 5069 1975
## 5070 1974
## 5071 1973
## 5072 1972
## 5073 1971
## 5074 1970
## 5075 1969
## 5076 1968
## 5077 1967
## 5078 1966
## 5079 1965
## 5080 1964
## 5081 1963
## 5082 1962
## 5083 1961
## 5084 1960
## 5085 2021
## 5086 2020
## 5087 2019
## 5088 2018
## 5089 2017
## 5090 2016
## 5091 2015
## 5092 2014
## 5093 2013
## 5094 2012
## 5095 2011
## 5096 2010
## 5097 2009
## 5098 2008
## 5099 2007
## 5100 2006
## 5101 2005
## 5102 2004
## 5103 2003
## 5104 2002
## 5105 2001
## 5106 2000
## 5107 1999
## 5108 1998
## 5109 1997
## 5110 1996
## 5111 1995
## 5112 1994
## 5113 1993
## 5114 1992
## 5115 1991
## 5116 1990
## 5117 1989
## 5118 1988
## 5119 1987
## 5120 1986
## 5121 1985
## 5122 1984
## 5123 1983
## 5124 1982
## 5125 1981
## 5126 1980
## 5127 1979
## 5128 1978
## 5129 1977
## 5130 1976
## 5131 1975
## 5132 1974
## 5133 1973
## 5134 1972
## 5135 1971
## 5136 1970
## 5137 1969
## 5138 1968
## 5139 1967
## 5140 1966
## 5141 1965
## 5142 1964
## 5143 1963
## 5144 1962
## 5145 1961
## 5146 1960
## 5147 2021
## 5148 2020
## 5149 2019
## 5150 2018
## 5151 2017
## 5152 2016
## 5153 2015
## 5154 2014
## 5155 2013
## 5156 2012
## 5157 2011
## 5158 2010
## 5159 2009
## 5160 2008
## 5161 2007
## 5162 2006
## 5163 2005
## 5164 2004
## 5165 2003
## 5166 2002
## 5167 2001
## 5168 2000
## 5169 1999
## 5170 1998
## 5171 1997
## 5172 1996
## 5173 1995
## 5174 1994
## 5175 1993
## 5176 1992
## 5177 1991
## 5178 1990
## 5179 1989
## 5180 1988
## 5181 1987
## 5182 1986
## 5183 1985
## 5184 1984
## 5185 1983
## 5186 1982
## 5187 1981
## 5188 1980
## 5189 1979
## 5190 1978
## 5191 1977
## 5192 1976
## 5193 1975
## 5194 1974
## 5195 1973
## 5196 1972
## 5197 1971
## 5198 1970
## 5199 1969
## 5200 1968
## 5201 1967
## 5202 1966
## 5203 1965
## 5204 1964
## 5205 1963
## 5206 1962
## 5207 1961
## 5208 1960
## 5209 2021
## 5210 2020
## 5211 2019
## 5212 2018
## 5213 2017
## 5214 2016
## 5215 2015
## 5216 2014
## 5217 2013
## 5218 2012
## 5219 2011
## 5220 2010
## 5221 2009
## 5222 2008
## 5223 2007
## 5224 2006
## 5225 2005
## 5226 2004
## 5227 2003
## 5228 2002
## 5229 2001
## 5230 2000
## 5231 1999
## 5232 1998
## 5233 1997
## 5234 1996
## 5235 1995
## 5236 1994
## 5237 1993
## 5238 1992
## 5239 1991
## 5240 1990
## 5241 1989
## 5242 1988
## 5243 1987
## 5244 1986
## 5245 1985
## 5246 1984
## 5247 1983
## 5248 1982
## 5249 1981
## 5250 1980
## 5251 1979
## 5252 1978
## 5253 1977
## 5254 1976
## 5255 1975
## 5256 1974
## 5257 1973
## 5258 1972
## 5259 1971
## 5260 1970
## 5261 1969
## 5262 1968
## 5263 1967
## 5264 1966
## 5265 1965
## 5266 1964
## 5267 1963
## 5268 1962
## 5269 1961
## 5270 1960
## 5271 2021
## 5272 2020
## 5273 2019
## 5274 2018
## 5275 2017
## 5276 2016
## 5277 2015
## 5278 2014
## 5279 2013
## 5280 2012
## 5281 2011
## 5282 2010
## 5283 2009
## 5284 2008
## 5285 2007
## 5286 2006
## 5287 2005
## 5288 2004
## 5289 2003
## 5290 2002
## 5291 2001
## 5292 2000
## 5293 1999
## 5294 1998
## 5295 1997
## 5296 1996
## 5297 1995
## 5298 1994
## 5299 1993
## 5300 1992
## 5301 1991
## 5302 1990
## 5303 1989
## 5304 1988
## 5305 1987
## 5306 1986
## 5307 1985
## 5308 1984
## 5309 1983
## 5310 1982
## 5311 1981
## 5312 1980
## 5313 1979
## 5314 1978
## 5315 1977
## 5316 1976
## 5317 1975
## 5318 1974
## 5319 1973
## 5320 1972
## 5321 1971
## 5322 1970
## 5323 1969
## 5324 1968
## 5325 1967
## 5326 1966
## 5327 1965
## 5328 1964
## 5329 1963
## 5330 1962
## 5331 1961
## 5332 1960
## 5333 2021
## 5334 2020
## 5335 2019
## 5336 2018
## 5337 2017
## 5338 2016
## 5339 2015
## 5340 2014
## 5341 2013
## 5342 2012
## 5343 2011
## 5344 2010
## 5345 2009
## 5346 2008
## 5347 2007
## 5348 2006
## 5349 2005
## 5350 2004
## 5351 2003
## 5352 2002
## 5353 2001
## 5354 2000
## 5355 1999
## 5356 1998
## 5357 1997
## 5358 1996
## 5359 1995
## 5360 1994
## 5361 1993
## 5362 1992
## 5363 1991
## 5364 1990
## 5365 1989
## 5366 1988
## 5367 1987
## 5368 1986
## 5369 1985
## 5370 1984
## 5371 1983
## 5372 1982
## 5373 1981
## 5374 1980
## 5375 1979
## 5376 1978
## 5377 1977
## 5378 1976
## 5379 1975
## 5380 1974
## 5381 1973
## 5382 1972
## 5383 1971
## 5384 1970
## 5385 1969
## 5386 1968
## 5387 1967
## 5388 1966
## 5389 1965
## 5390 1964
## 5391 1963
## 5392 1962
## 5393 1961
## 5394 1960
## 5395 2021
## 5396 2020
## 5397 2019
## 5398 2018
## 5399 2017
## 5400 2016
## 5401 2015
## 5402 2014
## 5403 2013
## 5404 2012
## 5405 2011
## 5406 2010
## 5407 2009
## 5408 2008
## 5409 2007
## 5410 2006
## 5411 2005
## 5412 2004
## 5413 2003
## 5414 2002
## 5415 2001
## 5416 2000
## 5417 1999
## 5418 1998
## 5419 1997
## 5420 1996
## 5421 1995
## 5422 1994
## 5423 1993
## 5424 1992
## 5425 1991
## 5426 1990
## 5427 1989
## 5428 1988
## 5429 1987
## 5430 1986
## 5431 1985
## 5432 1984
## 5433 1983
## 5434 1982
## 5435 1981
## 5436 1980
## 5437 1979
## 5438 1978
## 5439 1977
## 5440 1976
## 5441 1975
## 5442 1974
## 5443 1973
## 5444 1972
## 5445 1971
## 5446 1970
## 5447 1969
## 5448 1968
## 5449 1967
## 5450 1966
## 5451 1965
## 5452 1964
## 5453 1963
## 5454 1962
## 5455 1961
## 5456 1960
## 5457 2021
## 5458 2020
## 5459 2019
## 5460 2018
## 5461 2017
## 5462 2016
## 5463 2015
## 5464 2014
## 5465 2013
## 5466 2012
## 5467 2011
## 5468 2010
## 5469 2009
## 5470 2008
## 5471 2007
## 5472 2006
## 5473 2005
## 5474 2004
## 5475 2003
## 5476 2002
## 5477 2001
## 5478 2000
## 5479 1999
## 5480 1998
## 5481 1997
## 5482 1996
## 5483 1995
## 5484 1994
## 5485 1993
## 5486 1992
## 5487 1991
## 5488 1990
## 5489 1989
## 5490 1988
## 5491 1987
## 5492 1986
## 5493 1985
## 5494 1984
## 5495 1983
## 5496 1982
## 5497 1981
## 5498 1980
## 5499 1979
## 5500 1978
## 5501 1977
## 5502 1976
## 5503 1975
## 5504 1974
## 5505 1973
## 5506 1972
## 5507 1971
## 5508 1970
## 5509 1969
## 5510 1968
## 5511 1967
## 5512 1966
## 5513 1965
## 5514 1964
## 5515 1963
## 5516 1962
## 5517 1961
## 5518 1960
## 5519 2021
## 5520 2020
## 5521 2019
## 5522 2018
## 5523 2017
## 5524 2016
## 5525 2015
## 5526 2014
## 5527 2013
## 5528 2012
## 5529 2011
## 5530 2010
## 5531 2009
## 5532 2008
## 5533 2007
## 5534 2006
## 5535 2005
## 5536 2004
## 5537 2003
## 5538 2002
## 5539 2001
## 5540 2000
## 5541 1999
## 5542 1998
## 5543 1997
## 5544 1996
## 5545 1995
## 5546 1994
## 5547 1993
## 5548 1992
## 5549 1991
## 5550 1990
## 5551 1989
## 5552 1988
## 5553 1987
## 5554 1986
## 5555 1985
## 5556 1984
## 5557 1983
## 5558 1982
## 5559 1981
## 5560 1980
## 5561 1979
## 5562 1978
## 5563 1977
## 5564 1976
## 5565 1975
## 5566 1974
## 5567 1973
## 5568 1972
## 5569 1971
## 5570 1970
## 5571 1969
## 5572 1968
## 5573 1967
## 5574 1966
## 5575 1965
## 5576 1964
## 5577 1963
## 5578 1962
## 5579 1961
## 5580 1960
## 5581 2021
## 5582 2020
## 5583 2019
## 5584 2018
## 5585 2017
## 5586 2016
## 5587 2015
## 5588 2014
## 5589 2013
## 5590 2012
## 5591 2011
## 5592 2010
## 5593 2009
## 5594 2008
## 5595 2007
## 5596 2006
## 5597 2005
## 5598 2004
## 5599 2003
## 5600 2002
## 5601 2001
## 5602 2000
## 5603 1999
## 5604 1998
## 5605 1997
## 5606 1996
## 5607 1995
## 5608 1994
## 5609 1993
## 5610 1992
## 5611 1991
## 5612 1990
## 5613 1989
## 5614 1988
## 5615 1987
## 5616 1986
## 5617 1985
## 5618 1984
## 5619 1983
## 5620 1982
## 5621 1981
## 5622 1980
## 5623 1979
## 5624 1978
## 5625 1977
## 5626 1976
## 5627 1975
## 5628 1974
## 5629 1973
## 5630 1972
## 5631 1971
## 5632 1970
## 5633 1969
## 5634 1968
## 5635 1967
## 5636 1966
## 5637 1965
## 5638 1964
## 5639 1963
## 5640 1962
## 5641 1961
## 5642 1960
## 5643 2021
## 5644 2020
## 5645 2019
## 5646 2018
## 5647 2017
## 5648 2016
## 5649 2015
## 5650 2014
## 5651 2013
## 5652 2012
## 5653 2011
## 5654 2010
## 5655 2009
## 5656 2008
## 5657 2007
## 5658 2006
## 5659 2005
## 5660 2004
## 5661 2003
## 5662 2002
## 5663 2001
## 5664 2000
## 5665 1999
## 5666 1998
## 5667 1997
## 5668 1996
## 5669 1995
## 5670 1994
## 5671 1993
## 5672 1992
## 5673 1991
## 5674 1990
## 5675 1989
## 5676 1988
## 5677 1987
## 5678 1986
## 5679 1985
## 5680 1984
## 5681 1983
## 5682 1982
## 5683 1981
## 5684 1980
## 5685 1979
## 5686 1978
## 5687 1977
## 5688 1976
## 5689 1975
## 5690 1974
## 5691 1973
## 5692 1972
## 5693 1971
## 5694 1970
## 5695 1969
## 5696 1968
## 5697 1967
## 5698 1966
## 5699 1965
## 5700 1964
## 5701 1963
## 5702 1962
## 5703 1961
## 5704 1960
## 5705 2021
## 5706 2020
## 5707 2019
## 5708 2018
## 5709 2017
## 5710 2016
## 5711 2015
## 5712 2014
## 5713 2013
## 5714 2012
## 5715 2011
## 5716 2010
## 5717 2009
## 5718 2008
## 5719 2007
## 5720 2006
## 5721 2005
## 5722 2004
## 5723 2003
## 5724 2002
## 5725 2001
## 5726 2000
## 5727 1999
## 5728 1998
## 5729 1997
## 5730 1996
## 5731 1995
## 5732 1994
## 5733 1993
## 5734 1992
## 5735 1991
## 5736 1990
## 5737 1989
## 5738 1988
## 5739 1987
## 5740 1986
## 5741 1985
## 5742 1984
## 5743 1983
## 5744 1982
## 5745 1981
## 5746 1980
## 5747 1979
## 5748 1978
## 5749 1977
## 5750 1976
## 5751 1975
## 5752 1974
## 5753 1973
## 5754 1972
## 5755 1971
## 5756 1970
## 5757 1969
## 5758 1968
## 5759 1967
## 5760 1966
## 5761 1965
## 5762 1964
## 5763 1963
## 5764 1962
## 5765 1961
## 5766 1960
## 5767 2021
## 5768 2020
## 5769 2019
## 5770 2018
## 5771 2017
## 5772 2016
## 5773 2015
## 5774 2014
## 5775 2013
## 5776 2012
## 5777 2011
## 5778 2010
## 5779 2009
## 5780 2008
## 5781 2007
## 5782 2006
## 5783 2005
## 5784 2004
## 5785 2003
## 5786 2002
## 5787 2001
## 5788 2000
## 5789 1999
## 5790 1998
## 5791 1997
## 5792 1996
## 5793 1995
## 5794 1994
## 5795 1993
## 5796 1992
## 5797 1991
## 5798 1990
## 5799 1989
## 5800 1988
## 5801 1987
## 5802 1986
## 5803 1985
## 5804 1984
## 5805 1983
## 5806 1982
## 5807 1981
## 5808 1980
## 5809 1979
## 5810 1978
## 5811 1977
## 5812 1976
## 5813 1975
## 5814 1974
## 5815 1973
## 5816 1972
## 5817 1971
## 5818 1970
## 5819 1969
## 5820 1968
## 5821 1967
## 5822 1966
## 5823 1965
## 5824 1964
## 5825 1963
## 5826 1962
## 5827 1961
## 5828 1960
## 5829 2021
## 5830 2020
## 5831 2019
## 5832 2018
## 5833 2017
## 5834 2016
## 5835 2015
## 5836 2014
## 5837 2013
## 5838 2012
## 5839 2011
## 5840 2010
## 5841 2009
## 5842 2008
## 5843 2007
## 5844 2006
## 5845 2005
## 5846 2004
## 5847 2003
## 5848 2002
## 5849 2001
## 5850 2000
## 5851 1999
## 5852 1998
## 5853 1997
## 5854 1996
## 5855 1995
## 5856 1994
## 5857 1993
## 5858 1992
## 5859 1991
## 5860 1990
## 5861 1989
## 5862 1988
## 5863 1987
## 5864 1986
## 5865 1985
## 5866 1984
## 5867 1983
## 5868 1982
## 5869 1981
## 5870 1980
## 5871 1979
## 5872 1978
## 5873 1977
## 5874 1976
## 5875 1975
## 5876 1974
## 5877 1973
## 5878 1972
## 5879 1971
## 5880 1970
## 5881 1969
## 5882 1968
## 5883 1967
## 5884 1966
## 5885 1965
## 5886 1964
## 5887 1963
## 5888 1962
## 5889 1961
## 5890 1960
## 5891 2021
## 5892 2020
## 5893 2019
## 5894 2018
## 5895 2017
## 5896 2016
## 5897 2015
## 5898 2014
## 5899 2013
## 5900 2012
## 5901 2011
## 5902 2010
## 5903 2009
## 5904 2008
## 5905 2007
## 5906 2006
## 5907 2005
## 5908 2004
## 5909 2003
## 5910 2002
## 5911 2001
## 5912 2000
## 5913 1999
## 5914 1998
## 5915 1997
## 5916 1996
## 5917 1995
## 5918 1994
## 5919 1993
## 5920 1992
## 5921 1991
## 5922 1990
## 5923 1989
## 5924 1988
## 5925 1987
## 5926 1986
## 5927 1985
## 5928 1984
## 5929 1983
## 5930 1982
## 5931 1981
## 5932 1980
## 5933 1979
## 5934 1978
## 5935 1977
## 5936 1976
## 5937 1975
## 5938 1974
## 5939 1973
## 5940 1972
## 5941 1971
## 5942 1970
## 5943 1969
## 5944 1968
## 5945 1967
## 5946 1966
## 5947 1965
## 5948 1964
## 5949 1963
## 5950 1962
## 5951 1961
## 5952 1960
## 5953 2021
## 5954 2020
## 5955 2019
## 5956 2018
## 5957 2017
## 5958 2016
## 5959 2015
## 5960 2014
## 5961 2013
## 5962 2012
## 5963 2011
## 5964 2010
## 5965 2009
## 5966 2008
## 5967 2007
## 5968 2006
## 5969 2005
## 5970 2004
## 5971 2003
## 5972 2002
## 5973 2001
## 5974 2000
## 5975 1999
## 5976 1998
## 5977 1997
## 5978 1996
## 5979 1995
## 5980 1994
## 5981 1993
## 5982 1992
## 5983 1991
## 5984 1990
## 5985 1989
## 5986 1988
## 5987 1987
## 5988 1986
## 5989 1985
## 5990 1984
## 5991 1983
## 5992 1982
## 5993 1981
## 5994 1980
## 5995 1979
## 5996 1978
## 5997 1977
## 5998 1976
## 5999 1975
## 6000 1974
## 6001 1973
## 6002 1972
## 6003 1971
## 6004 1970
## 6005 1969
## 6006 1968
## 6007 1967
## 6008 1966
## 6009 1965
## 6010 1964
## 6011 1963
## 6012 1962
## 6013 1961
## 6014 1960
## 6015 2021
## 6016 2020
## 6017 2019
## 6018 2018
## 6019 2017
## 6020 2016
## 6021 2015
## 6022 2014
## 6023 2013
## 6024 2012
## 6025 2011
## 6026 2010
## 6027 2009
## 6028 2008
## 6029 2007
## 6030 2006
## 6031 2005
## 6032 2004
## 6033 2003
## 6034 2002
## 6035 2001
## 6036 2000
## 6037 1999
## 6038 1998
## 6039 1997
## 6040 1996
## 6041 1995
## 6042 1994
## 6043 1993
## 6044 1992
## 6045 1991
## 6046 1990
## 6047 1989
## 6048 1988
## 6049 1987
## 6050 1986
## 6051 1985
## 6052 1984
## 6053 1983
## 6054 1982
## 6055 1981
## 6056 1980
## 6057 1979
## 6058 1978
## 6059 1977
## 6060 1976
## 6061 1975
## 6062 1974
## 6063 1973
## 6064 1972
## 6065 1971
## 6066 1970
## 6067 1969
## 6068 1968
## 6069 1967
## 6070 1966
## 6071 1965
## 6072 1964
## 6073 1963
## 6074 1962
## 6075 1961
## 6076 1960
## 6077 2021
## 6078 2020
## 6079 2019
## 6080 2018
## 6081 2017
## 6082 2016
## 6083 2015
## 6084 2014
## 6085 2013
## 6086 2012
## 6087 2011
## 6088 2010
## 6089 2009
## 6090 2008
## 6091 2007
## 6092 2006
## 6093 2005
## 6094 2004
## 6095 2003
## 6096 2002
## 6097 2001
## 6098 2000
## 6099 1999
## 6100 1998
## 6101 1997
## 6102 1996
## 6103 1995
## 6104 1994
## 6105 1993
## 6106 1992
## 6107 1991
## 6108 1990
## 6109 1989
## 6110 1988
## 6111 1987
## 6112 1986
## 6113 1985
## 6114 1984
## 6115 1983
## 6116 1982
## 6117 1981
## 6118 1980
## 6119 1979
## 6120 1978
## 6121 1977
## 6122 1976
## 6123 1975
## 6124 1974
## 6125 1973
## 6126 1972
## 6127 1971
## 6128 1970
## 6129 1969
## 6130 1968
## 6131 1967
## 6132 1966
## 6133 1965
## 6134 1964
## 6135 1963
## 6136 1962
## 6137 1961
## 6138 1960
## 6139 2021
## 6140 2020
## 6141 2019
## 6142 2018
## 6143 2017
## 6144 2016
## 6145 2015
## 6146 2014
## 6147 2013
## 6148 2012
## 6149 2011
## 6150 2010
## 6151 2009
## 6152 2008
## 6153 2007
## 6154 2006
## 6155 2005
## 6156 2004
## 6157 2003
## 6158 2002
## 6159 2001
## 6160 2000
## 6161 1999
## 6162 1998
## 6163 1997
## 6164 1996
## 6165 1995
## 6166 1994
## 6167 1993
## 6168 1992
## 6169 1991
## 6170 1990
## 6171 1989
## 6172 1988
## 6173 1987
## 6174 1986
## 6175 1985
## 6176 1984
## 6177 1983
## 6178 1982
## 6179 1981
## 6180 1980
## 6181 1979
## 6182 1978
## 6183 1977
## 6184 1976
## 6185 1975
## 6186 1974
## 6187 1973
## 6188 1972
## 6189 1971
## 6190 1970
## 6191 1969
## 6192 1968
## 6193 1967
## 6194 1966
## 6195 1965
## 6196 1964
## 6197 1963
## 6198 1962
## 6199 1961
## 6200 1960
## 6201 2021
## 6202 2020
## 6203 2019
## 6204 2018
## 6205 2017
## 6206 2016
## 6207 2015
## 6208 2014
## 6209 2013
## 6210 2012
## 6211 2011
## 6212 2010
## 6213 2009
## 6214 2008
## 6215 2007
## 6216 2006
## 6217 2005
## 6218 2004
## 6219 2003
## 6220 2002
## 6221 2001
## 6222 2000
## 6223 1999
## 6224 1998
## 6225 1997
## 6226 1996
## 6227 1995
## 6228 1994
## 6229 1993
## 6230 1992
## 6231 1991
## 6232 1990
## 6233 1989
## 6234 1988
## 6235 1987
## 6236 1986
## 6237 1985
## 6238 1984
## 6239 1983
## 6240 1982
## 6241 1981
## 6242 1980
## 6243 1979
## 6244 1978
## 6245 1977
## 6246 1976
## 6247 1975
## 6248 1974
## 6249 1973
## 6250 1972
## 6251 1971
## 6252 1970
## 6253 1969
## 6254 1968
## 6255 1967
## 6256 1966
## 6257 1965
## 6258 1964
## 6259 1963
## 6260 1962
## 6261 1961
## 6262 1960
## 6263 2021
## 6264 2020
## 6265 2019
## 6266 2018
## 6267 2017
## 6268 2016
## 6269 2015
## 6270 2014
## 6271 2013
## 6272 2012
## 6273 2011
## 6274 2010
## 6275 2009
## 6276 2008
## 6277 2007
## 6278 2006
## 6279 2005
## 6280 2004
## 6281 2003
## 6282 2002
## 6283 2001
## 6284 2000
## 6285 1999
## 6286 1998
## 6287 1997
## 6288 1996
## 6289 1995
## 6290 1994
## 6291 1993
## 6292 1992
## 6293 1991
## 6294 1990
## 6295 1989
## 6296 1988
## 6297 1987
## 6298 1986
## 6299 1985
## 6300 1984
## 6301 1983
## 6302 1982
## 6303 1981
## 6304 1980
## 6305 1979
## 6306 1978
## 6307 1977
## 6308 1976
## 6309 1975
## 6310 1974
## 6311 1973
## 6312 1972
## 6313 1971
## 6314 1970
## 6315 1969
## 6316 1968
## 6317 1967
## 6318 1966
## 6319 1965
## 6320 1964
## 6321 1963
## 6322 1962
## 6323 1961
## 6324 1960
## 6325 2021
## 6326 2020
## 6327 2019
## 6328 2018
## 6329 2017
## 6330 2016
## 6331 2015
## 6332 2014
## 6333 2013
## 6334 2012
## 6335 2011
## 6336 2010
## 6337 2009
## 6338 2008
## 6339 2007
## 6340 2006
## 6341 2005
## 6342 2004
## 6343 2003
## 6344 2002
## 6345 2001
## 6346 2000
## 6347 1999
## 6348 1998
## 6349 1997
## 6350 1996
## 6351 1995
## 6352 1994
## 6353 1993
## 6354 1992
## 6355 1991
## 6356 1990
## 6357 1989
## 6358 1988
## 6359 1987
## 6360 1986
## 6361 1985
## 6362 1984
## 6363 1983
## 6364 1982
## 6365 1981
## 6366 1980
## 6367 1979
## 6368 1978
## 6369 1977
## 6370 1976
## 6371 1975
## 6372 1974
## 6373 1973
## 6374 1972
## 6375 1971
## 6376 1970
## 6377 1969
## 6378 1968
## 6379 1967
## 6380 1966
## 6381 1965
## 6382 1964
## 6383 1963
## 6384 1962
## 6385 1961
## 6386 1960
## 6387 2021
## 6388 2020
## 6389 2019
## 6390 2018
## 6391 2017
## 6392 2016
## 6393 2015
## 6394 2014
## 6395 2013
## 6396 2012
## 6397 2011
## 6398 2010
## 6399 2009
## 6400 2008
## 6401 2007
## 6402 2006
## 6403 2005
## 6404 2004
## 6405 2003
## 6406 2002
## 6407 2001
## 6408 2000
## 6409 1999
## 6410 1998
## 6411 1997
## 6412 1996
## 6413 1995
## 6414 1994
## 6415 1993
## 6416 1992
## 6417 1991
## 6418 1990
## 6419 1989
## 6420 1988
## 6421 1987
## 6422 1986
## 6423 1985
## 6424 1984
## 6425 1983
## 6426 1982
## 6427 1981
## 6428 1980
## 6429 1979
## 6430 1978
## 6431 1977
## 6432 1976
## 6433 1975
## 6434 1974
## 6435 1973
## 6436 1972
## 6437 1971
## 6438 1970
## 6439 1969
## 6440 1968
## 6441 1967
## 6442 1966
## 6443 1965
## 6444 1964
## 6445 1963
## 6446 1962
## 6447 1961
## 6448 1960
## 6449 2021
## 6450 2020
## 6451 2019
## 6452 2018
## 6453 2017
## 6454 2016
## 6455 2015
## 6456 2014
## 6457 2013
## 6458 2012
## 6459 2011
## 6460 2010
## 6461 2009
## 6462 2008
## 6463 2007
## 6464 2006
## 6465 2005
## 6466 2004
## 6467 2003
## 6468 2002
## 6469 2001
## 6470 2000
## 6471 1999
## 6472 1998
## 6473 1997
## 6474 1996
## 6475 1995
## 6476 1994
## 6477 1993
## 6478 1992
## 6479 1991
## 6480 1990
## 6481 1989
## 6482 1988
## 6483 1987
## 6484 1986
## 6485 1985
## 6486 1984
## 6487 1983
## 6488 1982
## 6489 1981
## 6490 1980
## 6491 1979
## 6492 1978
## 6493 1977
## 6494 1976
## 6495 1975
## 6496 1974
## 6497 1973
## 6498 1972
## 6499 1971
## 6500 1970
## 6501 1969
## 6502 1968
## 6503 1967
## 6504 1966
## 6505 1965
## 6506 1964
## 6507 1963
## 6508 1962
## 6509 1961
## 6510 1960
## 6511 2021
## 6512 2020
## 6513 2019
## 6514 2018
## 6515 2017
## 6516 2016
## 6517 2015
## 6518 2014
## 6519 2013
## 6520 2012
## 6521 2011
## 6522 2010
## 6523 2009
## 6524 2008
## 6525 2007
## 6526 2006
## 6527 2005
## 6528 2004
## 6529 2003
## 6530 2002
## 6531 2001
## 6532 2000
## 6533 1999
## 6534 1998
## 6535 1997
## 6536 1996
## 6537 1995
## 6538 1994
## 6539 1993
## 6540 1992
## 6541 1991
## 6542 1990
## 6543 1989
## 6544 1988
## 6545 1987
## 6546 1986
## 6547 1985
## 6548 1984
## 6549 1983
## 6550 1982
## 6551 1981
## 6552 1980
## 6553 1979
## 6554 1978
## 6555 1977
## 6556 1976
## 6557 1975
## 6558 1974
## 6559 1973
## 6560 1972
## 6561 1971
## 6562 1970
## 6563 1969
## 6564 1968
## 6565 1967
## 6566 1966
## 6567 1965
## 6568 1964
## 6569 1963
## 6570 1962
## 6571 1961
## 6572 1960
## 6573 2021
## 6574 2020
## 6575 2019
## 6576 2018
## 6577 2017
## 6578 2016
## 6579 2015
## 6580 2014
## 6581 2013
## 6582 2012
## 6583 2011
## 6584 2010
## 6585 2009
## 6586 2008
## 6587 2007
## 6588 2006
## 6589 2005
## 6590 2004
## 6591 2003
## 6592 2002
## 6593 2001
## 6594 2000
## 6595 1999
## 6596 1998
## 6597 1997
## 6598 1996
## 6599 1995
## 6600 1994
## 6601 1993
## 6602 1992
## 6603 1991
## 6604 1990
## 6605 1989
## 6606 1988
## 6607 1987
## 6608 1986
## 6609 1985
## 6610 1984
## 6611 1983
## 6612 1982
## 6613 1981
## 6614 1980
## 6615 1979
## 6616 1978
## 6617 1977
## 6618 1976
## 6619 1975
## 6620 1974
## 6621 1973
## 6622 1972
## 6623 1971
## 6624 1970
## 6625 1969
## 6626 1968
## 6627 1967
## 6628 1966
## 6629 1965
## 6630 1964
## 6631 1963
## 6632 1962
## 6633 1961
## 6634 1960
## 6635 2021
## 6636 2020
## 6637 2019
## 6638 2018
## 6639 2017
## 6640 2016
## 6641 2015
## 6642 2014
## 6643 2013
## 6644 2012
## 6645 2011
## 6646 2010
## 6647 2009
## 6648 2008
## 6649 2007
## 6650 2006
## 6651 2005
## 6652 2004
## 6653 2003
## 6654 2002
## 6655 2001
## 6656 2000
## 6657 1999
## 6658 1998
## 6659 1997
## 6660 1996
## 6661 1995
## 6662 1994
## 6663 1993
## 6664 1992
## 6665 1991
## 6666 1990
## 6667 1989
## 6668 1988
## 6669 1987
## 6670 1986
## 6671 1985
## 6672 1984
## 6673 1983
## 6674 1982
## 6675 1981
## 6676 1980
## 6677 1979
## 6678 1978
## 6679 1977
## 6680 1976
## 6681 1975
## 6682 1974
## 6683 1973
## 6684 1972
## 6685 1971
## 6686 1970
## 6687 1969
## 6688 1968
## 6689 1967
## 6690 1966
## 6691 1965
## 6692 1964
## 6693 1963
## 6694 1962
## 6695 1961
## 6696 1960
## 6697 2021
## 6698 2020
## 6699 2019
## 6700 2018
## 6701 2017
## 6702 2016
## 6703 2015
## 6704 2014
## 6705 2013
## 6706 2012
## 6707 2011
## 6708 2010
## 6709 2009
## 6710 2008
## 6711 2007
## 6712 2006
## 6713 2005
## 6714 2004
## 6715 2003
## 6716 2002
## 6717 2001
## 6718 2000
## 6719 1999
## 6720 1998
## 6721 1997
## 6722 1996
## 6723 1995
## 6724 1994
## 6725 1993
## 6726 1992
## 6727 1991
## 6728 1990
## 6729 1989
## 6730 1988
## 6731 1987
## 6732 1986
## 6733 1985
## 6734 1984
## 6735 1983
## 6736 1982
## 6737 1981
## 6738 1980
## 6739 1979
## 6740 1978
## 6741 1977
## 6742 1976
## 6743 1975
## 6744 1974
## 6745 1973
## 6746 1972
## 6747 1971
## 6748 1970
## 6749 1969
## 6750 1968
## 6751 1967
## 6752 1966
## 6753 1965
## 6754 1964
## 6755 1963
## 6756 1962
## 6757 1961
## 6758 1960
## 6759 2021
## 6760 2020
## 6761 2019
## 6762 2018
## 6763 2017
## 6764 2016
## 6765 2015
## 6766 2014
## 6767 2013
## 6768 2012
## 6769 2011
## 6770 2010
## 6771 2009
## 6772 2008
## 6773 2007
## 6774 2006
## 6775 2005
## 6776 2004
## 6777 2003
## 6778 2002
## 6779 2001
## 6780 2000
## 6781 1999
## 6782 1998
## 6783 1997
## 6784 1996
## 6785 1995
## 6786 1994
## 6787 1993
## 6788 1992
## 6789 1991
## 6790 1990
## 6791 1989
## 6792 1988
## 6793 1987
## 6794 1986
## 6795 1985
## 6796 1984
## 6797 1983
## 6798 1982
## 6799 1981
## 6800 1980
## 6801 1979
## 6802 1978
## 6803 1977
## 6804 1976
## 6805 1975
## 6806 1974
## 6807 1973
## 6808 1972
## 6809 1971
## 6810 1970
## 6811 1969
## 6812 1968
## 6813 1967
## 6814 1966
## 6815 1965
## 6816 1964
## 6817 1963
## 6818 1962
## 6819 1961
## 6820 1960
## 6821 2021
## 6822 2020
## 6823 2019
## 6824 2018
## 6825 2017
## 6826 2016
## 6827 2015
## 6828 2014
## 6829 2013
## 6830 2012
## 6831 2011
## 6832 2010
## 6833 2009
## 6834 2008
## 6835 2007
## 6836 2006
## 6837 2005
## 6838 2004
## 6839 2003
## 6840 2002
## 6841 2001
## 6842 2000
## 6843 1999
## 6844 1998
## 6845 1997
## 6846 1996
## 6847 1995
## 6848 1994
## 6849 1993
## 6850 1992
## 6851 1991
## 6852 1990
## 6853 1989
## 6854 1988
## 6855 1987
## 6856 1986
## 6857 1985
## 6858 1984
## 6859 1983
## 6860 1982
## 6861 1981
## 6862 1980
## 6863 1979
## 6864 1978
## 6865 1977
## 6866 1976
## 6867 1975
## 6868 1974
## 6869 1973
## 6870 1972
## 6871 1971
## 6872 1970
## 6873 1969
## 6874 1968
## 6875 1967
## 6876 1966
## 6877 1965
## 6878 1964
## 6879 1963
## 6880 1962
## 6881 1961
## 6882 1960
## 6883 2021
## 6884 2020
## 6885 2019
## 6886 2018
## 6887 2017
## 6888 2016
## 6889 2015
## 6890 2014
## 6891 2013
## 6892 2012
## 6893 2011
## 6894 2010
## 6895 2009
## 6896 2008
## 6897 2007
## 6898 2006
## 6899 2005
## 6900 2004
## 6901 2003
## 6902 2002
## 6903 2001
## 6904 2000
## 6905 1999
## 6906 1998
## 6907 1997
## 6908 1996
## 6909 1995
## 6910 1994
## 6911 1993
## 6912 1992
## 6913 1991
## 6914 1990
## 6915 1989
## 6916 1988
## 6917 1987
## 6918 1986
## 6919 1985
## 6920 1984
## 6921 1983
## 6922 1982
## 6923 1981
## 6924 1980
## 6925 1979
## 6926 1978
## 6927 1977
## 6928 1976
## 6929 1975
## 6930 1974
## 6931 1973
## 6932 1972
## 6933 1971
## 6934 1970
## 6935 1969
## 6936 1968
## 6937 1967
## 6938 1966
## 6939 1965
## 6940 1964
## 6941 1963
## 6942 1962
## 6943 1961
## 6944 1960
## 6945 2021
## 6946 2020
## 6947 2019
## 6948 2018
## 6949 2017
## 6950 2016
## 6951 2015
## 6952 2014
## 6953 2013
## 6954 2012
## 6955 2011
## 6956 2010
## 6957 2009
## 6958 2008
## 6959 2007
## 6960 2006
## 6961 2005
## 6962 2004
## 6963 2003
## 6964 2002
## 6965 2001
## 6966 2000
## 6967 1999
## 6968 1998
## 6969 1997
## 6970 1996
## 6971 1995
## 6972 1994
## 6973 1993
## 6974 1992
## 6975 1991
## 6976 1990
## 6977 1989
## 6978 1988
## 6979 1987
## 6980 1986
## 6981 1985
## 6982 1984
## 6983 1983
## 6984 1982
## 6985 1981
## 6986 1980
## 6987 1979
## 6988 1978
## 6989 1977
## 6990 1976
## 6991 1975
## 6992 1974
## 6993 1973
## 6994 1972
## 6995 1971
## 6996 1970
## 6997 1969
## 6998 1968
## 6999 1967
## 7000 1966
## 7001 1965
## 7002 1964
## 7003 1963
## 7004 1962
## 7005 1961
## 7006 1960
## 7007 2021
## 7008 2020
## 7009 2019
## 7010 2018
## 7011 2017
## 7012 2016
## 7013 2015
## 7014 2014
## 7015 2013
## 7016 2012
## 7017 2011
## 7018 2010
## 7019 2009
## 7020 2008
## 7021 2007
## 7022 2006
## 7023 2005
## 7024 2004
## 7025 2003
## 7026 2002
## 7027 2001
## 7028 2000
## 7029 1999
## 7030 1998
## 7031 1997
## 7032 1996
## 7033 1995
## 7034 1994
## 7035 1993
## 7036 1992
## 7037 1991
## 7038 1990
## 7039 1989
## 7040 1988
## 7041 1987
## 7042 1986
## 7043 1985
## 7044 1984
## 7045 1983
## 7046 1982
## 7047 1981
## 7048 1980
## 7049 1979
## 7050 1978
## 7051 1977
## 7052 1976
## 7053 1975
## 7054 1974
## 7055 1973
## 7056 1972
## 7057 1971
## 7058 1970
## 7059 1969
## 7060 1968
## 7061 1967
## 7062 1966
## 7063 1965
## 7064 1964
## 7065 1963
## 7066 1962
## 7067 1961
## 7068 1960
## 7069 2021
## 7070 2020
## 7071 2019
## 7072 2018
## 7073 2017
## 7074 2016
## 7075 2015
## 7076 2014
## 7077 2013
## 7078 2012
## 7079 2011
## 7080 2010
## 7081 2009
## 7082 2008
## 7083 2007
## 7084 2006
## 7085 2005
## 7086 2004
## 7087 2003
## 7088 2002
## 7089 2001
## 7090 2000
## 7091 1999
## 7092 1998
## 7093 1997
## 7094 1996
## 7095 1995
## 7096 1994
## 7097 1993
## 7098 1992
## 7099 1991
## 7100 1990
## 7101 1989
## 7102 1988
## 7103 1987
## 7104 1986
## 7105 1985
## 7106 1984
## 7107 1983
## 7108 1982
## 7109 1981
## 7110 1980
## 7111 1979
## 7112 1978
## 7113 1977
## 7114 1976
## 7115 1975
## 7116 1974
## 7117 1973
## 7118 1972
## 7119 1971
## 7120 1970
## 7121 1969
## 7122 1968
## 7123 1967
## 7124 1966
## 7125 1965
## 7126 1964
## 7127 1963
## 7128 1962
## 7129 1961
## 7130 1960
## 7131 2021
## 7132 2020
## 7133 2019
## 7134 2018
## 7135 2017
## 7136 2016
## 7137 2015
## 7138 2014
## 7139 2013
## 7140 2012
## 7141 2011
## 7142 2010
## 7143 2009
## 7144 2008
## 7145 2007
## 7146 2006
## 7147 2005
## 7148 2004
## 7149 2003
## 7150 2002
## 7151 2001
## 7152 2000
## 7153 1999
## 7154 1998
## 7155 1997
## 7156 1996
## 7157 1995
## 7158 1994
## 7159 1993
## 7160 1992
## 7161 1991
## 7162 1990
## 7163 1989
## 7164 1988
## 7165 1987
## 7166 1986
## 7167 1985
## 7168 1984
## 7169 1983
## 7170 1982
## 7171 1981
## 7172 1980
## 7173 1979
## 7174 1978
## 7175 1977
## 7176 1976
## 7177 1975
## 7178 1974
## 7179 1973
## 7180 1972
## 7181 1971
## 7182 1970
## 7183 1969
## 7184 1968
## 7185 1967
## 7186 1966
## 7187 1965
## 7188 1964
## 7189 1963
## 7190 1962
## 7191 1961
## 7192 1960
## 7193 2021
## 7194 2020
## 7195 2019
## 7196 2018
## 7197 2017
## 7198 2016
## 7199 2015
## 7200 2014
## 7201 2013
## 7202 2012
## 7203 2011
## 7204 2010
## 7205 2009
## 7206 2008
## 7207 2007
## 7208 2006
## 7209 2005
## 7210 2004
## 7211 2003
## 7212 2002
## 7213 2001
## 7214 2000
## 7215 1999
## 7216 1998
## 7217 1997
## 7218 1996
## 7219 1995
## 7220 1994
## 7221 1993
## 7222 1992
## 7223 1991
## 7224 1990
## 7225 1989
## 7226 1988
## 7227 1987
## 7228 1986
## 7229 1985
## 7230 1984
## 7231 1983
## 7232 1982
## 7233 1981
## 7234 1980
## 7235 1979
## 7236 1978
## 7237 1977
## 7238 1976
## 7239 1975
## 7240 1974
## 7241 1973
## 7242 1972
## 7243 1971
## 7244 1970
## 7245 1969
## 7246 1968
## 7247 1967
## 7248 1966
## 7249 1965
## 7250 1964
## 7251 1963
## 7252 1962
## 7253 1961
## 7254 1960
## 7255 2021
## 7256 2020
## 7257 2019
## 7258 2018
## 7259 2017
## 7260 2016
## 7261 2015
## 7262 2014
## 7263 2013
## 7264 2012
## 7265 2011
## 7266 2010
## 7267 2009
## 7268 2008
## 7269 2007
## 7270 2006
## 7271 2005
## 7272 2004
## 7273 2003
## 7274 2002
## 7275 2001
## 7276 2000
## 7277 1999
## 7278 1998
## 7279 1997
## 7280 1996
## 7281 1995
## 7282 1994
## 7283 1993
## 7284 1992
## 7285 1991
## 7286 1990
## 7287 1989
## 7288 1988
## 7289 1987
## 7290 1986
## 7291 1985
## 7292 1984
## 7293 1983
## 7294 1982
## 7295 1981
## 7296 1980
## 7297 1979
## 7298 1978
## 7299 1977
## 7300 1976
## 7301 1975
## 7302 1974
## 7303 1973
## 7304 1972
## 7305 1971
## 7306 1970
## 7307 1969
## 7308 1968
## 7309 1967
## 7310 1966
## 7311 1965
## 7312 1964
## 7313 1963
## 7314 1962
## 7315 1961
## 7316 1960
## 7317 2021
## 7318 2020
## 7319 2019
## 7320 2018
## 7321 2017
## 7322 2016
## 7323 2015
## 7324 2014
## 7325 2013
## 7326 2012
## 7327 2011
## 7328 2010
## 7329 2009
## 7330 2008
## 7331 2007
## 7332 2006
## 7333 2005
## 7334 2004
## 7335 2003
## 7336 2002
## 7337 2001
## 7338 2000
## 7339 1999
## 7340 1998
## 7341 1997
## 7342 1996
## 7343 1995
## 7344 1994
## 7345 1993
## 7346 1992
## 7347 1991
## 7348 1990
## 7349 1989
## 7350 1988
## 7351 1987
## 7352 1986
## 7353 1985
## 7354 1984
## 7355 1983
## 7356 1982
## 7357 1981
## 7358 1980
## 7359 1979
## 7360 1978
## 7361 1977
## 7362 1976
## 7363 1975
## 7364 1974
## 7365 1973
## 7366 1972
## 7367 1971
## 7368 1970
## 7369 1969
## 7370 1968
## 7371 1967
## 7372 1966
## 7373 1965
## 7374 1964
## 7375 1963
## 7376 1962
## 7377 1961
## 7378 1960
## 7379 2021
## 7380 2020
## 7381 2019
## 7382 2018
## 7383 2017
## 7384 2016
## 7385 2015
## 7386 2014
## 7387 2013
## 7388 2012
## 7389 2011
## 7390 2010
## 7391 2009
## 7392 2008
## 7393 2007
## 7394 2006
## 7395 2005
## 7396 2004
## 7397 2003
## 7398 2002
## 7399 2001
## 7400 2000
## 7401 1999
## 7402 1998
## 7403 1997
## 7404 1996
## 7405 1995
## 7406 1994
## 7407 1993
## 7408 1992
## 7409 1991
## 7410 1990
## 7411 1989
## 7412 1988
## 7413 1987
## 7414 1986
## 7415 1985
## 7416 1984
## 7417 1983
## 7418 1982
## 7419 1981
## 7420 1980
## 7421 1979
## 7422 1978
## 7423 1977
## 7424 1976
## 7425 1975
## 7426 1974
## 7427 1973
## 7428 1972
## 7429 1971
## 7430 1970
## 7431 1969
## 7432 1968
## 7433 1967
## 7434 1966
## 7435 1965
## 7436 1964
## 7437 1963
## 7438 1962
## 7439 1961
## 7440 1960
## 7441 2021
## 7442 2020
## 7443 2019
## 7444 2018
## 7445 2017
## 7446 2016
## 7447 2015
## 7448 2014
## 7449 2013
## 7450 2012
## 7451 2011
## 7452 2010
## 7453 2009
## 7454 2008
## 7455 2007
## 7456 2006
## 7457 2005
## 7458 2004
## 7459 2003
## 7460 2002
## 7461 2001
## 7462 2000
## 7463 1999
## 7464 1998
## 7465 1997
## 7466 1996
## 7467 1995
## 7468 1994
## 7469 1993
## 7470 1992
## 7471 1991
## 7472 1990
## 7473 1989
## 7474 1988
## 7475 1987
## 7476 1986
## 7477 1985
## 7478 1984
## 7479 1983
## 7480 1982
## 7481 1981
## 7482 1980
## 7483 1979
## 7484 1978
## 7485 1977
## 7486 1976
## 7487 1975
## 7488 1974
## 7489 1973
## 7490 1972
## 7491 1971
## 7492 1970
## 7493 1969
## 7494 1968
## 7495 1967
## 7496 1966
## 7497 1965
## 7498 1964
## 7499 1963
## 7500 1962
## 7501 1961
## 7502 1960
## 7503 2021
## 7504 2020
## 7505 2019
## 7506 2018
## 7507 2017
## 7508 2016
## 7509 2015
## 7510 2014
## 7511 2013
## 7512 2012
## 7513 2011
## 7514 2010
## 7515 2009
## 7516 2008
## 7517 2007
## 7518 2006
## 7519 2005
## 7520 2004
## 7521 2003
## 7522 2002
## 7523 2001
## 7524 2000
## 7525 1999
## 7526 1998
## 7527 1997
## 7528 1996
## 7529 1995
## 7530 1994
## 7531 1993
## 7532 1992
## 7533 1991
## 7534 1990
## 7535 1989
## 7536 1988
## 7537 1987
## 7538 1986
## 7539 1985
## 7540 1984
## 7541 1983
## 7542 1982
## 7543 1981
## 7544 1980
## 7545 1979
## 7546 1978
## 7547 1977
## 7548 1976
## 7549 1975
## 7550 1974
## 7551 1973
## 7552 1972
## 7553 1971
## 7554 1970
## 7555 1969
## 7556 1968
## 7557 1967
## 7558 1966
## 7559 1965
## 7560 1964
## 7561 1963
## 7562 1962
## 7563 1961
## 7564 1960
## 7565 2021
## 7566 2020
## 7567 2019
## 7568 2018
## 7569 2017
## 7570 2016
## 7571 2015
## 7572 2014
## 7573 2013
## 7574 2012
## 7575 2011
## 7576 2010
## 7577 2009
## 7578 2008
## 7579 2007
## 7580 2006
## 7581 2005
## 7582 2004
## 7583 2003
## 7584 2002
## 7585 2001
## 7586 2000
## 7587 1999
## 7588 1998
## 7589 1997
## 7590 1996
## 7591 1995
## 7592 1994
## 7593 1993
## 7594 1992
## 7595 1991
## 7596 1990
## 7597 1989
## 7598 1988
## 7599 1987
## 7600 1986
## 7601 1985
## 7602 1984
## 7603 1983
## 7604 1982
## 7605 1981
## 7606 1980
## 7607 1979
## 7608 1978
## 7609 1977
## 7610 1976
## 7611 1975
## 7612 1974
## 7613 1973
## 7614 1972
## 7615 1971
## 7616 1970
## 7617 1969
## 7618 1968
## 7619 1967
## 7620 1966
## 7621 1965
## 7622 1964
## 7623 1963
## 7624 1962
## 7625 1961
## 7626 1960
## 7627 2021
## 7628 2020
## 7629 2019
## 7630 2018
## 7631 2017
## 7632 2016
## 7633 2015
## 7634 2014
## 7635 2013
## 7636 2012
## 7637 2011
## 7638 2010
## 7639 2009
## 7640 2008
## 7641 2007
## 7642 2006
## 7643 2005
## 7644 2004
## 7645 2003
## 7646 2002
## 7647 2001
## 7648 2000
## 7649 1999
## 7650 1998
## 7651 1997
## 7652 1996
## 7653 1995
## 7654 1994
## 7655 1993
## 7656 1992
## 7657 1991
## 7658 1990
## 7659 1989
## 7660 1988
## 7661 1987
## 7662 1986
## 7663 1985
## 7664 1984
## 7665 1983
## 7666 1982
## 7667 1981
## 7668 1980
## 7669 1979
## 7670 1978
## 7671 1977
## 7672 1976
## 7673 1975
## 7674 1974
## 7675 1973
## 7676 1972
## 7677 1971
## 7678 1970
## 7679 1969
## 7680 1968
## 7681 1967
## 7682 1966
## 7683 1965
## 7684 1964
## 7685 1963
## 7686 1962
## 7687 1961
## 7688 1960
## 7689 2021
## 7690 2020
## 7691 2019
## 7692 2018
## 7693 2017
## 7694 2016
## 7695 2015
## 7696 2014
## 7697 2013
## 7698 2012
## 7699 2011
## 7700 2010
## 7701 2009
## 7702 2008
## 7703 2007
## 7704 2006
## 7705 2005
## 7706 2004
## 7707 2003
## 7708 2002
## 7709 2001
## 7710 2000
## 7711 1999
## 7712 1998
## 7713 1997
## 7714 1996
## 7715 1995
## 7716 1994
## 7717 1993
## 7718 1992
## 7719 1991
## 7720 1990
## 7721 1989
## 7722 1988
## 7723 1987
## 7724 1986
## 7725 1985
## 7726 1984
## 7727 1983
## 7728 1982
## 7729 1981
## 7730 1980
## 7731 1979
## 7732 1978
## 7733 1977
## 7734 1976
## 7735 1975
## 7736 1974
## 7737 1973
## 7738 1972
## 7739 1971
## 7740 1970
## 7741 1969
## 7742 1968
## 7743 1967
## 7744 1966
## 7745 1965
## 7746 1964
## 7747 1963
## 7748 1962
## 7749 1961
## 7750 1960
## 7751 2021
## 7752 2020
## 7753 2019
## 7754 2018
## 7755 2017
## 7756 2016
## 7757 2015
## 7758 2014
## 7759 2013
## 7760 2012
## 7761 2011
## 7762 2010
## 7763 2009
## 7764 2008
## 7765 2007
## 7766 2006
## 7767 2005
## 7768 2004
## 7769 2003
## 7770 2002
## 7771 2001
## 7772 2000
## 7773 1999
## 7774 1998
## 7775 1997
## 7776 1996
## 7777 1995
## 7778 1994
## 7779 1993
## 7780 1992
## 7781 1991
## 7782 1990
## 7783 1989
## 7784 1988
## 7785 1987
## 7786 1986
## 7787 1985
## 7788 1984
## 7789 1983
## 7790 1982
## 7791 1981
## 7792 1980
## 7793 1979
## 7794 1978
## 7795 1977
## 7796 1976
## 7797 1975
## 7798 1974
## 7799 1973
## 7800 1972
## 7801 1971
## 7802 1970
## 7803 1969
## 7804 1968
## 7805 1967
## 7806 1966
## 7807 1965
## 7808 1964
## 7809 1963
## 7810 1962
## 7811 1961
## 7812 1960
## 7813 2021
## 7814 2020
## 7815 2019
## 7816 2018
## 7817 2017
## 7818 2016
## 7819 2015
## 7820 2014
## 7821 2013
## 7822 2012
## 7823 2011
## 7824 2010
## 7825 2009
## 7826 2008
## 7827 2007
## 7828 2006
## 7829 2005
## 7830 2004
## 7831 2003
## 7832 2002
## 7833 2001
## 7834 2000
## 7835 1999
## 7836 1998
## 7837 1997
## 7838 1996
## 7839 1995
## 7840 1994
## 7841 1993
## 7842 1992
## 7843 1991
## 7844 1990
## 7845 1989
## 7846 1988
## 7847 1987
## 7848 1986
## 7849 1985
## 7850 1984
## 7851 1983
## 7852 1982
## 7853 1981
## 7854 1980
## 7855 1979
## 7856 1978
## 7857 1977
## 7858 1976
## 7859 1975
## 7860 1974
## 7861 1973
## 7862 1972
## 7863 1971
## 7864 1970
## 7865 1969
## 7866 1968
## 7867 1967
## 7868 1966
## 7869 1965
## 7870 1964
## 7871 1963
## 7872 1962
## 7873 1961
## 7874 1960
## 7875 2021
## 7876 2020
## 7877 2019
## 7878 2018
## 7879 2017
## 7880 2016
## 7881 2015
## 7882 2014
## 7883 2013
## 7884 2012
## 7885 2011
## 7886 2010
## 7887 2009
## 7888 2008
## 7889 2007
## 7890 2006
## 7891 2005
## 7892 2004
## 7893 2003
## 7894 2002
## 7895 2001
## 7896 2000
## 7897 1999
## 7898 1998
## 7899 1997
## 7900 1996
## 7901 1995
## 7902 1994
## 7903 1993
## 7904 1992
## 7905 1991
## 7906 1990
## 7907 1989
## 7908 1988
## 7909 1987
## 7910 1986
## 7911 1985
## 7912 1984
## 7913 1983
## 7914 1982
## 7915 1981
## 7916 1980
## 7917 1979
## 7918 1978
## 7919 1977
## 7920 1976
## 7921 1975
## 7922 1974
## 7923 1973
## 7924 1972
## 7925 1971
## 7926 1970
## 7927 1969
## 7928 1968
## 7929 1967
## 7930 1966
## 7931 1965
## 7932 1964
## 7933 1963
## 7934 1962
## 7935 1961
## 7936 1960
## 7937 2021
## 7938 2020
## 7939 2019
## 7940 2018
## 7941 2017
## 7942 2016
## 7943 2015
## 7944 2014
## 7945 2013
## 7946 2012
## 7947 2011
## 7948 2010
## 7949 2009
## 7950 2008
## 7951 2007
## 7952 2006
## 7953 2005
## 7954 2004
## 7955 2003
## 7956 2002
## 7957 2001
## 7958 2000
## 7959 1999
## 7960 1998
## 7961 1997
## 7962 1996
## 7963 1995
## 7964 1994
## 7965 1993
## 7966 1992
## 7967 1991
## 7968 1990
## 7969 1989
## 7970 1988
## 7971 1987
## 7972 1986
## 7973 1985
## 7974 1984
## 7975 1983
## 7976 1982
## 7977 1981
## 7978 1980
## 7979 1979
## 7980 1978
## 7981 1977
## 7982 1976
## 7983 1975
## 7984 1974
## 7985 1973
## 7986 1972
## 7987 1971
## 7988 1970
## 7989 1969
## 7990 1968
## 7991 1967
## 7992 1966
## 7993 1965
## 7994 1964
## 7995 1963
## 7996 1962
## 7997 1961
## 7998 1960
## 7999 2021
## 8000 2020
## 8001 2019
## 8002 2018
## 8003 2017
## 8004 2016
## 8005 2015
## 8006 2014
## 8007 2013
## 8008 2012
## 8009 2011
## 8010 2010
## 8011 2009
## 8012 2008
## 8013 2007
## 8014 2006
## 8015 2005
## 8016 2004
## 8017 2003
## 8018 2002
## 8019 2001
## 8020 2000
## 8021 1999
## 8022 1998
## 8023 1997
## 8024 1996
## 8025 1995
## 8026 1994
## 8027 1993
## 8028 1992
## 8029 1991
## 8030 1990
## 8031 1989
## 8032 1988
## 8033 1987
## 8034 1986
## 8035 1985
## 8036 1984
## 8037 1983
## 8038 1982
## 8039 1981
## 8040 1980
## 8041 1979
## 8042 1978
## 8043 1977
## 8044 1976
## 8045 1975
## 8046 1974
## 8047 1973
## 8048 1972
## 8049 1971
## 8050 1970
## 8051 1969
## 8052 1968
## 8053 1967
## 8054 1966
## 8055 1965
## 8056 1964
## 8057 1963
## 8058 1962
## 8059 1961
## 8060 1960
## 8061 2021
## 8062 2020
## 8063 2019
## 8064 2018
## 8065 2017
## 8066 2016
## 8067 2015
## 8068 2014
## 8069 2013
## 8070 2012
## 8071 2011
## 8072 2010
## 8073 2009
## 8074 2008
## 8075 2007
## 8076 2006
## 8077 2005
## 8078 2004
## 8079 2003
## 8080 2002
## 8081 2001
## 8082 2000
## 8083 1999
## 8084 1998
## 8085 1997
## 8086 1996
## 8087 1995
## 8088 1994
## 8089 1993
## 8090 1992
## 8091 1991
## 8092 1990
## 8093 1989
## 8094 1988
## 8095 1987
## 8096 1986
## 8097 1985
## 8098 1984
## 8099 1983
## 8100 1982
## 8101 1981
## 8102 1980
## 8103 1979
## 8104 1978
## 8105 1977
## 8106 1976
## 8107 1975
## 8108 1974
## 8109 1973
## 8110 1972
## 8111 1971
## 8112 1970
## 8113 1969
## 8114 1968
## 8115 1967
## 8116 1966
## 8117 1965
## 8118 1964
## 8119 1963
## 8120 1962
## 8121 1961
## 8122 1960
## 8123 2021
## 8124 2020
## 8125 2019
## 8126 2018
## 8127 2017
## 8128 2016
## 8129 2015
## 8130 2014
## 8131 2013
## 8132 2012
## 8133 2011
## 8134 2010
## 8135 2009
## 8136 2008
## 8137 2007
## 8138 2006
## 8139 2005
## 8140 2004
## 8141 2003
## 8142 2002
## 8143 2001
## 8144 2000
## 8145 1999
## 8146 1998
## 8147 1997
## 8148 1996
## 8149 1995
## 8150 1994
## 8151 1993
## 8152 1992
## 8153 1991
## 8154 1990
## 8155 1989
## 8156 1988
## 8157 1987
## 8158 1986
## 8159 1985
## 8160 1984
## 8161 1983
## 8162 1982
## 8163 1981
## 8164 1980
## 8165 1979
## 8166 1978
## 8167 1977
## 8168 1976
## 8169 1975
## 8170 1974
## 8171 1973
## 8172 1972
## 8173 1971
## 8174 1970
## 8175 1969
## 8176 1968
## 8177 1967
## 8178 1966
## 8179 1965
## 8180 1964
## 8181 1963
## 8182 1962
## 8183 1961
## 8184 1960
## 8185 2021
## 8186 2020
## 8187 2019
## 8188 2018
## 8189 2017
## 8190 2016
## 8191 2015
## 8192 2014
## 8193 2013
## 8194 2012
## 8195 2011
## 8196 2010
## 8197 2009
## 8198 2008
## 8199 2007
## 8200 2006
## 8201 2005
## 8202 2004
## 8203 2003
## 8204 2002
## 8205 2001
## 8206 2000
## 8207 1999
## 8208 1998
## 8209 1997
## 8210 1996
## 8211 1995
## 8212 1994
## 8213 1993
## 8214 1992
## 8215 1991
## 8216 1990
## 8217 1989
## 8218 1988
## 8219 1987
## 8220 1986
## 8221 1985
## 8222 1984
## 8223 1983
## 8224 1982
## 8225 1981
## 8226 1980
## 8227 1979
## 8228 1978
## 8229 1977
## 8230 1976
## 8231 1975
## 8232 1974
## 8233 1973
## 8234 1972
## 8235 1971
## 8236 1970
## 8237 1969
## 8238 1968
## 8239 1967
## 8240 1966
## 8241 1965
## 8242 1964
## 8243 1963
## 8244 1962
## 8245 1961
## 8246 1960
## 8247 2021
## 8248 2020
## 8249 2019
## 8250 2018
## 8251 2017
## 8252 2016
## 8253 2015
## 8254 2014
## 8255 2013
## 8256 2012
## 8257 2011
## 8258 2010
## 8259 2009
## 8260 2008
## 8261 2007
## 8262 2006
## 8263 2005
## 8264 2004
## 8265 2003
## 8266 2002
## 8267 2001
## 8268 2000
## 8269 1999
## 8270 1998
## 8271 1997
## 8272 1996
## 8273 1995
## 8274 1994
## 8275 1993
## 8276 1992
## 8277 1991
## 8278 1990
## 8279 1989
## 8280 1988
## 8281 1987
## 8282 1986
## 8283 1985
## 8284 1984
## 8285 1983
## 8286 1982
## 8287 1981
## 8288 1980
## 8289 1979
## 8290 1978
## 8291 1977
## 8292 1976
## 8293 1975
## 8294 1974
## 8295 1973
## 8296 1972
## 8297 1971
## 8298 1970
## 8299 1969
## 8300 1968
## 8301 1967
## 8302 1966
## 8303 1965
## 8304 1964
## 8305 1963
## 8306 1962
## 8307 1961
## 8308 1960
## 8309 2021
## 8310 2020
## 8311 2019
## 8312 2018
## 8313 2017
## 8314 2016
## 8315 2015
## 8316 2014
## 8317 2013
## 8318 2012
## 8319 2011
## 8320 2010
## 8321 2009
## 8322 2008
## 8323 2007
## 8324 2006
## 8325 2005
## 8326 2004
## 8327 2003
## 8328 2002
## 8329 2001
## 8330 2000
## 8331 1999
## 8332 1998
## 8333 1997
## 8334 1996
## 8335 1995
## 8336 1994
## 8337 1993
## 8338 1992
## 8339 1991
## 8340 1990
## 8341 1989
## 8342 1988
## 8343 1987
## 8344 1986
## 8345 1985
## 8346 1984
## 8347 1983
## 8348 1982
## 8349 1981
## 8350 1980
## 8351 1979
## 8352 1978
## 8353 1977
## 8354 1976
## 8355 1975
## 8356 1974
## 8357 1973
## 8358 1972
## 8359 1971
## 8360 1970
## 8361 1969
## 8362 1968
## 8363 1967
## 8364 1966
## 8365 1965
## 8366 1964
## 8367 1963
## 8368 1962
## 8369 1961
## 8370 1960
## 8371 2021
## 8372 2020
## 8373 2019
## 8374 2018
## 8375 2017
## 8376 2016
## 8377 2015
## 8378 2014
## 8379 2013
## 8380 2012
## 8381 2011
## 8382 2010
## 8383 2009
## 8384 2008
## 8385 2007
## 8386 2006
## 8387 2005
## 8388 2004
## 8389 2003
## 8390 2002
## 8391 2001
## 8392 2000
## 8393 1999
## 8394 1998
## 8395 1997
## 8396 1996
## 8397 1995
## 8398 1994
## 8399 1993
## 8400 1992
## 8401 1991
## 8402 1990
## 8403 1989
## 8404 1988
## 8405 1987
## 8406 1986
## 8407 1985
## 8408 1984
## 8409 1983
## 8410 1982
## 8411 1981
## 8412 1980
## 8413 1979
## 8414 1978
## 8415 1977
## 8416 1976
## 8417 1975
## 8418 1974
## 8419 1973
## 8420 1972
## 8421 1971
## 8422 1970
## 8423 1969
## 8424 1968
## 8425 1967
## 8426 1966
## 8427 1965
## 8428 1964
## 8429 1963
## 8430 1962
## 8431 1961
## 8432 1960
## 8433 2021
## 8434 2020
## 8435 2019
## 8436 2018
## 8437 2017
## 8438 2016
## 8439 2015
## 8440 2014
## 8441 2013
## 8442 2012
## 8443 2011
## 8444 2010
## 8445 2009
## 8446 2008
## 8447 2007
## 8448 2006
## 8449 2005
## 8450 2004
## 8451 2003
## 8452 2002
## 8453 2001
## 8454 2000
## 8455 1999
## 8456 1998
## 8457 1997
## 8458 1996
## 8459 1995
## 8460 1994
## 8461 1993
## 8462 1992
## 8463 1991
## 8464 1990
## 8465 1989
## 8466 1988
## 8467 1987
## 8468 1986
## 8469 1985
## 8470 1984
## 8471 1983
## 8472 1982
## 8473 1981
## 8474 1980
## 8475 1979
## 8476 1978
## 8477 1977
## 8478 1976
## 8479 1975
## 8480 1974
## 8481 1973
## 8482 1972
## 8483 1971
## 8484 1970
## 8485 1969
## 8486 1968
## 8487 1967
## 8488 1966
## 8489 1965
## 8490 1964
## 8491 1963
## 8492 1962
## 8493 1961
## 8494 1960
## 8495 2021
## 8496 2020
## 8497 2019
## 8498 2018
## 8499 2017
## 8500 2016
## 8501 2015
## 8502 2014
## 8503 2013
## 8504 2012
## 8505 2011
## 8506 2010
## 8507 2009
## 8508 2008
## 8509 2007
## 8510 2006
## 8511 2005
## 8512 2004
## 8513 2003
## 8514 2002
## 8515 2001
## 8516 2000
## 8517 1999
## 8518 1998
## 8519 1997
## 8520 1996
## 8521 1995
## 8522 1994
## 8523 1993
## 8524 1992
## 8525 1991
## 8526 1990
## 8527 1989
## 8528 1988
## 8529 1987
## 8530 1986
## 8531 1985
## 8532 1984
## 8533 1983
## 8534 1982
## 8535 1981
## 8536 1980
## 8537 1979
## 8538 1978
## 8539 1977
## 8540 1976
## 8541 1975
## 8542 1974
## 8543 1973
## 8544 1972
## 8545 1971
## 8546 1970
## 8547 1969
## 8548 1968
## 8549 1967
## 8550 1966
## 8551 1965
## 8552 1964
## 8553 1963
## 8554 1962
## 8555 1961
## 8556 1960
## 8557 2021
## 8558 2020
## 8559 2019
## 8560 2018
## 8561 2017
## 8562 2016
## 8563 2015
## 8564 2014
## 8565 2013
## 8566 2012
## 8567 2011
## 8568 2010
## 8569 2009
## 8570 2008
## 8571 2007
## 8572 2006
## 8573 2005
## 8574 2004
## 8575 2003
## 8576 2002
## 8577 2001
## 8578 2000
## 8579 1999
## 8580 1998
## 8581 1997
## 8582 1996
## 8583 1995
## 8584 1994
## 8585 1993
## 8586 1992
## 8587 1991
## 8588 1990
## 8589 1989
## 8590 1988
## 8591 1987
## 8592 1986
## 8593 1985
## 8594 1984
## 8595 1983
## 8596 1982
## 8597 1981
## 8598 1980
## 8599 1979
## 8600 1978
## 8601 1977
## 8602 1976
## 8603 1975
## 8604 1974
## 8605 1973
## 8606 1972
## 8607 1971
## 8608 1970
## 8609 1969
## 8610 1968
## 8611 1967
## 8612 1966
## 8613 1965
## 8614 1964
## 8615 1963
## 8616 1962
## 8617 1961
## 8618 1960
## 8619 2021
## 8620 2020
## 8621 2019
## 8622 2018
## 8623 2017
## 8624 2016
## 8625 2015
## 8626 2014
## 8627 2013
## 8628 2012
## 8629 2011
## 8630 2010
## 8631 2009
## 8632 2008
## 8633 2007
## 8634 2006
## 8635 2005
## 8636 2004
## 8637 2003
## 8638 2002
## 8639 2001
## 8640 2000
## 8641 1999
## 8642 1998
## 8643 1997
## 8644 1996
## 8645 1995
## 8646 1994
## 8647 1993
## 8648 1992
## 8649 1991
## 8650 1990
## 8651 1989
## 8652 1988
## 8653 1987
## 8654 1986
## 8655 1985
## 8656 1984
## 8657 1983
## 8658 1982
## 8659 1981
## 8660 1980
## 8661 1979
## 8662 1978
## 8663 1977
## 8664 1976
## 8665 1975
## 8666 1974
## 8667 1973
## 8668 1972
## 8669 1971
## 8670 1970
## 8671 1969
## 8672 1968
## 8673 1967
## 8674 1966
## 8675 1965
## 8676 1964
## 8677 1963
## 8678 1962
## 8679 1961
## 8680 1960
## 8681 2021
## 8682 2020
## 8683 2019
## 8684 2018
## 8685 2017
## 8686 2016
## 8687 2015
## 8688 2014
## 8689 2013
## 8690 2012
## 8691 2011
## 8692 2010
## 8693 2009
## 8694 2008
## 8695 2007
## 8696 2006
## 8697 2005
## 8698 2004
## 8699 2003
## 8700 2002
## 8701 2001
## 8702 2000
## 8703 1999
## 8704 1998
## 8705 1997
## 8706 1996
## 8707 1995
## 8708 1994
## 8709 1993
## 8710 1992
## 8711 1991
## 8712 1990
## 8713 1989
## 8714 1988
## 8715 1987
## 8716 1986
## 8717 1985
## 8718 1984
## 8719 1983
## 8720 1982
## 8721 1981
## 8722 1980
## 8723 1979
## 8724 1978
## 8725 1977
## 8726 1976
## 8727 1975
## 8728 1974
## 8729 1973
## 8730 1972
## 8731 1971
## 8732 1970
## 8733 1969
## 8734 1968
## 8735 1967
## 8736 1966
## 8737 1965
## 8738 1964
## 8739 1963
## 8740 1962
## 8741 1961
## 8742 1960
## 8743 2021
## 8744 2020
## 8745 2019
## 8746 2018
## 8747 2017
## 8748 2016
## 8749 2015
## 8750 2014
## 8751 2013
## 8752 2012
## 8753 2011
## 8754 2010
## 8755 2009
## 8756 2008
## 8757 2007
## 8758 2006
## 8759 2005
## 8760 2004
## 8761 2003
## 8762 2002
## 8763 2001
## 8764 2000
## 8765 1999
## 8766 1998
## 8767 1997
## 8768 1996
## 8769 1995
## 8770 1994
## 8771 1993
## 8772 1992
## 8773 1991
## 8774 1990
## 8775 1989
## 8776 1988
## 8777 1987
## 8778 1986
## 8779 1985
## 8780 1984
## 8781 1983
## 8782 1982
## 8783 1981
## 8784 1980
## 8785 1979
## 8786 1978
## 8787 1977
## 8788 1976
## 8789 1975
## 8790 1974
## 8791 1973
## 8792 1972
## 8793 1971
## 8794 1970
## 8795 1969
## 8796 1968
## 8797 1967
## 8798 1966
## 8799 1965
## 8800 1964
## 8801 1963
## 8802 1962
## 8803 1961
## 8804 1960
## 8805 2021
## 8806 2020
## 8807 2019
## 8808 2018
## 8809 2017
## 8810 2016
## 8811 2015
## 8812 2014
## 8813 2013
## 8814 2012
## 8815 2011
## 8816 2010
## 8817 2009
## 8818 2008
## 8819 2007
## 8820 2006
## 8821 2005
## 8822 2004
## 8823 2003
## 8824 2002
## 8825 2001
## 8826 2000
## 8827 1999
## 8828 1998
## 8829 1997
## 8830 1996
## 8831 1995
## 8832 1994
## 8833 1993
## 8834 1992
## 8835 1991
## 8836 1990
## 8837 1989
## 8838 1988
## 8839 1987
## 8840 1986
## 8841 1985
## 8842 1984
## 8843 1983
## 8844 1982
## 8845 1981
## 8846 1980
## 8847 1979
## 8848 1978
## 8849 1977
## 8850 1976
## 8851 1975
## 8852 1974
## 8853 1973
## 8854 1972
## 8855 1971
## 8856 1970
## 8857 1969
## 8858 1968
## 8859 1967
## 8860 1966
## 8861 1965
## 8862 1964
## 8863 1963
## 8864 1962
## 8865 1961
## 8866 1960
## 8867 2021
## 8868 2020
## 8869 2019
## 8870 2018
## 8871 2017
## 8872 2016
## 8873 2015
## 8874 2014
## 8875 2013
## 8876 2012
## 8877 2011
## 8878 2010
## 8879 2009
## 8880 2008
## 8881 2007
## 8882 2006
## 8883 2005
## 8884 2004
## 8885 2003
## 8886 2002
## 8887 2001
## 8888 2000
## 8889 1999
## 8890 1998
## 8891 1997
## 8892 1996
## 8893 1995
## 8894 1994
## 8895 1993
## 8896 1992
## 8897 1991
## 8898 1990
## 8899 1989
## 8900 1988
## 8901 1987
## 8902 1986
## 8903 1985
## 8904 1984
## 8905 1983
## 8906 1982
## 8907 1981
## 8908 1980
## 8909 1979
## 8910 1978
## 8911 1977
## 8912 1976
## 8913 1975
## 8914 1974
## 8915 1973
## 8916 1972
## 8917 1971
## 8918 1970
## 8919 1969
## 8920 1968
## 8921 1967
## 8922 1966
## 8923 1965
## 8924 1964
## 8925 1963
## 8926 1962
## 8927 1961
## 8928 1960
## 8929 2021
## 8930 2020
## 8931 2019
## 8932 2018
## 8933 2017
## 8934 2016
## 8935 2015
## 8936 2014
## 8937 2013
## 8938 2012
## 8939 2011
## 8940 2010
## 8941 2009
## 8942 2008
## 8943 2007
## 8944 2006
## 8945 2005
## 8946 2004
## 8947 2003
## 8948 2002
## 8949 2001
## 8950 2000
## 8951 1999
## 8952 1998
## 8953 1997
## 8954 1996
## 8955 1995
## 8956 1994
## 8957 1993
## 8958 1992
## 8959 1991
## 8960 1990
## 8961 1989
## 8962 1988
## 8963 1987
## 8964 1986
## 8965 1985
## 8966 1984
## 8967 1983
## 8968 1982
## 8969 1981
## 8970 1980
## 8971 1979
## 8972 1978
## 8973 1977
## 8974 1976
## 8975 1975
## 8976 1974
## 8977 1973
## 8978 1972
## 8979 1971
## 8980 1970
## 8981 1969
## 8982 1968
## 8983 1967
## 8984 1966
## 8985 1965
## 8986 1964
## 8987 1963
## 8988 1962
## 8989 1961
## 8990 1960
## 8991 2021
## 8992 2020
## 8993 2019
## 8994 2018
## 8995 2017
## 8996 2016
## 8997 2015
## 8998 2014
## 8999 2013
## 9000 2012
## 9001 2011
## 9002 2010
## 9003 2009
## 9004 2008
## 9005 2007
## 9006 2006
## 9007 2005
## 9008 2004
## 9009 2003
## 9010 2002
## 9011 2001
## 9012 2000
## 9013 1999
## 9014 1998
## 9015 1997
## 9016 1996
## 9017 1995
## 9018 1994
## 9019 1993
## 9020 1992
## 9021 1991
## 9022 1990
## 9023 1989
## 9024 1988
## 9025 1987
## 9026 1986
## 9027 1985
## 9028 1984
## 9029 1983
## 9030 1982
## 9031 1981
## 9032 1980
## 9033 1979
## 9034 1978
## 9035 1977
## 9036 1976
## 9037 1975
## 9038 1974
## 9039 1973
## 9040 1972
## 9041 1971
## 9042 1970
## 9043 1969
## 9044 1968
## 9045 1967
## 9046 1966
## 9047 1965
## 9048 1964
## 9049 1963
## 9050 1962
## 9051 1961
## 9052 1960
## 9053 2021
## 9054 2020
## 9055 2019
## 9056 2018
## 9057 2017
## 9058 2016
## 9059 2015
## 9060 2014
## 9061 2013
## 9062 2012
## 9063 2011
## 9064 2010
## 9065 2009
## 9066 2008
## 9067 2007
## 9068 2006
## 9069 2005
## 9070 2004
## 9071 2003
## 9072 2002
## 9073 2001
## 9074 2000
## 9075 1999
## 9076 1998
## 9077 1997
## 9078 1996
## 9079 1995
## 9080 1994
## 9081 1993
## 9082 1992
## 9083 1991
## 9084 1990
## 9085 1989
## 9086 1988
## 9087 1987
## 9088 1986
## 9089 1985
## 9090 1984
## 9091 1983
## 9092 1982
## 9093 1981
## 9094 1980
## 9095 1979
## 9096 1978
## 9097 1977
## 9098 1976
## 9099 1975
## 9100 1974
## 9101 1973
## 9102 1972
## 9103 1971
## 9104 1970
## 9105 1969
## 9106 1968
## 9107 1967
## 9108 1966
## 9109 1965
## 9110 1964
## 9111 1963
## 9112 1962
## 9113 1961
## 9114 1960
## 9115 2021
## 9116 2020
## 9117 2019
## 9118 2018
## 9119 2017
## 9120 2016
## 9121 2015
## 9122 2014
## 9123 2013
## 9124 2012
## 9125 2011
## 9126 2010
## 9127 2009
## 9128 2008
## 9129 2007
## 9130 2006
## 9131 2005
## 9132 2004
## 9133 2003
## 9134 2002
## 9135 2001
## 9136 2000
## 9137 1999
## 9138 1998
## 9139 1997
## 9140 1996
## 9141 1995
## 9142 1994
## 9143 1993
## 9144 1992
## 9145 1991
## 9146 1990
## 9147 1989
## 9148 1988
## 9149 1987
## 9150 1986
## 9151 1985
## 9152 1984
## 9153 1983
## 9154 1982
## 9155 1981
## 9156 1980
## 9157 1979
## 9158 1978
## 9159 1977
## 9160 1976
## 9161 1975
## 9162 1974
## 9163 1973
## 9164 1972
## 9165 1971
## 9166 1970
## 9167 1969
## 9168 1968
## 9169 1967
## 9170 1966
## 9171 1965
## 9172 1964
## 9173 1963
## 9174 1962
## 9175 1961
## 9176 1960
## 9177 2021
## 9178 2020
## 9179 2019
## 9180 2018
## 9181 2017
## 9182 2016
## 9183 2015
## 9184 2014
## 9185 2013
## 9186 2012
## 9187 2011
## 9188 2010
## 9189 2009
## 9190 2008
## 9191 2007
## 9192 2006
## 9193 2005
## 9194 2004
## 9195 2003
## 9196 2002
## 9197 2001
## 9198 2000
## 9199 1999
## 9200 1998
## 9201 1997
## 9202 1996
## 9203 1995
## 9204 1994
## 9205 1993
## 9206 1992
## 9207 1991
## 9208 1990
## 9209 1989
## 9210 1988
## 9211 1987
## 9212 1986
## 9213 1985
## 9214 1984
## 9215 1983
## 9216 1982
## 9217 1981
## 9218 1980
## 9219 1979
## 9220 1978
## 9221 1977
## 9222 1976
## 9223 1975
## 9224 1974
## 9225 1973
## 9226 1972
## 9227 1971
## 9228 1970
## 9229 1969
## 9230 1968
## 9231 1967
## 9232 1966
## 9233 1965
## 9234 1964
## 9235 1963
## 9236 1962
## 9237 1961
## 9238 1960
## 9239 2021
## 9240 2020
## 9241 2019
## 9242 2018
## 9243 2017
## 9244 2016
## 9245 2015
## 9246 2014
## 9247 2013
## 9248 2012
## 9249 2011
## 9250 2010
## 9251 2009
## 9252 2008
## 9253 2007
## 9254 2006
## 9255 2005
## 9256 2004
## 9257 2003
## 9258 2002
## 9259 2001
## 9260 2000
## 9261 1999
## 9262 1998
## 9263 1997
## 9264 1996
## 9265 1995
## 9266 1994
## 9267 1993
## 9268 1992
## 9269 1991
## 9270 1990
## 9271 1989
## 9272 1988
## 9273 1987
## 9274 1986
## 9275 1985
## 9276 1984
## 9277 1983
## 9278 1982
## 9279 1981
## 9280 1980
## 9281 1979
## 9282 1978
## 9283 1977
## 9284 1976
## 9285 1975
## 9286 1974
## 9287 1973
## 9288 1972
## 9289 1971
## 9290 1970
## 9291 1969
## 9292 1968
## 9293 1967
## 9294 1966
## 9295 1965
## 9296 1964
## 9297 1963
## 9298 1962
## 9299 1961
## 9300 1960
## 9301 2021
## 9302 2020
## 9303 2019
## 9304 2018
## 9305 2017
## 9306 2016
## 9307 2015
## 9308 2014
## 9309 2013
## 9310 2012
## 9311 2011
## 9312 2010
## 9313 2009
## 9314 2008
## 9315 2007
## 9316 2006
## 9317 2005
## 9318 2004
## 9319 2003
## 9320 2002
## 9321 2001
## 9322 2000
## 9323 1999
## 9324 1998
## 9325 1997
## 9326 1996
## 9327 1995
## 9328 1994
## 9329 1993
## 9330 1992
## 9331 1991
## 9332 1990
## 9333 1989
## 9334 1988
## 9335 1987
## 9336 1986
## 9337 1985
## 9338 1984
## 9339 1983
## 9340 1982
## 9341 1981
## 9342 1980
## 9343 1979
## 9344 1978
## 9345 1977
## 9346 1976
## 9347 1975
## 9348 1974
## 9349 1973
## 9350 1972
## 9351 1971
## 9352 1970
## 9353 1969
## 9354 1968
## 9355 1967
## 9356 1966
## 9357 1965
## 9358 1964
## 9359 1963
## 9360 1962
## 9361 1961
## 9362 1960
## 9363 2021
## 9364 2020
## 9365 2019
## 9366 2018
## 9367 2017
## 9368 2016
## 9369 2015
## 9370 2014
## 9371 2013
## 9372 2012
## 9373 2011
## 9374 2010
## 9375 2009
## 9376 2008
## 9377 2007
## 9378 2006
## 9379 2005
## 9380 2004
## 9381 2003
## 9382 2002
## 9383 2001
## 9384 2000
## 9385 1999
## 9386 1998
## 9387 1997
## 9388 1996
## 9389 1995
## 9390 1994
## 9391 1993
## 9392 1992
## 9393 1991
## 9394 1990
## 9395 1989
## 9396 1988
## 9397 1987
## 9398 1986
## 9399 1985
## 9400 1984
## 9401 1983
## 9402 1982
## 9403 1981
## 9404 1980
## 9405 1979
## 9406 1978
## 9407 1977
## 9408 1976
## 9409 1975
## 9410 1974
## 9411 1973
## 9412 1972
## 9413 1971
## 9414 1970
## 9415 1969
## 9416 1968
## 9417 1967
## 9418 1966
## 9419 1965
## 9420 1964
## 9421 1963
## 9422 1962
## 9423 1961
## 9424 1960
## 9425 2021
## 9426 2020
## 9427 2019
## 9428 2018
## 9429 2017
## 9430 2016
## 9431 2015
## 9432 2014
## 9433 2013
## 9434 2012
## 9435 2011
## 9436 2010
## 9437 2009
## 9438 2008
## 9439 2007
## 9440 2006
## 9441 2005
## 9442 2004
## 9443 2003
## 9444 2002
## 9445 2001
## 9446 2000
## 9447 1999
## 9448 1998
## 9449 1997
## 9450 1996
## 9451 1995
## 9452 1994
## 9453 1993
## 9454 1992
## 9455 1991
## 9456 1990
## 9457 1989
## 9458 1988
## 9459 1987
## 9460 1986
## 9461 1985
## 9462 1984
## 9463 1983
## 9464 1982
## 9465 1981
## 9466 1980
## 9467 1979
## 9468 1978
## 9469 1977
## 9470 1976
## 9471 1975
## 9472 1974
## 9473 1973
## 9474 1972
## 9475 1971
## 9476 1970
## 9477 1969
## 9478 1968
## 9479 1967
## 9480 1966
## 9481 1965
## 9482 1964
## 9483 1963
## 9484 1962
## 9485 1961
## 9486 1960
## 9487 2021
## 9488 2020
## 9489 2019
## 9490 2018
## 9491 2017
## 9492 2016
## 9493 2015
## 9494 2014
## 9495 2013
## 9496 2012
## 9497 2011
## 9498 2010
## 9499 2009
## 9500 2008
## 9501 2007
## 9502 2006
## 9503 2005
## 9504 2004
## 9505 2003
## 9506 2002
## 9507 2001
## 9508 2000
## 9509 1999
## 9510 1998
## 9511 1997
## 9512 1996
## 9513 1995
## 9514 1994
## 9515 1993
## 9516 1992
## 9517 1991
## 9518 1990
## 9519 1989
## 9520 1988
## 9521 1987
## 9522 1986
## 9523 1985
## 9524 1984
## 9525 1983
## 9526 1982
## 9527 1981
## 9528 1980
## 9529 1979
## 9530 1978
## 9531 1977
## 9532 1976
## 9533 1975
## 9534 1974
## 9535 1973
## 9536 1972
## 9537 1971
## 9538 1970
## 9539 1969
## 9540 1968
## 9541 1967
## 9542 1966
## 9543 1965
## 9544 1964
## 9545 1963
## 9546 1962
## 9547 1961
## 9548 1960
## 9549 2021
## 9550 2020
## 9551 2019
## 9552 2018
## 9553 2017
## 9554 2016
## 9555 2015
## 9556 2014
## 9557 2013
## 9558 2012
## 9559 2011
## 9560 2010
## 9561 2009
## 9562 2008
## 9563 2007
## 9564 2006
## 9565 2005
## 9566 2004
## 9567 2003
## 9568 2002
## 9569 2001
## 9570 2000
## 9571 1999
## 9572 1998
## 9573 1997
## 9574 1996
## 9575 1995
## 9576 1994
## 9577 1993
## 9578 1992
## 9579 1991
## 9580 1990
## 9581 1989
## 9582 1988
## 9583 1987
## 9584 1986
## 9585 1985
## 9586 1984
## 9587 1983
## 9588 1982
## 9589 1981
## 9590 1980
## 9591 1979
## 9592 1978
## 9593 1977
## 9594 1976
## 9595 1975
## 9596 1974
## 9597 1973
## 9598 1972
## 9599 1971
## 9600 1970
## 9601 1969
## 9602 1968
## 9603 1967
## 9604 1966
## 9605 1965
## 9606 1964
## 9607 1963
## 9608 1962
## 9609 1961
## 9610 1960
## 9611 2021
## 9612 2020
## 9613 2019
## 9614 2018
## 9615 2017
## 9616 2016
## 9617 2015
## 9618 2014
## 9619 2013
## 9620 2012
## 9621 2011
## 9622 2010
## 9623 2009
## 9624 2008
## 9625 2007
## 9626 2006
## 9627 2005
## 9628 2004
## 9629 2003
## 9630 2002
## 9631 2001
## 9632 2000
## 9633 1999
## 9634 1998
## 9635 1997
## 9636 1996
## 9637 1995
## 9638 1994
## 9639 1993
## 9640 1992
## 9641 1991
## 9642 1990
## 9643 1989
## 9644 1988
## 9645 1987
## 9646 1986
## 9647 1985
## 9648 1984
## 9649 1983
## 9650 1982
## 9651 1981
## 9652 1980
## 9653 1979
## 9654 1978
## 9655 1977
## 9656 1976
## 9657 1975
## 9658 1974
## 9659 1973
## 9660 1972
## 9661 1971
## 9662 1970
## 9663 1969
## 9664 1968
## 9665 1967
## 9666 1966
## 9667 1965
## 9668 1964
## 9669 1963
## 9670 1962
## 9671 1961
## 9672 1960
## 9673 2021
## 9674 2020
## 9675 2019
## 9676 2018
## 9677 2017
## 9678 2016
## 9679 2015
## 9680 2014
## 9681 2013
## 9682 2012
## 9683 2011
## 9684 2010
## 9685 2009
## 9686 2008
## 9687 2007
## 9688 2006
## 9689 2005
## 9690 2004
## 9691 2003
## 9692 2002
## 9693 2001
## 9694 2000
## 9695 1999
## 9696 1998
## 9697 1997
## 9698 1996
## 9699 1995
## 9700 1994
## 9701 1993
## 9702 1992
## 9703 1991
## 9704 1990
## 9705 1989
## 9706 1988
## 9707 1987
## 9708 1986
## 9709 1985
## 9710 1984
## 9711 1983
## 9712 1982
## 9713 1981
## 9714 1980
## 9715 1979
## 9716 1978
## 9717 1977
## 9718 1976
## 9719 1975
## 9720 1974
## 9721 1973
## 9722 1972
## 9723 1971
## 9724 1970
## 9725 1969
## 9726 1968
## 9727 1967
## 9728 1966
## 9729 1965
## 9730 1964
## 9731 1963
## 9732 1962
## 9733 1961
## 9734 1960
## 9735 2021
## 9736 2020
## 9737 2019
## 9738 2018
## 9739 2017
## 9740 2016
## 9741 2015
## 9742 2014
## 9743 2013
## 9744 2012
## 9745 2011
## 9746 2010
## 9747 2009
## 9748 2008
## 9749 2007
## 9750 2006
## 9751 2005
## 9752 2004
## 9753 2003
## 9754 2002
## 9755 2001
## 9756 2000
## 9757 1999
## 9758 1998
## 9759 1997
## 9760 1996
## 9761 1995
## 9762 1994
## 9763 1993
## 9764 1992
## 9765 1991
## 9766 1990
## 9767 1989
## 9768 1988
## 9769 1987
## 9770 1986
## 9771 1985
## 9772 1984
## 9773 1983
## 9774 1982
## 9775 1981
## 9776 1980
## 9777 1979
## 9778 1978
## 9779 1977
## 9780 1976
## 9781 1975
## 9782 1974
## 9783 1973
## 9784 1972
## 9785 1971
## 9786 1970
## 9787 1969
## 9788 1968
## 9789 1967
## 9790 1966
## 9791 1965
## 9792 1964
## 9793 1963
## 9794 1962
## 9795 1961
## 9796 1960
## 9797 2021
## 9798 2020
## 9799 2019
## 9800 2018
## 9801 2017
## 9802 2016
## 9803 2015
## 9804 2014
## 9805 2013
## 9806 2012
## 9807 2011
## 9808 2010
## 9809 2009
## 9810 2008
## 9811 2007
## 9812 2006
## 9813 2005
## 9814 2004
## 9815 2003
## 9816 2002
## 9817 2001
## 9818 2000
## 9819 1999
## 9820 1998
## 9821 1997
## 9822 1996
## 9823 1995
## 9824 1994
## 9825 1993
## 9826 1992
## 9827 1991
## 9828 1990
## 9829 1989
## 9830 1988
## 9831 1987
## 9832 1986
## 9833 1985
## 9834 1984
## 9835 1983
## 9836 1982
## 9837 1981
## 9838 1980
## 9839 1979
## 9840 1978
## 9841 1977
## 9842 1976
## 9843 1975
## 9844 1974
## 9845 1973
## 9846 1972
## 9847 1971
## 9848 1970
## 9849 1969
## 9850 1968
## 9851 1967
## 9852 1966
## 9853 1965
## 9854 1964
## 9855 1963
## 9856 1962
## 9857 1961
## 9858 1960
## 9859 2021
## 9860 2020
## 9861 2019
## 9862 2018
## 9863 2017
## 9864 2016
## 9865 2015
## 9866 2014
## 9867 2013
## 9868 2012
## 9869 2011
## 9870 2010
## 9871 2009
## 9872 2008
## 9873 2007
## 9874 2006
## 9875 2005
## 9876 2004
## 9877 2003
## 9878 2002
## 9879 2001
## 9880 2000
## 9881 1999
## 9882 1998
## 9883 1997
## 9884 1996
## 9885 1995
## 9886 1994
## 9887 1993
## 9888 1992
## 9889 1991
## 9890 1990
## 9891 1989
## 9892 1988
## 9893 1987
## 9894 1986
## 9895 1985
## 9896 1984
## 9897 1983
## 9898 1982
## 9899 1981
## 9900 1980
## 9901 1979
## 9902 1978
## 9903 1977
## 9904 1976
## 9905 1975
## 9906 1974
## 9907 1973
## 9908 1972
## 9909 1971
## 9910 1970
## 9911 1969
## 9912 1968
## 9913 1967
## 9914 1966
## 9915 1965
## 9916 1964
## 9917 1963
## 9918 1962
## 9919 1961
## 9920 1960
## 9921 2021
## 9922 2020
## 9923 2019
## 9924 2018
## 9925 2017
## 9926 2016
## 9927 2015
## 9928 2014
## 9929 2013
## 9930 2012
## 9931 2011
## 9932 2010
## 9933 2009
## 9934 2008
## 9935 2007
## 9936 2006
## 9937 2005
## 9938 2004
## 9939 2003
## 9940 2002
## 9941 2001
## 9942 2000
## 9943 1999
## 9944 1998
## 9945 1997
## 9946 1996
## 9947 1995
## 9948 1994
## 9949 1993
## 9950 1992
## 9951 1991
## 9952 1990
## 9953 1989
## 9954 1988
## 9955 1987
## 9956 1986
## 9957 1985
## 9958 1984
## 9959 1983
## 9960 1982
## 9961 1981
## 9962 1980
## 9963 1979
## 9964 1978
## 9965 1977
## 9966 1976
## 9967 1975
## 9968 1974
## 9969 1973
## 9970 1972
## 9971 1971
## 9972 1970
## 9973 1969
## 9974 1968
## 9975 1967
## 9976 1966
## 9977 1965
## 9978 1964
## 9979 1963
## 9980 1962
## 9981 1961
## 9982 1960
## 9983 2021
## 9984 2020
## 9985 2019
## 9986 2018
## 9987 2017
## 9988 2016
## 9989 2015
## 9990 2014
## 9991 2013
## 9992 2012
## 9993 2011
## 9994 2010
## 9995 2009
## 9996 2008
## 9997 2007
## 9998 2006
## 9999 2005
## 10000 2004
## 10001 2003
## 10002 2002
## 10003 2001
## 10004 2000
## 10005 1999
## 10006 1998
## 10007 1997
## 10008 1996
## 10009 1995
## 10010 1994
## 10011 1993
## 10012 1992
## 10013 1991
## 10014 1990
## 10015 1989
## 10016 1988
## 10017 1987
## 10018 1986
## 10019 1985
## 10020 1984
## 10021 1983
## 10022 1982
## 10023 1981
## 10024 1980
## 10025 1979
## 10026 1978
## 10027 1977
## 10028 1976
## 10029 1975
## 10030 1974
## 10031 1973
## 10032 1972
## 10033 1971
## 10034 1970
## 10035 1969
## 10036 1968
## 10037 1967
## 10038 1966
## 10039 1965
## 10040 1964
## 10041 1963
## 10042 1962
## 10043 1961
## 10044 1960
## 10045 2021
## 10046 2020
## 10047 2019
## 10048 2018
## 10049 2017
## 10050 2016
## 10051 2015
## 10052 2014
## 10053 2013
## 10054 2012
## 10055 2011
## 10056 2010
## 10057 2009
## 10058 2008
## 10059 2007
## 10060 2006
## 10061 2005
## 10062 2004
## 10063 2003
## 10064 2002
## 10065 2001
## 10066 2000
## 10067 1999
## 10068 1998
## 10069 1997
## 10070 1996
## 10071 1995
## 10072 1994
## 10073 1993
## 10074 1992
## 10075 1991
## 10076 1990
## 10077 1989
## 10078 1988
## 10079 1987
## 10080 1986
## 10081 1985
## 10082 1984
## 10083 1983
## 10084 1982
## 10085 1981
## 10086 1980
## 10087 1979
## 10088 1978
## 10089 1977
## 10090 1976
## 10091 1975
## 10092 1974
## 10093 1973
## 10094 1972
## 10095 1971
## 10096 1970
## 10097 1969
## 10098 1968
## 10099 1967
## 10100 1966
## 10101 1965
## 10102 1964
## 10103 1963
## 10104 1962
## 10105 1961
## 10106 1960
## 10107 2021
## 10108 2020
## 10109 2019
## 10110 2018
## 10111 2017
## 10112 2016
## 10113 2015
## 10114 2014
## 10115 2013
## 10116 2012
## 10117 2011
## 10118 2010
## 10119 2009
## 10120 2008
## 10121 2007
## 10122 2006
## 10123 2005
## 10124 2004
## 10125 2003
## 10126 2002
## 10127 2001
## 10128 2000
## 10129 1999
## 10130 1998
## 10131 1997
## 10132 1996
## 10133 1995
## 10134 1994
## 10135 1993
## 10136 1992
## 10137 1991
## 10138 1990
## 10139 1989
## 10140 1988
## 10141 1987
## 10142 1986
## 10143 1985
## 10144 1984
## 10145 1983
## 10146 1982
## 10147 1981
## 10148 1980
## 10149 1979
## 10150 1978
## 10151 1977
## 10152 1976
## 10153 1975
## 10154 1974
## 10155 1973
## 10156 1972
## 10157 1971
## 10158 1970
## 10159 1969
## 10160 1968
## 10161 1967
## 10162 1966
## 10163 1965
## 10164 1964
## 10165 1963
## 10166 1962
## 10167 1961
## 10168 1960
## 10169 2021
## 10170 2020
## 10171 2019
## 10172 2018
## 10173 2017
## 10174 2016
## 10175 2015
## 10176 2014
## 10177 2013
## 10178 2012
## 10179 2011
## 10180 2010
## 10181 2009
## 10182 2008
## 10183 2007
## 10184 2006
## 10185 2005
## 10186 2004
## 10187 2003
## 10188 2002
## 10189 2001
## 10190 2000
## 10191 1999
## 10192 1998
## 10193 1997
## 10194 1996
## 10195 1995
## 10196 1994
## 10197 1993
## 10198 1992
## 10199 1991
## 10200 1990
## 10201 1989
## 10202 1988
## 10203 1987
## 10204 1986
## 10205 1985
## 10206 1984
## 10207 1983
## 10208 1982
## 10209 1981
## 10210 1980
## 10211 1979
## 10212 1978
## 10213 1977
## 10214 1976
## 10215 1975
## 10216 1974
## 10217 1973
## 10218 1972
## 10219 1971
## 10220 1970
## 10221 1969
## 10222 1968
## 10223 1967
## 10224 1966
## 10225 1965
## 10226 1964
## 10227 1963
## 10228 1962
## 10229 1961
## 10230 1960
## 10231 2021
## 10232 2020
## 10233 2019
## 10234 2018
## 10235 2017
## 10236 2016
## 10237 2015
## 10238 2014
## 10239 2013
## 10240 2012
## 10241 2011
## 10242 2010
## 10243 2009
## 10244 2008
## 10245 2007
## 10246 2006
## 10247 2005
## 10248 2004
## 10249 2003
## 10250 2002
## 10251 2001
## 10252 2000
## 10253 1999
## 10254 1998
## 10255 1997
## 10256 1996
## 10257 1995
## 10258 1994
## 10259 1993
## 10260 1992
## 10261 1991
## 10262 1990
## 10263 1989
## 10264 1988
## 10265 1987
## 10266 1986
## 10267 1985
## 10268 1984
## 10269 1983
## 10270 1982
## 10271 1981
## 10272 1980
## 10273 1979
## 10274 1978
## 10275 1977
## 10276 1976
## 10277 1975
## 10278 1974
## 10279 1973
## 10280 1972
## 10281 1971
## 10282 1970
## 10283 1969
## 10284 1968
## 10285 1967
## 10286 1966
## 10287 1965
## 10288 1964
## 10289 1963
## 10290 1962
## 10291 1961
## 10292 1960
## 10293 2021
## 10294 2020
## 10295 2019
## 10296 2018
## 10297 2017
## 10298 2016
## 10299 2015
## 10300 2014
## 10301 2013
## 10302 2012
## 10303 2011
## 10304 2010
## 10305 2009
## 10306 2008
## 10307 2007
## 10308 2006
## 10309 2005
## 10310 2004
## 10311 2003
## 10312 2002
## 10313 2001
## 10314 2000
## 10315 1999
## 10316 1998
## 10317 1997
## 10318 1996
## 10319 1995
## 10320 1994
## 10321 1993
## 10322 1992
## 10323 1991
## 10324 1990
## 10325 1989
## 10326 1988
## 10327 1987
## 10328 1986
## 10329 1985
## 10330 1984
## 10331 1983
## 10332 1982
## 10333 1981
## 10334 1980
## 10335 1979
## 10336 1978
## 10337 1977
## 10338 1976
## 10339 1975
## 10340 1974
## 10341 1973
## 10342 1972
## 10343 1971
## 10344 1970
## 10345 1969
## 10346 1968
## 10347 1967
## 10348 1966
## 10349 1965
## 10350 1964
## 10351 1963
## 10352 1962
## 10353 1961
## 10354 1960
## 10355 2021
## 10356 2020
## 10357 2019
## 10358 2018
## 10359 2017
## 10360 2016
## 10361 2015
## 10362 2014
## 10363 2013
## 10364 2012
## 10365 2011
## 10366 2010
## 10367 2009
## 10368 2008
## 10369 2007
## 10370 2006
## 10371 2005
## 10372 2004
## 10373 2003
## 10374 2002
## 10375 2001
## 10376 2000
## 10377 1999
## 10378 1998
## 10379 1997
## 10380 1996
## 10381 1995
## 10382 1994
## 10383 1993
## 10384 1992
## 10385 1991
## 10386 1990
## 10387 1989
## 10388 1988
## 10389 1987
## 10390 1986
## 10391 1985
## 10392 1984
## 10393 1983
## 10394 1982
## 10395 1981
## 10396 1980
## 10397 1979
## 10398 1978
## 10399 1977
## 10400 1976
## 10401 1975
## 10402 1974
## 10403 1973
## 10404 1972
## 10405 1971
## 10406 1970
## 10407 1969
## 10408 1968
## 10409 1967
## 10410 1966
## 10411 1965
## 10412 1964
## 10413 1963
## 10414 1962
## 10415 1961
## 10416 1960
## 10417 2021
## 10418 2020
## 10419 2019
## 10420 2018
## 10421 2017
## 10422 2016
## 10423 2015
## 10424 2014
## 10425 2013
## 10426 2012
## 10427 2011
## 10428 2010
## 10429 2009
## 10430 2008
## 10431 2007
## 10432 2006
## 10433 2005
## 10434 2004
## 10435 2003
## 10436 2002
## 10437 2001
## 10438 2000
## 10439 1999
## 10440 1998
## 10441 1997
## 10442 1996
## 10443 1995
## 10444 1994
## 10445 1993
## 10446 1992
## 10447 1991
## 10448 1990
## 10449 1989
## 10450 1988
## 10451 1987
## 10452 1986
## 10453 1985
## 10454 1984
## 10455 1983
## 10456 1982
## 10457 1981
## 10458 1980
## 10459 1979
## 10460 1978
## 10461 1977
## 10462 1976
## 10463 1975
## 10464 1974
## 10465 1973
## 10466 1972
## 10467 1971
## 10468 1970
## 10469 1969
## 10470 1968
## 10471 1967
## 10472 1966
## 10473 1965
## 10474 1964
## 10475 1963
## 10476 1962
## 10477 1961
## 10478 1960
## 10479 2021
## 10480 2020
## 10481 2019
## 10482 2018
## 10483 2017
## 10484 2016
## 10485 2015
## 10486 2014
## 10487 2013
## 10488 2012
## 10489 2011
## 10490 2010
## 10491 2009
## 10492 2008
## 10493 2007
## 10494 2006
## 10495 2005
## 10496 2004
## 10497 2003
## 10498 2002
## 10499 2001
## 10500 2000
## 10501 1999
## 10502 1998
## 10503 1997
## 10504 1996
## 10505 1995
## 10506 1994
## 10507 1993
## 10508 1992
## 10509 1991
## 10510 1990
## 10511 1989
## 10512 1988
## 10513 1987
## 10514 1986
## 10515 1985
## 10516 1984
## 10517 1983
## 10518 1982
## 10519 1981
## 10520 1980
## 10521 1979
## 10522 1978
## 10523 1977
## 10524 1976
## 10525 1975
## 10526 1974
## 10527 1973
## 10528 1972
## 10529 1971
## 10530 1970
## 10531 1969
## 10532 1968
## 10533 1967
## 10534 1966
## 10535 1965
## 10536 1964
## 10537 1963
## 10538 1962
## 10539 1961
## 10540 1960
## 10541 2021
## 10542 2020
## 10543 2019
## 10544 2018
## 10545 2017
## 10546 2016
## 10547 2015
## 10548 2014
## 10549 2013
## 10550 2012
## 10551 2011
## 10552 2010
## 10553 2009
## 10554 2008
## 10555 2007
## 10556 2006
## 10557 2005
## 10558 2004
## 10559 2003
## 10560 2002
## 10561 2001
## 10562 2000
## 10563 1999
## 10564 1998
## 10565 1997
## 10566 1996
## 10567 1995
## 10568 1994
## 10569 1993
## 10570 1992
## 10571 1991
## 10572 1990
## 10573 1989
## 10574 1988
## 10575 1987
## 10576 1986
## 10577 1985
## 10578 1984
## 10579 1983
## 10580 1982
## 10581 1981
## 10582 1980
## 10583 1979
## 10584 1978
## 10585 1977
## 10586 1976
## 10587 1975
## 10588 1974
## 10589 1973
## 10590 1972
## 10591 1971
## 10592 1970
## 10593 1969
## 10594 1968
## 10595 1967
## 10596 1966
## 10597 1965
## 10598 1964
## 10599 1963
## 10600 1962
## 10601 1961
## 10602 1960
## 10603 2021
## 10604 2020
## 10605 2019
## 10606 2018
## 10607 2017
## 10608 2016
## 10609 2015
## 10610 2014
## 10611 2013
## 10612 2012
## 10613 2011
## 10614 2010
## 10615 2009
## 10616 2008
## 10617 2007
## 10618 2006
## 10619 2005
## 10620 2004
## 10621 2003
## 10622 2002
## 10623 2001
## 10624 2000
## 10625 1999
## 10626 1998
## 10627 1997
## 10628 1996
## 10629 1995
## 10630 1994
## 10631 1993
## 10632 1992
## 10633 1991
## 10634 1990
## 10635 1989
## 10636 1988
## 10637 1987
## 10638 1986
## 10639 1985
## 10640 1984
## 10641 1983
## 10642 1982
## 10643 1981
## 10644 1980
## 10645 1979
## 10646 1978
## 10647 1977
## 10648 1976
## 10649 1975
## 10650 1974
## 10651 1973
## 10652 1972
## 10653 1971
## 10654 1970
## 10655 1969
## 10656 1968
## 10657 1967
## 10658 1966
## 10659 1965
## 10660 1964
## 10661 1963
## 10662 1962
## 10663 1961
## 10664 1960
## 10665 2021
## 10666 2020
## 10667 2019
## 10668 2018
## 10669 2017
## 10670 2016
## 10671 2015
## 10672 2014
## 10673 2013
## 10674 2012
## 10675 2011
## 10676 2010
## 10677 2009
## 10678 2008
## 10679 2007
## 10680 2006
## 10681 2005
## 10682 2004
## 10683 2003
## 10684 2002
## 10685 2001
## 10686 2000
## 10687 1999
## 10688 1998
## 10689 1997
## 10690 1996
## 10691 1995
## 10692 1994
## 10693 1993
## 10694 1992
## 10695 1991
## 10696 1990
## 10697 1989
## 10698 1988
## 10699 1987
## 10700 1986
## 10701 1985
## 10702 1984
## 10703 1983
## 10704 1982
## 10705 1981
## 10706 1980
## 10707 1979
## 10708 1978
## 10709 1977
## 10710 1976
## 10711 1975
## 10712 1974
## 10713 1973
## 10714 1972
## 10715 1971
## 10716 1970
## 10717 1969
## 10718 1968
## 10719 1967
## 10720 1966
## 10721 1965
## 10722 1964
## 10723 1963
## 10724 1962
## 10725 1961
## 10726 1960
## 10727 2021
## 10728 2020
## 10729 2019
## 10730 2018
## 10731 2017
## 10732 2016
## 10733 2015
## 10734 2014
## 10735 2013
## 10736 2012
## 10737 2011
## 10738 2010
## 10739 2009
## 10740 2008
## 10741 2007
## 10742 2006
## 10743 2005
## 10744 2004
## 10745 2003
## 10746 2002
## 10747 2001
## 10748 2000
## 10749 1999
## 10750 1998
## 10751 1997
## 10752 1996
## 10753 1995
## 10754 1994
## 10755 1993
## 10756 1992
## 10757 1991
## 10758 1990
## 10759 1989
## 10760 1988
## 10761 1987
## 10762 1986
## 10763 1985
## 10764 1984
## 10765 1983
## 10766 1982
## 10767 1981
## 10768 1980
## 10769 1979
## 10770 1978
## 10771 1977
## 10772 1976
## 10773 1975
## 10774 1974
## 10775 1973
## 10776 1972
## 10777 1971
## 10778 1970
## 10779 1969
## 10780 1968
## 10781 1967
## 10782 1966
## 10783 1965
## 10784 1964
## 10785 1963
## 10786 1962
## 10787 1961
## 10788 1960
## 10789 2021
## 10790 2020
## 10791 2019
## 10792 2018
## 10793 2017
## 10794 2016
## 10795 2015
## 10796 2014
## 10797 2013
## 10798 2012
## 10799 2011
## 10800 2010
## 10801 2009
## 10802 2008
## 10803 2007
## 10804 2006
## 10805 2005
## 10806 2004
## 10807 2003
## 10808 2002
## 10809 2001
## 10810 2000
## 10811 1999
## 10812 1998
## 10813 1997
## 10814 1996
## 10815 1995
## 10816 1994
## 10817 1993
## 10818 1992
## 10819 1991
## 10820 1990
## 10821 1989
## 10822 1988
## 10823 1987
## 10824 1986
## 10825 1985
## 10826 1984
## 10827 1983
## 10828 1982
## 10829 1981
## 10830 1980
## 10831 1979
## 10832 1978
## 10833 1977
## 10834 1976
## 10835 1975
## 10836 1974
## 10837 1973
## 10838 1972
## 10839 1971
## 10840 1970
## 10841 1969
## 10842 1968
## 10843 1967
## 10844 1966
## 10845 1965
## 10846 1964
## 10847 1963
## 10848 1962
## 10849 1961
## 10850 1960
## 10851 2021
## 10852 2020
## 10853 2019
## 10854 2018
## 10855 2017
## 10856 2016
## 10857 2015
## 10858 2014
## 10859 2013
## 10860 2012
## 10861 2011
## 10862 2010
## 10863 2009
## 10864 2008
## 10865 2007
## 10866 2006
## 10867 2005
## 10868 2004
## 10869 2003
## 10870 2002
## 10871 2001
## 10872 2000
## 10873 1999
## 10874 1998
## 10875 1997
## 10876 1996
## 10877 1995
## 10878 1994
## 10879 1993
## 10880 1992
## 10881 1991
## 10882 1990
## 10883 1989
## 10884 1988
## 10885 1987
## 10886 1986
## 10887 1985
## 10888 1984
## 10889 1983
## 10890 1982
## 10891 1981
## 10892 1980
## 10893 1979
## 10894 1978
## 10895 1977
## 10896 1976
## 10897 1975
## 10898 1974
## 10899 1973
## 10900 1972
## 10901 1971
## 10902 1970
## 10903 1969
## 10904 1968
## 10905 1967
## 10906 1966
## 10907 1965
## 10908 1964
## 10909 1963
## 10910 1962
## 10911 1961
## 10912 1960
## 10913 2021
## 10914 2020
## 10915 2019
## 10916 2018
## 10917 2017
## 10918 2016
## 10919 2015
## 10920 2014
## 10921 2013
## 10922 2012
## 10923 2011
## 10924 2010
## 10925 2009
## 10926 2008
## 10927 2007
## 10928 2006
## 10929 2005
## 10930 2004
## 10931 2003
## 10932 2002
## 10933 2001
## 10934 2000
## 10935 1999
## 10936 1998
## 10937 1997
## 10938 1996
## 10939 1995
## 10940 1994
## 10941 1993
## 10942 1992
## 10943 1991
## 10944 1990
## 10945 1989
## 10946 1988
## 10947 1987
## 10948 1986
## 10949 1985
## 10950 1984
## 10951 1983
## 10952 1982
## 10953 1981
## 10954 1980
## 10955 1979
## 10956 1978
## 10957 1977
## 10958 1976
## 10959 1975
## 10960 1974
## 10961 1973
## 10962 1972
## 10963 1971
## 10964 1970
## 10965 1969
## 10966 1968
## 10967 1967
## 10968 1966
## 10969 1965
## 10970 1964
## 10971 1963
## 10972 1962
## 10973 1961
## 10974 1960
## 10975 2021
## 10976 2020
## 10977 2019
## 10978 2018
## 10979 2017
## 10980 2016
## 10981 2015
## 10982 2014
## 10983 2013
## 10984 2012
## 10985 2011
## 10986 2010
## 10987 2009
## 10988 2008
## 10989 2007
## 10990 2006
## 10991 2005
## 10992 2004
## 10993 2003
## 10994 2002
## 10995 2001
## 10996 2000
## 10997 1999
## 10998 1998
## 10999 1997
## 11000 1996
## 11001 1995
## 11002 1994
## 11003 1993
## 11004 1992
## 11005 1991
## 11006 1990
## 11007 1989
## 11008 1988
## 11009 1987
## 11010 1986
## 11011 1985
## 11012 1984
## 11013 1983
## 11014 1982
## 11015 1981
## 11016 1980
## 11017 1979
## 11018 1978
## 11019 1977
## 11020 1976
## 11021 1975
## 11022 1974
## 11023 1973
## 11024 1972
## 11025 1971
## 11026 1970
## 11027 1969
## 11028 1968
## 11029 1967
## 11030 1966
## 11031 1965
## 11032 1964
## 11033 1963
## 11034 1962
## 11035 1961
## 11036 1960
## 11037 2021
## 11038 2020
## 11039 2019
## 11040 2018
## 11041 2017
## 11042 2016
## 11043 2015
## 11044 2014
## 11045 2013
## 11046 2012
## 11047 2011
## 11048 2010
## 11049 2009
## 11050 2008
## 11051 2007
## 11052 2006
## 11053 2005
## 11054 2004
## 11055 2003
## 11056 2002
## 11057 2001
## 11058 2000
## 11059 1999
## 11060 1998
## 11061 1997
## 11062 1996
## 11063 1995
## 11064 1994
## 11065 1993
## 11066 1992
## 11067 1991
## 11068 1990
## 11069 1989
## 11070 1988
## 11071 1987
## 11072 1986
## 11073 1985
## 11074 1984
## 11075 1983
## 11076 1982
## 11077 1981
## 11078 1980
## 11079 1979
## 11080 1978
## 11081 1977
## 11082 1976
## 11083 1975
## 11084 1974
## 11085 1973
## 11086 1972
## 11087 1971
## 11088 1970
## 11089 1969
## 11090 1968
## 11091 1967
## 11092 1966
## 11093 1965
## 11094 1964
## 11095 1963
## 11096 1962
## 11097 1961
## 11098 1960
## 11099 2021
## 11100 2020
## 11101 2019
## 11102 2018
## 11103 2017
## 11104 2016
## 11105 2015
## 11106 2014
## 11107 2013
## 11108 2012
## 11109 2011
## 11110 2010
## 11111 2009
## 11112 2008
## 11113 2007
## 11114 2006
## 11115 2005
## 11116 2004
## 11117 2003
## 11118 2002
## 11119 2001
## 11120 2000
## 11121 1999
## 11122 1998
## 11123 1997
## 11124 1996
## 11125 1995
## 11126 1994
## 11127 1993
## 11128 1992
## 11129 1991
## 11130 1990
## 11131 1989
## 11132 1988
## 11133 1987
## 11134 1986
## 11135 1985
## 11136 1984
## 11137 1983
## 11138 1982
## 11139 1981
## 11140 1980
## 11141 1979
## 11142 1978
## 11143 1977
## 11144 1976
## 11145 1975
## 11146 1974
## 11147 1973
## 11148 1972
## 11149 1971
## 11150 1970
## 11151 1969
## 11152 1968
## 11153 1967
## 11154 1966
## 11155 1965
## 11156 1964
## 11157 1963
## 11158 1962
## 11159 1961
## 11160 1960
## 11161 2021
## 11162 2020
## 11163 2019
## 11164 2018
## 11165 2017
## 11166 2016
## 11167 2015
## 11168 2014
## 11169 2013
## 11170 2012
## 11171 2011
## 11172 2010
## 11173 2009
## 11174 2008
## 11175 2007
## 11176 2006
## 11177 2005
## 11178 2004
## 11179 2003
## 11180 2002
## 11181 2001
## 11182 2000
## 11183 1999
## 11184 1998
## 11185 1997
## 11186 1996
## 11187 1995
## 11188 1994
## 11189 1993
## 11190 1992
## 11191 1991
## 11192 1990
## 11193 1989
## 11194 1988
## 11195 1987
## 11196 1986
## 11197 1985
## 11198 1984
## 11199 1983
## 11200 1982
## 11201 1981
## 11202 1980
## 11203 1979
## 11204 1978
## 11205 1977
## 11206 1976
## 11207 1975
## 11208 1974
## 11209 1973
## 11210 1972
## 11211 1971
## 11212 1970
## 11213 1969
## 11214 1968
## 11215 1967
## 11216 1966
## 11217 1965
## 11218 1964
## 11219 1963
## 11220 1962
## 11221 1961
## 11222 1960
## 11223 2021
## 11224 2020
## 11225 2019
## 11226 2018
## 11227 2017
## 11228 2016
## 11229 2015
## 11230 2014
## 11231 2013
## 11232 2012
## 11233 2011
## 11234 2010
## 11235 2009
## 11236 2008
## 11237 2007
## 11238 2006
## 11239 2005
## 11240 2004
## 11241 2003
## 11242 2002
## 11243 2001
## 11244 2000
## 11245 1999
## 11246 1998
## 11247 1997
## 11248 1996
## 11249 1995
## 11250 1994
## 11251 1993
## 11252 1992
## 11253 1991
## 11254 1990
## 11255 1989
## 11256 1988
## 11257 1987
## 11258 1986
## 11259 1985
## 11260 1984
## 11261 1983
## 11262 1982
## 11263 1981
## 11264 1980
## 11265 1979
## 11266 1978
## 11267 1977
## 11268 1976
## 11269 1975
## 11270 1974
## 11271 1973
## 11272 1972
## 11273 1971
## 11274 1970
## 11275 1969
## 11276 1968
## 11277 1967
## 11278 1966
## 11279 1965
## 11280 1964
## 11281 1963
## 11282 1962
## 11283 1961
## 11284 1960
## 11285 2021
## 11286 2020
## 11287 2019
## 11288 2018
## 11289 2017
## 11290 2016
## 11291 2015
## 11292 2014
## 11293 2013
## 11294 2012
## 11295 2011
## 11296 2010
## 11297 2009
## 11298 2008
## 11299 2007
## 11300 2006
## 11301 2005
## 11302 2004
## 11303 2003
## 11304 2002
## 11305 2001
## 11306 2000
## 11307 1999
## 11308 1998
## 11309 1997
## 11310 1996
## 11311 1995
## 11312 1994
## 11313 1993
## 11314 1992
## 11315 1991
## 11316 1990
## 11317 1989
## 11318 1988
## 11319 1987
## 11320 1986
## 11321 1985
## 11322 1984
## 11323 1983
## 11324 1982
## 11325 1981
## 11326 1980
## 11327 1979
## 11328 1978
## 11329 1977
## 11330 1976
## 11331 1975
## 11332 1974
## 11333 1973
## 11334 1972
## 11335 1971
## 11336 1970
## 11337 1969
## 11338 1968
## 11339 1967
## 11340 1966
## 11341 1965
## 11342 1964
## 11343 1963
## 11344 1962
## 11345 1961
## 11346 1960
## 11347 2021
## 11348 2020
## 11349 2019
## 11350 2018
## 11351 2017
## 11352 2016
## 11353 2015
## 11354 2014
## 11355 2013
## 11356 2012
## 11357 2011
## 11358 2010
## 11359 2009
## 11360 2008
## 11361 2007
## 11362 2006
## 11363 2005
## 11364 2004
## 11365 2003
## 11366 2002
## 11367 2001
## 11368 2000
## 11369 1999
## 11370 1998
## 11371 1997
## 11372 1996
## 11373 1995
## 11374 1994
## 11375 1993
## 11376 1992
## 11377 1991
## 11378 1990
## 11379 1989
## 11380 1988
## 11381 1987
## 11382 1986
## 11383 1985
## 11384 1984
## 11385 1983
## 11386 1982
## 11387 1981
## 11388 1980
## 11389 1979
## 11390 1978
## 11391 1977
## 11392 1976
## 11393 1975
## 11394 1974
## 11395 1973
## 11396 1972
## 11397 1971
## 11398 1970
## 11399 1969
## 11400 1968
## 11401 1967
## 11402 1966
## 11403 1965
## 11404 1964
## 11405 1963
## 11406 1962
## 11407 1961
## 11408 1960
## 11409 2021
## 11410 2020
## 11411 2019
## 11412 2018
## 11413 2017
## 11414 2016
## 11415 2015
## 11416 2014
## 11417 2013
## 11418 2012
## 11419 2011
## 11420 2010
## 11421 2009
## 11422 2008
## 11423 2007
## 11424 2006
## 11425 2005
## 11426 2004
## 11427 2003
## 11428 2002
## 11429 2001
## 11430 2000
## 11431 1999
## 11432 1998
## 11433 1997
## 11434 1996
## 11435 1995
## 11436 1994
## 11437 1993
## 11438 1992
## 11439 1991
## 11440 1990
## 11441 1989
## 11442 1988
## 11443 1987
## 11444 1986
## 11445 1985
## 11446 1984
## 11447 1983
## 11448 1982
## 11449 1981
## 11450 1980
## 11451 1979
## 11452 1978
## 11453 1977
## 11454 1976
## 11455 1975
## 11456 1974
## 11457 1973
## 11458 1972
## 11459 1971
## 11460 1970
## 11461 1969
## 11462 1968
## 11463 1967
## 11464 1966
## 11465 1965
## 11466 1964
## 11467 1963
## 11468 1962
## 11469 1961
## 11470 1960
## 11471 2021
## 11472 2020
## 11473 2019
## 11474 2018
## 11475 2017
## 11476 2016
## 11477 2015
## 11478 2014
## 11479 2013
## 11480 2012
## 11481 2011
## 11482 2010
## 11483 2009
## 11484 2008
## 11485 2007
## 11486 2006
## 11487 2005
## 11488 2004
## 11489 2003
## 11490 2002
## 11491 2001
## 11492 2000
## 11493 1999
## 11494 1998
## 11495 1997
## 11496 1996
## 11497 1995
## 11498 1994
## 11499 1993
## 11500 1992
## 11501 1991
## 11502 1990
## 11503 1989
## 11504 1988
## 11505 1987
## 11506 1986
## 11507 1985
## 11508 1984
## 11509 1983
## 11510 1982
## 11511 1981
## 11512 1980
## 11513 1979
## 11514 1978
## 11515 1977
## 11516 1976
## 11517 1975
## 11518 1974
## 11519 1973
## 11520 1972
## 11521 1971
## 11522 1970
## 11523 1969
## 11524 1968
## 11525 1967
## 11526 1966
## 11527 1965
## 11528 1964
## 11529 1963
## 11530 1962
## 11531 1961
## 11532 1960
## 11533 2021
## 11534 2020
## 11535 2019
## 11536 2018
## 11537 2017
## 11538 2016
## 11539 2015
## 11540 2014
## 11541 2013
## 11542 2012
## 11543 2011
## 11544 2010
## 11545 2009
## 11546 2008
## 11547 2007
## 11548 2006
## 11549 2005
## 11550 2004
## 11551 2003
## 11552 2002
## 11553 2001
## 11554 2000
## 11555 1999
## 11556 1998
## 11557 1997
## 11558 1996
## 11559 1995
## 11560 1994
## 11561 1993
## 11562 1992
## 11563 1991
## 11564 1990
## 11565 1989
## 11566 1988
## 11567 1987
## 11568 1986
## 11569 1985
## 11570 1984
## 11571 1983
## 11572 1982
## 11573 1981
## 11574 1980
## 11575 1979
## 11576 1978
## 11577 1977
## 11578 1976
## 11579 1975
## 11580 1974
## 11581 1973
## 11582 1972
## 11583 1971
## 11584 1970
## 11585 1969
## 11586 1968
## 11587 1967
## 11588 1966
## 11589 1965
## 11590 1964
## 11591 1963
## 11592 1962
## 11593 1961
## 11594 1960
## 11595 2021
## 11596 2020
## 11597 2019
## 11598 2018
## 11599 2017
## 11600 2016
## 11601 2015
## 11602 2014
## 11603 2013
## 11604 2012
## 11605 2011
## 11606 2010
## 11607 2009
## 11608 2008
## 11609 2007
## 11610 2006
## 11611 2005
## 11612 2004
## 11613 2003
## 11614 2002
## 11615 2001
## 11616 2000
## 11617 1999
## 11618 1998
## 11619 1997
## 11620 1996
## 11621 1995
## 11622 1994
## 11623 1993
## 11624 1992
## 11625 1991
## 11626 1990
## 11627 1989
## 11628 1988
## 11629 1987
## 11630 1986
## 11631 1985
## 11632 1984
## 11633 1983
## 11634 1982
## 11635 1981
## 11636 1980
## 11637 1979
## 11638 1978
## 11639 1977
## 11640 1976
## 11641 1975
## 11642 1974
## 11643 1973
## 11644 1972
## 11645 1971
## 11646 1970
## 11647 1969
## 11648 1968
## 11649 1967
## 11650 1966
## 11651 1965
## 11652 1964
## 11653 1963
## 11654 1962
## 11655 1961
## 11656 1960
## 11657 2021
## 11658 2020
## 11659 2019
## 11660 2018
## 11661 2017
## 11662 2016
## 11663 2015
## 11664 2014
## 11665 2013
## 11666 2012
## 11667 2011
## 11668 2010
## 11669 2009
## 11670 2008
## 11671 2007
## 11672 2006
## 11673 2005
## 11674 2004
## 11675 2003
## 11676 2002
## 11677 2001
## 11678 2000
## 11679 1999
## 11680 1998
## 11681 1997
## 11682 1996
## 11683 1995
## 11684 1994
## 11685 1993
## 11686 1992
## 11687 1991
## 11688 1990
## 11689 1989
## 11690 1988
## 11691 1987
## 11692 1986
## 11693 1985
## 11694 1984
## 11695 1983
## 11696 1982
## 11697 1981
## 11698 1980
## 11699 1979
## 11700 1978
## 11701 1977
## 11702 1976
## 11703 1975
## 11704 1974
## 11705 1973
## 11706 1972
## 11707 1971
## 11708 1970
## 11709 1969
## 11710 1968
## 11711 1967
## 11712 1966
## 11713 1965
## 11714 1964
## 11715 1963
## 11716 1962
## 11717 1961
## 11718 1960
## 11719 2021
## 11720 2020
## 11721 2019
## 11722 2018
## 11723 2017
## 11724 2016
## 11725 2015
## 11726 2014
## 11727 2013
## 11728 2012
## 11729 2011
## 11730 2010
## 11731 2009
## 11732 2008
## 11733 2007
## 11734 2006
## 11735 2005
## 11736 2004
## 11737 2003
## 11738 2002
## 11739 2001
## 11740 2000
## 11741 1999
## 11742 1998
## 11743 1997
## 11744 1996
## 11745 1995
## 11746 1994
## 11747 1993
## 11748 1992
## 11749 1991
## 11750 1990
## 11751 1989
## 11752 1988
## 11753 1987
## 11754 1986
## 11755 1985
## 11756 1984
## 11757 1983
## 11758 1982
## 11759 1981
## 11760 1980
## 11761 1979
## 11762 1978
## 11763 1977
## 11764 1976
## 11765 1975
## 11766 1974
## 11767 1973
## 11768 1972
## 11769 1971
## 11770 1970
## 11771 1969
## 11772 1968
## 11773 1967
## 11774 1966
## 11775 1965
## 11776 1964
## 11777 1963
## 11778 1962
## 11779 1961
## 11780 1960
## 11781 2021
## 11782 2020
## 11783 2019
## 11784 2018
## 11785 2017
## 11786 2016
## 11787 2015
## 11788 2014
## 11789 2013
## 11790 2012
## 11791 2011
## 11792 2010
## 11793 2009
## 11794 2008
## 11795 2007
## 11796 2006
## 11797 2005
## 11798 2004
## 11799 2003
## 11800 2002
## 11801 2001
## 11802 2000
## 11803 1999
## 11804 1998
## 11805 1997
## 11806 1996
## 11807 1995
## 11808 1994
## 11809 1993
## 11810 1992
## 11811 1991
## 11812 1990
## 11813 1989
## 11814 1988
## 11815 1987
## 11816 1986
## 11817 1985
## 11818 1984
## 11819 1983
## 11820 1982
## 11821 1981
## 11822 1980
## 11823 1979
## 11824 1978
## 11825 1977
## 11826 1976
## 11827 1975
## 11828 1974
## 11829 1973
## 11830 1972
## 11831 1971
## 11832 1970
## 11833 1969
## 11834 1968
## 11835 1967
## 11836 1966
## 11837 1965
## 11838 1964
## 11839 1963
## 11840 1962
## 11841 1961
## 11842 1960
## 11843 2021
## 11844 2020
## 11845 2019
## 11846 2018
## 11847 2017
## 11848 2016
## 11849 2015
## 11850 2014
## 11851 2013
## 11852 2012
## 11853 2011
## 11854 2010
## 11855 2009
## 11856 2008
## 11857 2007
## 11858 2006
## 11859 2005
## 11860 2004
## 11861 2003
## 11862 2002
## 11863 2001
## 11864 2000
## 11865 1999
## 11866 1998
## 11867 1997
## 11868 1996
## 11869 1995
## 11870 1994
## 11871 1993
## 11872 1992
## 11873 1991
## 11874 1990
## 11875 1989
## 11876 1988
## 11877 1987
## 11878 1986
## 11879 1985
## 11880 1984
## 11881 1983
## 11882 1982
## 11883 1981
## 11884 1980
## 11885 1979
## 11886 1978
## 11887 1977
## 11888 1976
## 11889 1975
## 11890 1974
## 11891 1973
## 11892 1972
## 11893 1971
## 11894 1970
## 11895 1969
## 11896 1968
## 11897 1967
## 11898 1966
## 11899 1965
## 11900 1964
## 11901 1963
## 11902 1962
## 11903 1961
## 11904 1960
## 11905 2021
## 11906 2020
## 11907 2019
## 11908 2018
## 11909 2017
## 11910 2016
## 11911 2015
## 11912 2014
## 11913 2013
## 11914 2012
## 11915 2011
## 11916 2010
## 11917 2009
## 11918 2008
## 11919 2007
## 11920 2006
## 11921 2005
## 11922 2004
## 11923 2003
## 11924 2002
## 11925 2001
## 11926 2000
## 11927 1999
## 11928 1998
## 11929 1997
## 11930 1996
## 11931 1995
## 11932 1994
## 11933 1993
## 11934 1992
## 11935 1991
## 11936 1990
## 11937 1989
## 11938 1988
## 11939 1987
## 11940 1986
## 11941 1985
## 11942 1984
## 11943 1983
## 11944 1982
## 11945 1981
## 11946 1980
## 11947 1979
## 11948 1978
## 11949 1977
## 11950 1976
## 11951 1975
## 11952 1974
## 11953 1973
## 11954 1972
## 11955 1971
## 11956 1970
## 11957 1969
## 11958 1968
## 11959 1967
## 11960 1966
## 11961 1965
## 11962 1964
## 11963 1963
## 11964 1962
## 11965 1961
## 11966 1960
## 11967 2021
## 11968 2020
## 11969 2019
## 11970 2018
## 11971 2017
## 11972 2016
## 11973 2015
## 11974 2014
## 11975 2013
## 11976 2012
## 11977 2011
## 11978 2010
## 11979 2009
## 11980 2008
## 11981 2007
## 11982 2006
## 11983 2005
## 11984 2004
## 11985 2003
## 11986 2002
## 11987 2001
## 11988 2000
## 11989 1999
## 11990 1998
## 11991 1997
## 11992 1996
## 11993 1995
## 11994 1994
## 11995 1993
## 11996 1992
## 11997 1991
## 11998 1990
## 11999 1989
## 12000 1988
## 12001 1987
## 12002 1986
## 12003 1985
## 12004 1984
## 12005 1983
## 12006 1982
## 12007 1981
## 12008 1980
## 12009 1979
## 12010 1978
## 12011 1977
## 12012 1976
## 12013 1975
## 12014 1974
## 12015 1973
## 12016 1972
## 12017 1971
## 12018 1970
## 12019 1969
## 12020 1968
## 12021 1967
## 12022 1966
## 12023 1965
## 12024 1964
## 12025 1963
## 12026 1962
## 12027 1961
## 12028 1960
## 12029 2021
## 12030 2020
## 12031 2019
## 12032 2018
## 12033 2017
## 12034 2016
## 12035 2015
## 12036 2014
## 12037 2013
## 12038 2012
## 12039 2011
## 12040 2010
## 12041 2009
## 12042 2008
## 12043 2007
## 12044 2006
## 12045 2005
## 12046 2004
## 12047 2003
## 12048 2002
## 12049 2001
## 12050 2000
## 12051 1999
## 12052 1998
## 12053 1997
## 12054 1996
## 12055 1995
## 12056 1994
## 12057 1993
## 12058 1992
## 12059 1991
## 12060 1990
## 12061 1989
## 12062 1988
## 12063 1987
## 12064 1986
## 12065 1985
## 12066 1984
## 12067 1983
## 12068 1982
## 12069 1981
## 12070 1980
## 12071 1979
## 12072 1978
## 12073 1977
## 12074 1976
## 12075 1975
## 12076 1974
## 12077 1973
## 12078 1972
## 12079 1971
## 12080 1970
## 12081 1969
## 12082 1968
## 12083 1967
## 12084 1966
## 12085 1965
## 12086 1964
## 12087 1963
## 12088 1962
## 12089 1961
## 12090 1960
## 12091 2021
## 12092 2020
## 12093 2019
## 12094 2018
## 12095 2017
## 12096 2016
## 12097 2015
## 12098 2014
## 12099 2013
## 12100 2012
## 12101 2011
## 12102 2010
## 12103 2009
## 12104 2008
## 12105 2007
## 12106 2006
## 12107 2005
## 12108 2004
## 12109 2003
## 12110 2002
## 12111 2001
## 12112 2000
## 12113 1999
## 12114 1998
## 12115 1997
## 12116 1996
## 12117 1995
## 12118 1994
## 12119 1993
## 12120 1992
## 12121 1991
## 12122 1990
## 12123 1989
## 12124 1988
## 12125 1987
## 12126 1986
## 12127 1985
## 12128 1984
## 12129 1983
## 12130 1982
## 12131 1981
## 12132 1980
## 12133 1979
## 12134 1978
## 12135 1977
## 12136 1976
## 12137 1975
## 12138 1974
## 12139 1973
## 12140 1972
## 12141 1971
## 12142 1970
## 12143 1969
## 12144 1968
## 12145 1967
## 12146 1966
## 12147 1965
## 12148 1964
## 12149 1963
## 12150 1962
## 12151 1961
## 12152 1960
## 12153 2021
## 12154 2020
## 12155 2019
## 12156 2018
## 12157 2017
## 12158 2016
## 12159 2015
## 12160 2014
## 12161 2013
## 12162 2012
## 12163 2011
## 12164 2010
## 12165 2009
## 12166 2008
## 12167 2007
## 12168 2006
## 12169 2005
## 12170 2004
## 12171 2003
## 12172 2002
## 12173 2001
## 12174 2000
## 12175 1999
## 12176 1998
## 12177 1997
## 12178 1996
## 12179 1995
## 12180 1994
## 12181 1993
## 12182 1992
## 12183 1991
## 12184 1990
## 12185 1989
## 12186 1988
## 12187 1987
## 12188 1986
## 12189 1985
## 12190 1984
## 12191 1983
## 12192 1982
## 12193 1981
## 12194 1980
## 12195 1979
## 12196 1978
## 12197 1977
## 12198 1976
## 12199 1975
## 12200 1974
## 12201 1973
## 12202 1972
## 12203 1971
## 12204 1970
## 12205 1969
## 12206 1968
## 12207 1967
## 12208 1966
## 12209 1965
## 12210 1964
## 12211 1963
## 12212 1962
## 12213 1961
## 12214 1960
## 12215 2021
## 12216 2020
## 12217 2019
## 12218 2018
## 12219 2017
## 12220 2016
## 12221 2015
## 12222 2014
## 12223 2013
## 12224 2012
## 12225 2011
## 12226 2010
## 12227 2009
## 12228 2008
## 12229 2007
## 12230 2006
## 12231 2005
## 12232 2004
## 12233 2003
## 12234 2002
## 12235 2001
## 12236 2000
## 12237 1999
## 12238 1998
## 12239 1997
## 12240 1996
## 12241 1995
## 12242 1994
## 12243 1993
## 12244 1992
## 12245 1991
## 12246 1990
## 12247 1989
## 12248 1988
## 12249 1987
## 12250 1986
## 12251 1985
## 12252 1984
## 12253 1983
## 12254 1982
## 12255 1981
## 12256 1980
## 12257 1979
## 12258 1978
## 12259 1977
## 12260 1976
## 12261 1975
## 12262 1974
## 12263 1973
## 12264 1972
## 12265 1971
## 12266 1970
## 12267 1969
## 12268 1968
## 12269 1967
## 12270 1966
## 12271 1965
## 12272 1964
## 12273 1963
## 12274 1962
## 12275 1961
## 12276 1960
## 12277 2021
## 12278 2020
## 12279 2019
## 12280 2018
## 12281 2017
## 12282 2016
## 12283 2015
## 12284 2014
## 12285 2013
## 12286 2012
## 12287 2011
## 12288 2010
## 12289 2009
## 12290 2008
## 12291 2007
## 12292 2006
## 12293 2005
## 12294 2004
## 12295 2003
## 12296 2002
## 12297 2001
## 12298 2000
## 12299 1999
## 12300 1998
## 12301 1997
## 12302 1996
## 12303 1995
## 12304 1994
## 12305 1993
## 12306 1992
## 12307 1991
## 12308 1990
## 12309 1989
## 12310 1988
## 12311 1987
## 12312 1986
## 12313 1985
## 12314 1984
## 12315 1983
## 12316 1982
## 12317 1981
## 12318 1980
## 12319 1979
## 12320 1978
## 12321 1977
## 12322 1976
## 12323 1975
## 12324 1974
## 12325 1973
## 12326 1972
## 12327 1971
## 12328 1970
## 12329 1969
## 12330 1968
## 12331 1967
## 12332 1966
## 12333 1965
## 12334 1964
## 12335 1963
## 12336 1962
## 12337 1961
## 12338 1960
## 12339 2021
## 12340 2020
## 12341 2019
## 12342 2018
## 12343 2017
## 12344 2016
## 12345 2015
## 12346 2014
## 12347 2013
## 12348 2012
## 12349 2011
## 12350 2010
## 12351 2009
## 12352 2008
## 12353 2007
## 12354 2006
## 12355 2005
## 12356 2004
## 12357 2003
## 12358 2002
## 12359 2001
## 12360 2000
## 12361 1999
## 12362 1998
## 12363 1997
## 12364 1996
## 12365 1995
## 12366 1994
## 12367 1993
## 12368 1992
## 12369 1991
## 12370 1990
## 12371 1989
## 12372 1988
## 12373 1987
## 12374 1986
## 12375 1985
## 12376 1984
## 12377 1983
## 12378 1982
## 12379 1981
## 12380 1980
## 12381 1979
## 12382 1978
## 12383 1977
## 12384 1976
## 12385 1975
## 12386 1974
## 12387 1973
## 12388 1972
## 12389 1971
## 12390 1970
## 12391 1969
## 12392 1968
## 12393 1967
## 12394 1966
## 12395 1965
## 12396 1964
## 12397 1963
## 12398 1962
## 12399 1961
## 12400 1960
## 12401 2021
## 12402 2020
## 12403 2019
## 12404 2018
## 12405 2017
## 12406 2016
## 12407 2015
## 12408 2014
## 12409 2013
## 12410 2012
## 12411 2011
## 12412 2010
## 12413 2009
## 12414 2008
## 12415 2007
## 12416 2006
## 12417 2005
## 12418 2004
## 12419 2003
## 12420 2002
## 12421 2001
## 12422 2000
## 12423 1999
## 12424 1998
## 12425 1997
## 12426 1996
## 12427 1995
## 12428 1994
## 12429 1993
## 12430 1992
## 12431 1991
## 12432 1990
## 12433 1989
## 12434 1988
## 12435 1987
## 12436 1986
## 12437 1985
## 12438 1984
## 12439 1983
## 12440 1982
## 12441 1981
## 12442 1980
## 12443 1979
## 12444 1978
## 12445 1977
## 12446 1976
## 12447 1975
## 12448 1974
## 12449 1973
## 12450 1972
## 12451 1971
## 12452 1970
## 12453 1969
## 12454 1968
## 12455 1967
## 12456 1966
## 12457 1965
## 12458 1964
## 12459 1963
## 12460 1962
## 12461 1961
## 12462 1960
## 12463 2021
## 12464 2020
## 12465 2019
## 12466 2018
## 12467 2017
## 12468 2016
## 12469 2015
## 12470 2014
## 12471 2013
## 12472 2012
## 12473 2011
## 12474 2010
## 12475 2009
## 12476 2008
## 12477 2007
## 12478 2006
## 12479 2005
## 12480 2004
## 12481 2003
## 12482 2002
## 12483 2001
## 12484 2000
## 12485 1999
## 12486 1998
## 12487 1997
## 12488 1996
## 12489 1995
## 12490 1994
## 12491 1993
## 12492 1992
## 12493 1991
## 12494 1990
## 12495 1989
## 12496 1988
## 12497 1987
## 12498 1986
## 12499 1985
## 12500 1984
## 12501 1983
## 12502 1982
## 12503 1981
## 12504 1980
## 12505 1979
## 12506 1978
## 12507 1977
## 12508 1976
## 12509 1975
## 12510 1974
## 12511 1973
## 12512 1972
## 12513 1971
## 12514 1970
## 12515 1969
## 12516 1968
## 12517 1967
## 12518 1966
## 12519 1965
## 12520 1964
## 12521 1963
## 12522 1962
## 12523 1961
## 12524 1960
## 12525 2021
## 12526 2020
## 12527 2019
## 12528 2018
## 12529 2017
## 12530 2016
## 12531 2015
## 12532 2014
## 12533 2013
## 12534 2012
## 12535 2011
## 12536 2010
## 12537 2009
## 12538 2008
## 12539 2007
## 12540 2006
## 12541 2005
## 12542 2004
## 12543 2003
## 12544 2002
## 12545 2001
## 12546 2000
## 12547 1999
## 12548 1998
## 12549 1997
## 12550 1996
## 12551 1995
## 12552 1994
## 12553 1993
## 12554 1992
## 12555 1991
## 12556 1990
## 12557 1989
## 12558 1988
## 12559 1987
## 12560 1986
## 12561 1985
## 12562 1984
## 12563 1983
## 12564 1982
## 12565 1981
## 12566 1980
## 12567 1979
## 12568 1978
## 12569 1977
## 12570 1976
## 12571 1975
## 12572 1974
## 12573 1973
## 12574 1972
## 12575 1971
## 12576 1970
## 12577 1969
## 12578 1968
## 12579 1967
## 12580 1966
## 12581 1965
## 12582 1964
## 12583 1963
## 12584 1962
## 12585 1961
## 12586 1960
## 12587 2021
## 12588 2020
## 12589 2019
## 12590 2018
## 12591 2017
## 12592 2016
## 12593 2015
## 12594 2014
## 12595 2013
## 12596 2012
## 12597 2011
## 12598 2010
## 12599 2009
## 12600 2008
## 12601 2007
## 12602 2006
## 12603 2005
## 12604 2004
## 12605 2003
## 12606 2002
## 12607 2001
## 12608 2000
## 12609 1999
## 12610 1998
## 12611 1997
## 12612 1996
## 12613 1995
## 12614 1994
## 12615 1993
## 12616 1992
## 12617 1991
## 12618 1990
## 12619 1989
## 12620 1988
## 12621 1987
## 12622 1986
## 12623 1985
## 12624 1984
## 12625 1983
## 12626 1982
## 12627 1981
## 12628 1980
## 12629 1979
## 12630 1978
## 12631 1977
## 12632 1976
## 12633 1975
## 12634 1974
## 12635 1973
## 12636 1972
## 12637 1971
## 12638 1970
## 12639 1969
## 12640 1968
## 12641 1967
## 12642 1966
## 12643 1965
## 12644 1964
## 12645 1963
## 12646 1962
## 12647 1961
## 12648 1960
## 12649 2021
## 12650 2020
## 12651 2019
## 12652 2018
## 12653 2017
## 12654 2016
## 12655 2015
## 12656 2014
## 12657 2013
## 12658 2012
## 12659 2011
## 12660 2010
## 12661 2009
## 12662 2008
## 12663 2007
## 12664 2006
## 12665 2005
## 12666 2004
## 12667 2003
## 12668 2002
## 12669 2001
## 12670 2000
## 12671 1999
## 12672 1998
## 12673 1997
## 12674 1996
## 12675 1995
## 12676 1994
## 12677 1993
## 12678 1992
## 12679 1991
## 12680 1990
## 12681 1989
## 12682 1988
## 12683 1987
## 12684 1986
## 12685 1985
## 12686 1984
## 12687 1983
## 12688 1982
## 12689 1981
## 12690 1980
## 12691 1979
## 12692 1978
## 12693 1977
## 12694 1976
## 12695 1975
## 12696 1974
## 12697 1973
## 12698 1972
## 12699 1971
## 12700 1970
## 12701 1969
## 12702 1968
## 12703 1967
## 12704 1966
## 12705 1965
## 12706 1964
## 12707 1963
## 12708 1962
## 12709 1961
## 12710 1960
## 12711 2021
## 12712 2020
## 12713 2019
## 12714 2018
## 12715 2017
## 12716 2016
## 12717 2015
## 12718 2014
## 12719 2013
## 12720 2012
## 12721 2011
## 12722 2010
## 12723 2009
## 12724 2008
## 12725 2007
## 12726 2006
## 12727 2005
## 12728 2004
## 12729 2003
## 12730 2002
## 12731 2001
## 12732 2000
## 12733 1999
## 12734 1998
## 12735 1997
## 12736 1996
## 12737 1995
## 12738 1994
## 12739 1993
## 12740 1992
## 12741 1991
## 12742 1990
## 12743 1989
## 12744 1988
## 12745 1987
## 12746 1986
## 12747 1985
## 12748 1984
## 12749 1983
## 12750 1982
## 12751 1981
## 12752 1980
## 12753 1979
## 12754 1978
## 12755 1977
## 12756 1976
## 12757 1975
## 12758 1974
## 12759 1973
## 12760 1972
## 12761 1971
## 12762 1970
## 12763 1969
## 12764 1968
## 12765 1967
## 12766 1966
## 12767 1965
## 12768 1964
## 12769 1963
## 12770 1962
## 12771 1961
## 12772 1960
## 12773 2021
## 12774 2020
## 12775 2019
## 12776 2018
## 12777 2017
## 12778 2016
## 12779 2015
## 12780 2014
## 12781 2013
## 12782 2012
## 12783 2011
## 12784 2010
## 12785 2009
## 12786 2008
## 12787 2007
## 12788 2006
## 12789 2005
## 12790 2004
## 12791 2003
## 12792 2002
## 12793 2001
## 12794 2000
## 12795 1999
## 12796 1998
## 12797 1997
## 12798 1996
## 12799 1995
## 12800 1994
## 12801 1993
## 12802 1992
## 12803 1991
## 12804 1990
## 12805 1989
## 12806 1988
## 12807 1987
## 12808 1986
## 12809 1985
## 12810 1984
## 12811 1983
## 12812 1982
## 12813 1981
## 12814 1980
## 12815 1979
## 12816 1978
## 12817 1977
## 12818 1976
## 12819 1975
## 12820 1974
## 12821 1973
## 12822 1972
## 12823 1971
## 12824 1970
## 12825 1969
## 12826 1968
## 12827 1967
## 12828 1966
## 12829 1965
## 12830 1964
## 12831 1963
## 12832 1962
## 12833 1961
## 12834 1960
## 12835 2021
## 12836 2020
## 12837 2019
## 12838 2018
## 12839 2017
## 12840 2016
## 12841 2015
## 12842 2014
## 12843 2013
## 12844 2012
## 12845 2011
## 12846 2010
## 12847 2009
## 12848 2008
## 12849 2007
## 12850 2006
## 12851 2005
## 12852 2004
## 12853 2003
## 12854 2002
## 12855 2001
## 12856 2000
## 12857 1999
## 12858 1998
## 12859 1997
## 12860 1996
## 12861 1995
## 12862 1994
## 12863 1993
## 12864 1992
## 12865 1991
## 12866 1990
## 12867 1989
## 12868 1988
## 12869 1987
## 12870 1986
## 12871 1985
## 12872 1984
## 12873 1983
## 12874 1982
## 12875 1981
## 12876 1980
## 12877 1979
## 12878 1978
## 12879 1977
## 12880 1976
## 12881 1975
## 12882 1974
## 12883 1973
## 12884 1972
## 12885 1971
## 12886 1970
## 12887 1969
## 12888 1968
## 12889 1967
## 12890 1966
## 12891 1965
## 12892 1964
## 12893 1963
## 12894 1962
## 12895 1961
## 12896 1960
## 12897 2021
## 12898 2020
## 12899 2019
## 12900 2018
## 12901 2017
## 12902 2016
## 12903 2015
## 12904 2014
## 12905 2013
## 12906 2012
## 12907 2011
## 12908 2010
## 12909 2009
## 12910 2008
## 12911 2007
## 12912 2006
## 12913 2005
## 12914 2004
## 12915 2003
## 12916 2002
## 12917 2001
## 12918 2000
## 12919 1999
## 12920 1998
## 12921 1997
## 12922 1996
## 12923 1995
## 12924 1994
## 12925 1993
## 12926 1992
## 12927 1991
## 12928 1990
## 12929 1989
## 12930 1988
## 12931 1987
## 12932 1986
## 12933 1985
## 12934 1984
## 12935 1983
## 12936 1982
## 12937 1981
## 12938 1980
## 12939 1979
## 12940 1978
## 12941 1977
## 12942 1976
## 12943 1975
## 12944 1974
## 12945 1973
## 12946 1972
## 12947 1971
## 12948 1970
## 12949 1969
## 12950 1968
## 12951 1967
## 12952 1966
## 12953 1965
## 12954 1964
## 12955 1963
## 12956 1962
## 12957 1961
## 12958 1960
## 12959 2021
## 12960 2020
## 12961 2019
## 12962 2018
## 12963 2017
## 12964 2016
## 12965 2015
## 12966 2014
## 12967 2013
## 12968 2012
## 12969 2011
## 12970 2010
## 12971 2009
## 12972 2008
## 12973 2007
## 12974 2006
## 12975 2005
## 12976 2004
## 12977 2003
## 12978 2002
## 12979 2001
## 12980 2000
## 12981 1999
## 12982 1998
## 12983 1997
## 12984 1996
## 12985 1995
## 12986 1994
## 12987 1993
## 12988 1992
## 12989 1991
## 12990 1990
## 12991 1989
## 12992 1988
## 12993 1987
## 12994 1986
## 12995 1985
## 12996 1984
## 12997 1983
## 12998 1982
## 12999 1981
## 13000 1980
## 13001 1979
## 13002 1978
## 13003 1977
## 13004 1976
## 13005 1975
## 13006 1974
## 13007 1973
## 13008 1972
## 13009 1971
## 13010 1970
## 13011 1969
## 13012 1968
## 13013 1967
## 13014 1966
## 13015 1965
## 13016 1964
## 13017 1963
## 13018 1962
## 13019 1961
## 13020 1960
## 13021 2021
## 13022 2020
## 13023 2019
## 13024 2018
## 13025 2017
## 13026 2016
## 13027 2015
## 13028 2014
## 13029 2013
## 13030 2012
## 13031 2011
## 13032 2010
## 13033 2009
## 13034 2008
## 13035 2007
## 13036 2006
## 13037 2005
## 13038 2004
## 13039 2003
## 13040 2002
## 13041 2001
## 13042 2000
## 13043 1999
## 13044 1998
## 13045 1997
## 13046 1996
## 13047 1995
## 13048 1994
## 13049 1993
## 13050 1992
## 13051 1991
## 13052 1990
## 13053 1989
## 13054 1988
## 13055 1987
## 13056 1986
## 13057 1985
## 13058 1984
## 13059 1983
## 13060 1982
## 13061 1981
## 13062 1980
## 13063 1979
## 13064 1978
## 13065 1977
## 13066 1976
## 13067 1975
## 13068 1974
## 13069 1973
## 13070 1972
## 13071 1971
## 13072 1970
## 13073 1969
## 13074 1968
## 13075 1967
## 13076 1966
## 13077 1965
## 13078 1964
## 13079 1963
## 13080 1962
## 13081 1961
## 13082 1960
## 13083 2021
## 13084 2020
## 13085 2019
## 13086 2018
## 13087 2017
## 13088 2016
## 13089 2015
## 13090 2014
## 13091 2013
## 13092 2012
## 13093 2011
## 13094 2010
## 13095 2009
## 13096 2008
## 13097 2007
## 13098 2006
## 13099 2005
## 13100 2004
## 13101 2003
## 13102 2002
## 13103 2001
## 13104 2000
## 13105 1999
## 13106 1998
## 13107 1997
## 13108 1996
## 13109 1995
## 13110 1994
## 13111 1993
## 13112 1992
## 13113 1991
## 13114 1990
## 13115 1989
## 13116 1988
## 13117 1987
## 13118 1986
## 13119 1985
## 13120 1984
## 13121 1983
## 13122 1982
## 13123 1981
## 13124 1980
## 13125 1979
## 13126 1978
## 13127 1977
## 13128 1976
## 13129 1975
## 13130 1974
## 13131 1973
## 13132 1972
## 13133 1971
## 13134 1970
## 13135 1969
## 13136 1968
## 13137 1967
## 13138 1966
## 13139 1965
## 13140 1964
## 13141 1963
## 13142 1962
## 13143 1961
## 13144 1960
## 13145 2021
## 13146 2020
## 13147 2019
## 13148 2018
## 13149 2017
## 13150 2016
## 13151 2015
## 13152 2014
## 13153 2013
## 13154 2012
## 13155 2011
## 13156 2010
## 13157 2009
## 13158 2008
## 13159 2007
## 13160 2006
## 13161 2005
## 13162 2004
## 13163 2003
## 13164 2002
## 13165 2001
## 13166 2000
## 13167 1999
## 13168 1998
## 13169 1997
## 13170 1996
## 13171 1995
## 13172 1994
## 13173 1993
## 13174 1992
## 13175 1991
## 13176 1990
## 13177 1989
## 13178 1988
## 13179 1987
## 13180 1986
## 13181 1985
## 13182 1984
## 13183 1983
## 13184 1982
## 13185 1981
## 13186 1980
## 13187 1979
## 13188 1978
## 13189 1977
## 13190 1976
## 13191 1975
## 13192 1974
## 13193 1973
## 13194 1972
## 13195 1971
## 13196 1970
## 13197 1969
## 13198 1968
## 13199 1967
## 13200 1966
## 13201 1965
## 13202 1964
## 13203 1963
## 13204 1962
## 13205 1961
## 13206 1960
## 13207 2021
## 13208 2020
## 13209 2019
## 13210 2018
## 13211 2017
## 13212 2016
## 13213 2015
## 13214 2014
## 13215 2013
## 13216 2012
## 13217 2011
## 13218 2010
## 13219 2009
## 13220 2008
## 13221 2007
## 13222 2006
## 13223 2005
## 13224 2004
## 13225 2003
## 13226 2002
## 13227 2001
## 13228 2000
## 13229 1999
## 13230 1998
## 13231 1997
## 13232 1996
## 13233 1995
## 13234 1994
## 13235 1993
## 13236 1992
## 13237 1991
## 13238 1990
## 13239 1989
## 13240 1988
## 13241 1987
## 13242 1986
## 13243 1985
## 13244 1984
## 13245 1983
## 13246 1982
## 13247 1981
## 13248 1980
## 13249 1979
## 13250 1978
## 13251 1977
## 13252 1976
## 13253 1975
## 13254 1974
## 13255 1973
## 13256 1972
## 13257 1971
## 13258 1970
## 13259 1969
## 13260 1968
## 13261 1967
## 13262 1966
## 13263 1965
## 13264 1964
## 13265 1963
## 13266 1962
## 13267 1961
## 13268 1960
## 13269 2021
## 13270 2020
## 13271 2019
## 13272 2018
## 13273 2017
## 13274 2016
## 13275 2015
## 13276 2014
## 13277 2013
## 13278 2012
## 13279 2011
## 13280 2010
## 13281 2009
## 13282 2008
## 13283 2007
## 13284 2006
## 13285 2005
## 13286 2004
## 13287 2003
## 13288 2002
## 13289 2001
## 13290 2000
## 13291 1999
## 13292 1998
## 13293 1997
## 13294 1996
## 13295 1995
## 13296 1994
## 13297 1993
## 13298 1992
## 13299 1991
## 13300 1990
## 13301 1989
## 13302 1988
## 13303 1987
## 13304 1986
## 13305 1985
## 13306 1984
## 13307 1983
## 13308 1982
## 13309 1981
## 13310 1980
## 13311 1979
## 13312 1978
## 13313 1977
## 13314 1976
## 13315 1975
## 13316 1974
## 13317 1973
## 13318 1972
## 13319 1971
## 13320 1970
## 13321 1969
## 13322 1968
## 13323 1967
## 13324 1966
## 13325 1965
## 13326 1964
## 13327 1963
## 13328 1962
## 13329 1961
## 13330 1960
## 13331 2021
## 13332 2020
## 13333 2019
## 13334 2018
## 13335 2017
## 13336 2016
## 13337 2015
## 13338 2014
## 13339 2013
## 13340 2012
## 13341 2011
## 13342 2010
## 13343 2009
## 13344 2008
## 13345 2007
## 13346 2006
## 13347 2005
## 13348 2004
## 13349 2003
## 13350 2002
## 13351 2001
## 13352 2000
## 13353 1999
## 13354 1998
## 13355 1997
## 13356 1996
## 13357 1995
## 13358 1994
## 13359 1993
## 13360 1992
## 13361 1991
## 13362 1990
## 13363 1989
## 13364 1988
## 13365 1987
## 13366 1986
## 13367 1985
## 13368 1984
## 13369 1983
## 13370 1982
## 13371 1981
## 13372 1980
## 13373 1979
## 13374 1978
## 13375 1977
## 13376 1976
## 13377 1975
## 13378 1974
## 13379 1973
## 13380 1972
## 13381 1971
## 13382 1970
## 13383 1969
## 13384 1968
## 13385 1967
## 13386 1966
## 13387 1965
## 13388 1964
## 13389 1963
## 13390 1962
## 13391 1961
## 13392 1960
## 13393 2021
## 13394 2020
## 13395 2019
## 13396 2018
## 13397 2017
## 13398 2016
## 13399 2015
## 13400 2014
## 13401 2013
## 13402 2012
## 13403 2011
## 13404 2010
## 13405 2009
## 13406 2008
## 13407 2007
## 13408 2006
## 13409 2005
## 13410 2004
## 13411 2003
## 13412 2002
## 13413 2001
## 13414 2000
## 13415 1999
## 13416 1998
## 13417 1997
## 13418 1996
## 13419 1995
## 13420 1994
## 13421 1993
## 13422 1992
## 13423 1991
## 13424 1990
## 13425 1989
## 13426 1988
## 13427 1987
## 13428 1986
## 13429 1985
## 13430 1984
## 13431 1983
## 13432 1982
## 13433 1981
## 13434 1980
## 13435 1979
## 13436 1978
## 13437 1977
## 13438 1976
## 13439 1975
## 13440 1974
## 13441 1973
## 13442 1972
## 13443 1971
## 13444 1970
## 13445 1969
## 13446 1968
## 13447 1967
## 13448 1966
## 13449 1965
## 13450 1964
## 13451 1963
## 13452 1962
## 13453 1961
## 13454 1960
## 13455 2021
## 13456 2020
## 13457 2019
## 13458 2018
## 13459 2017
## 13460 2016
## 13461 2015
## 13462 2014
## 13463 2013
## 13464 2012
## 13465 2011
## 13466 2010
## 13467 2009
## 13468 2008
## 13469 2007
## 13470 2006
## 13471 2005
## 13472 2004
## 13473 2003
## 13474 2002
## 13475 2001
## 13476 2000
## 13477 1999
## 13478 1998
## 13479 1997
## 13480 1996
## 13481 1995
## 13482 1994
## 13483 1993
## 13484 1992
## 13485 1991
## 13486 1990
## 13487 1989
## 13488 1988
## 13489 1987
## 13490 1986
## 13491 1985
## 13492 1984
## 13493 1983
## 13494 1982
## 13495 1981
## 13496 1980
## 13497 1979
## 13498 1978
## 13499 1977
## 13500 1976
## 13501 1975
## 13502 1974
## 13503 1973
## 13504 1972
## 13505 1971
## 13506 1970
## 13507 1969
## 13508 1968
## 13509 1967
## 13510 1966
## 13511 1965
## 13512 1964
## 13513 1963
## 13514 1962
## 13515 1961
## 13516 1960
## 13517 2021
## 13518 2020
## 13519 2019
## 13520 2018
## 13521 2017
## 13522 2016
## 13523 2015
## 13524 2014
## 13525 2013
## 13526 2012
## 13527 2011
## 13528 2010
## 13529 2009
## 13530 2008
## 13531 2007
## 13532 2006
## 13533 2005
## 13534 2004
## 13535 2003
## 13536 2002
## 13537 2001
## 13538 2000
## 13539 1999
## 13540 1998
## 13541 1997
## 13542 1996
## 13543 1995
## 13544 1994
## 13545 1993
## 13546 1992
## 13547 1991
## 13548 1990
## 13549 1989
## 13550 1988
## 13551 1987
## 13552 1986
## 13553 1985
## 13554 1984
## 13555 1983
## 13556 1982
## 13557 1981
## 13558 1980
## 13559 1979
## 13560 1978
## 13561 1977
## 13562 1976
## 13563 1975
## 13564 1974
## 13565 1973
## 13566 1972
## 13567 1971
## 13568 1970
## 13569 1969
## 13570 1968
## 13571 1967
## 13572 1966
## 13573 1965
## 13574 1964
## 13575 1963
## 13576 1962
## 13577 1961
## 13578 1960
## 13579 2021
## 13580 2020
## 13581 2019
## 13582 2018
## 13583 2017
## 13584 2016
## 13585 2015
## 13586 2014
## 13587 2013
## 13588 2012
## 13589 2011
## 13590 2010
## 13591 2009
## 13592 2008
## 13593 2007
## 13594 2006
## 13595 2005
## 13596 2004
## 13597 2003
## 13598 2002
## 13599 2001
## 13600 2000
## 13601 1999
## 13602 1998
## 13603 1997
## 13604 1996
## 13605 1995
## 13606 1994
## 13607 1993
## 13608 1992
## 13609 1991
## 13610 1990
## 13611 1989
## 13612 1988
## 13613 1987
## 13614 1986
## 13615 1985
## 13616 1984
## 13617 1983
## 13618 1982
## 13619 1981
## 13620 1980
## 13621 1979
## 13622 1978
## 13623 1977
## 13624 1976
## 13625 1975
## 13626 1974
## 13627 1973
## 13628 1972
## 13629 1971
## 13630 1970
## 13631 1969
## 13632 1968
## 13633 1967
## 13634 1966
## 13635 1965
## 13636 1964
## 13637 1963
## 13638 1962
## 13639 1961
## 13640 1960
## 13641 2021
## 13642 2020
## 13643 2019
## 13644 2018
## 13645 2017
## 13646 2016
## 13647 2015
## 13648 2014
## 13649 2013
## 13650 2012
## 13651 2011
## 13652 2010
## 13653 2009
## 13654 2008
## 13655 2007
## 13656 2006
## 13657 2005
## 13658 2004
## 13659 2003
## 13660 2002
## 13661 2001
## 13662 2000
## 13663 1999
## 13664 1998
## 13665 1997
## 13666 1996
## 13667 1995
## 13668 1994
## 13669 1993
## 13670 1992
## 13671 1991
## 13672 1990
## 13673 1989
## 13674 1988
## 13675 1987
## 13676 1986
## 13677 1985
## 13678 1984
## 13679 1983
## 13680 1982
## 13681 1981
## 13682 1980
## 13683 1979
## 13684 1978
## 13685 1977
## 13686 1976
## 13687 1975
## 13688 1974
## 13689 1973
## 13690 1972
## 13691 1971
## 13692 1970
## 13693 1969
## 13694 1968
## 13695 1967
## 13696 1966
## 13697 1965
## 13698 1964
## 13699 1963
## 13700 1962
## 13701 1961
## 13702 1960
## 13703 2021
## 13704 2020
## 13705 2019
## 13706 2018
## 13707 2017
## 13708 2016
## 13709 2015
## 13710 2014
## 13711 2013
## 13712 2012
## 13713 2011
## 13714 2010
## 13715 2009
## 13716 2008
## 13717 2007
## 13718 2006
## 13719 2005
## 13720 2004
## 13721 2003
## 13722 2002
## 13723 2001
## 13724 2000
## 13725 1999
## 13726 1998
## 13727 1997
## 13728 1996
## 13729 1995
## 13730 1994
## 13731 1993
## 13732 1992
## 13733 1991
## 13734 1990
## 13735 1989
## 13736 1988
## 13737 1987
## 13738 1986
## 13739 1985
## 13740 1984
## 13741 1983
## 13742 1982
## 13743 1981
## 13744 1980
## 13745 1979
## 13746 1978
## 13747 1977
## 13748 1976
## 13749 1975
## 13750 1974
## 13751 1973
## 13752 1972
## 13753 1971
## 13754 1970
## 13755 1969
## 13756 1968
## 13757 1967
## 13758 1966
## 13759 1965
## 13760 1964
## 13761 1963
## 13762 1962
## 13763 1961
## 13764 1960
## 13765 2021
## 13766 2020
## 13767 2019
## 13768 2018
## 13769 2017
## 13770 2016
## 13771 2015
## 13772 2014
## 13773 2013
## 13774 2012
## 13775 2011
## 13776 2010
## 13777 2009
## 13778 2008
## 13779 2007
## 13780 2006
## 13781 2005
## 13782 2004
## 13783 2003
## 13784 2002
## 13785 2001
## 13786 2000
## 13787 1999
## 13788 1998
## 13789 1997
## 13790 1996
## 13791 1995
## 13792 1994
## 13793 1993
## 13794 1992
## 13795 1991
## 13796 1990
## 13797 1989
## 13798 1988
## 13799 1987
## 13800 1986
## 13801 1985
## 13802 1984
## 13803 1983
## 13804 1982
## 13805 1981
## 13806 1980
## 13807 1979
## 13808 1978
## 13809 1977
## 13810 1976
## 13811 1975
## 13812 1974
## 13813 1973
## 13814 1972
## 13815 1971
## 13816 1970
## 13817 1969
## 13818 1968
## 13819 1967
## 13820 1966
## 13821 1965
## 13822 1964
## 13823 1963
## 13824 1962
## 13825 1961
## 13826 1960
## 13827 2021
## 13828 2020
## 13829 2019
## 13830 2018
## 13831 2017
## 13832 2016
## 13833 2015
## 13834 2014
## 13835 2013
## 13836 2012
## 13837 2011
## 13838 2010
## 13839 2009
## 13840 2008
## 13841 2007
## 13842 2006
## 13843 2005
## 13844 2004
## 13845 2003
## 13846 2002
## 13847 2001
## 13848 2000
## 13849 1999
## 13850 1998
## 13851 1997
## 13852 1996
## 13853 1995
## 13854 1994
## 13855 1993
## 13856 1992
## 13857 1991
## 13858 1990
## 13859 1989
## 13860 1988
## 13861 1987
## 13862 1986
## 13863 1985
## 13864 1984
## 13865 1983
## 13866 1982
## 13867 1981
## 13868 1980
## 13869 1979
## 13870 1978
## 13871 1977
## 13872 1976
## 13873 1975
## 13874 1974
## 13875 1973
## 13876 1972
## 13877 1971
## 13878 1970
## 13879 1969
## 13880 1968
## 13881 1967
## 13882 1966
## 13883 1965
## 13884 1964
## 13885 1963
## 13886 1962
## 13887 1961
## 13888 1960
## 13889 2021
## 13890 2020
## 13891 2019
## 13892 2018
## 13893 2017
## 13894 2016
## 13895 2015
## 13896 2014
## 13897 2013
## 13898 2012
## 13899 2011
## 13900 2010
## 13901 2009
## 13902 2008
## 13903 2007
## 13904 2006
## 13905 2005
## 13906 2004
## 13907 2003
## 13908 2002
## 13909 2001
## 13910 2000
## 13911 1999
## 13912 1998
## 13913 1997
## 13914 1996
## 13915 1995
## 13916 1994
## 13917 1993
## 13918 1992
## 13919 1991
## 13920 1990
## 13921 1989
## 13922 1988
## 13923 1987
## 13924 1986
## 13925 1985
## 13926 1984
## 13927 1983
## 13928 1982
## 13929 1981
## 13930 1980
## 13931 1979
## 13932 1978
## 13933 1977
## 13934 1976
## 13935 1975
## 13936 1974
## 13937 1973
## 13938 1972
## 13939 1971
## 13940 1970
## 13941 1969
## 13942 1968
## 13943 1967
## 13944 1966
## 13945 1965
## 13946 1964
## 13947 1963
## 13948 1962
## 13949 1961
## 13950 1960
## 13951 2021
## 13952 2020
## 13953 2019
## 13954 2018
## 13955 2017
## 13956 2016
## 13957 2015
## 13958 2014
## 13959 2013
## 13960 2012
## 13961 2011
## 13962 2010
## 13963 2009
## 13964 2008
## 13965 2007
## 13966 2006
## 13967 2005
## 13968 2004
## 13969 2003
## 13970 2002
## 13971 2001
## 13972 2000
## 13973 1999
## 13974 1998
## 13975 1997
## 13976 1996
## 13977 1995
## 13978 1994
## 13979 1993
## 13980 1992
## 13981 1991
## 13982 1990
## 13983 1989
## 13984 1988
## 13985 1987
## 13986 1986
## 13987 1985
## 13988 1984
## 13989 1983
## 13990 1982
## 13991 1981
## 13992 1980
## 13993 1979
## 13994 1978
## 13995 1977
## 13996 1976
## 13997 1975
## 13998 1974
## 13999 1973
## 14000 1972
## 14001 1971
## 14002 1970
## 14003 1969
## 14004 1968
## 14005 1967
## 14006 1966
## 14007 1965
## 14008 1964
## 14009 1963
## 14010 1962
## 14011 1961
## 14012 1960
## 14013 2021
## 14014 2020
## 14015 2019
## 14016 2018
## 14017 2017
## 14018 2016
## 14019 2015
## 14020 2014
## 14021 2013
## 14022 2012
## 14023 2011
## 14024 2010
## 14025 2009
## 14026 2008
## 14027 2007
## 14028 2006
## 14029 2005
## 14030 2004
## 14031 2003
## 14032 2002
## 14033 2001
## 14034 2000
## 14035 1999
## 14036 1998
## 14037 1997
## 14038 1996
## 14039 1995
## 14040 1994
## 14041 1993
## 14042 1992
## 14043 1991
## 14044 1990
## 14045 1989
## 14046 1988
## 14047 1987
## 14048 1986
## 14049 1985
## 14050 1984
## 14051 1983
## 14052 1982
## 14053 1981
## 14054 1980
## 14055 1979
## 14056 1978
## 14057 1977
## 14058 1976
## 14059 1975
## 14060 1974
## 14061 1973
## 14062 1972
## 14063 1971
## 14064 1970
## 14065 1969
## 14066 1968
## 14067 1967
## 14068 1966
## 14069 1965
## 14070 1964
## 14071 1963
## 14072 1962
## 14073 1961
## 14074 1960
## 14075 2021
## 14076 2020
## 14077 2019
## 14078 2018
## 14079 2017
## 14080 2016
## 14081 2015
## 14082 2014
## 14083 2013
## 14084 2012
## 14085 2011
## 14086 2010
## 14087 2009
## 14088 2008
## 14089 2007
## 14090 2006
## 14091 2005
## 14092 2004
## 14093 2003
## 14094 2002
## 14095 2001
## 14096 2000
## 14097 1999
## 14098 1998
## 14099 1997
## 14100 1996
## 14101 1995
## 14102 1994
## 14103 1993
## 14104 1992
## 14105 1991
## 14106 1990
## 14107 1989
## 14108 1988
## 14109 1987
## 14110 1986
## 14111 1985
## 14112 1984
## 14113 1983
## 14114 1982
## 14115 1981
## 14116 1980
## 14117 1979
## 14118 1978
## 14119 1977
## 14120 1976
## 14121 1975
## 14122 1974
## 14123 1973
## 14124 1972
## 14125 1971
## 14126 1970
## 14127 1969
## 14128 1968
## 14129 1967
## 14130 1966
## 14131 1965
## 14132 1964
## 14133 1963
## 14134 1962
## 14135 1961
## 14136 1960
## 14137 2021
## 14138 2020
## 14139 2019
## 14140 2018
## 14141 2017
## 14142 2016
## 14143 2015
## 14144 2014
## 14145 2013
## 14146 2012
## 14147 2011
## 14148 2010
## 14149 2009
## 14150 2008
## 14151 2007
## 14152 2006
## 14153 2005
## 14154 2004
## 14155 2003
## 14156 2002
## 14157 2001
## 14158 2000
## 14159 1999
## 14160 1998
## 14161 1997
## 14162 1996
## 14163 1995
## 14164 1994
## 14165 1993
## 14166 1992
## 14167 1991
## 14168 1990
## 14169 1989
## 14170 1988
## 14171 1987
## 14172 1986
## 14173 1985
## 14174 1984
## 14175 1983
## 14176 1982
## 14177 1981
## 14178 1980
## 14179 1979
## 14180 1978
## 14181 1977
## 14182 1976
## 14183 1975
## 14184 1974
## 14185 1973
## 14186 1972
## 14187 1971
## 14188 1970
## 14189 1969
## 14190 1968
## 14191 1967
## 14192 1966
## 14193 1965
## 14194 1964
## 14195 1963
## 14196 1962
## 14197 1961
## 14198 1960
## 14199 2021
## 14200 2020
## 14201 2019
## 14202 2018
## 14203 2017
## 14204 2016
## 14205 2015
## 14206 2014
## 14207 2013
## 14208 2012
## 14209 2011
## 14210 2010
## 14211 2009
## 14212 2008
## 14213 2007
## 14214 2006
## 14215 2005
## 14216 2004
## 14217 2003
## 14218 2002
## 14219 2001
## 14220 2000
## 14221 1999
## 14222 1998
## 14223 1997
## 14224 1996
## 14225 1995
## 14226 1994
## 14227 1993
## 14228 1992
## 14229 1991
## 14230 1990
## 14231 1989
## 14232 1988
## 14233 1987
## 14234 1986
## 14235 1985
## 14236 1984
## 14237 1983
## 14238 1982
## 14239 1981
## 14240 1980
## 14241 1979
## 14242 1978
## 14243 1977
## 14244 1976
## 14245 1975
## 14246 1974
## 14247 1973
## 14248 1972
## 14249 1971
## 14250 1970
## 14251 1969
## 14252 1968
## 14253 1967
## 14254 1966
## 14255 1965
## 14256 1964
## 14257 1963
## 14258 1962
## 14259 1961
## 14260 1960
## 14261 2021
## 14262 2020
## 14263 2019
## 14264 2018
## 14265 2017
## 14266 2016
## 14267 2015
## 14268 2014
## 14269 2013
## 14270 2012
## 14271 2011
## 14272 2010
## 14273 2009
## 14274 2008
## 14275 2007
## 14276 2006
## 14277 2005
## 14278 2004
## 14279 2003
## 14280 2002
## 14281 2001
## 14282 2000
## 14283 1999
## 14284 1998
## 14285 1997
## 14286 1996
## 14287 1995
## 14288 1994
## 14289 1993
## 14290 1992
## 14291 1991
## 14292 1990
## 14293 1989
## 14294 1988
## 14295 1987
## 14296 1986
## 14297 1985
## 14298 1984
## 14299 1983
## 14300 1982
## 14301 1981
## 14302 1980
## 14303 1979
## 14304 1978
## 14305 1977
## 14306 1976
## 14307 1975
## 14308 1974
## 14309 1973
## 14310 1972
## 14311 1971
## 14312 1970
## 14313 1969
## 14314 1968
## 14315 1967
## 14316 1966
## 14317 1965
## 14318 1964
## 14319 1963
## 14320 1962
## 14321 1961
## 14322 1960
## 14323 2021
## 14324 2020
## 14325 2019
## 14326 2018
## 14327 2017
## 14328 2016
## 14329 2015
## 14330 2014
## 14331 2013
## 14332 2012
## 14333 2011
## 14334 2010
## 14335 2009
## 14336 2008
## 14337 2007
## 14338 2006
## 14339 2005
## 14340 2004
## 14341 2003
## 14342 2002
## 14343 2001
## 14344 2000
## 14345 1999
## 14346 1998
## 14347 1997
## 14348 1996
## 14349 1995
## 14350 1994
## 14351 1993
## 14352 1992
## 14353 1991
## 14354 1990
## 14355 1989
## 14356 1988
## 14357 1987
## 14358 1986
## 14359 1985
## 14360 1984
## 14361 1983
## 14362 1982
## 14363 1981
## 14364 1980
## 14365 1979
## 14366 1978
## 14367 1977
## 14368 1976
## 14369 1975
## 14370 1974
## 14371 1973
## 14372 1972
## 14373 1971
## 14374 1970
## 14375 1969
## 14376 1968
## 14377 1967
## 14378 1966
## 14379 1965
## 14380 1964
## 14381 1963
## 14382 1962
## 14383 1961
## 14384 1960
## 14385 2021
## 14386 2020
## 14387 2019
## 14388 2018
## 14389 2017
## 14390 2016
## 14391 2015
## 14392 2014
## 14393 2013
## 14394 2012
## 14395 2011
## 14396 2010
## 14397 2009
## 14398 2008
## 14399 2007
## 14400 2006
## 14401 2005
## 14402 2004
## 14403 2003
## 14404 2002
## 14405 2001
## 14406 2000
## 14407 1999
## 14408 1998
## 14409 1997
## 14410 1996
## 14411 1995
## 14412 1994
## 14413 1993
## 14414 1992
## 14415 1991
## 14416 1990
## 14417 1989
## 14418 1988
## 14419 1987
## 14420 1986
## 14421 1985
## 14422 1984
## 14423 1983
## 14424 1982
## 14425 1981
## 14426 1980
## 14427 1979
## 14428 1978
## 14429 1977
## 14430 1976
## 14431 1975
## 14432 1974
## 14433 1973
## 14434 1972
## 14435 1971
## 14436 1970
## 14437 1969
## 14438 1968
## 14439 1967
## 14440 1966
## 14441 1965
## 14442 1964
## 14443 1963
## 14444 1962
## 14445 1961
## 14446 1960
## 14447 2021
## 14448 2020
## 14449 2019
## 14450 2018
## 14451 2017
## 14452 2016
## 14453 2015
## 14454 2014
## 14455 2013
## 14456 2012
## 14457 2011
## 14458 2010
## 14459 2009
## 14460 2008
## 14461 2007
## 14462 2006
## 14463 2005
## 14464 2004
## 14465 2003
## 14466 2002
## 14467 2001
## 14468 2000
## 14469 1999
## 14470 1998
## 14471 1997
## 14472 1996
## 14473 1995
## 14474 1994
## 14475 1993
## 14476 1992
## 14477 1991
## 14478 1990
## 14479 1989
## 14480 1988
## 14481 1987
## 14482 1986
## 14483 1985
## 14484 1984
## 14485 1983
## 14486 1982
## 14487 1981
## 14488 1980
## 14489 1979
## 14490 1978
## 14491 1977
## 14492 1976
## 14493 1975
## 14494 1974
## 14495 1973
## 14496 1972
## 14497 1971
## 14498 1970
## 14499 1969
## 14500 1968
## 14501 1967
## 14502 1966
## 14503 1965
## 14504 1964
## 14505 1963
## 14506 1962
## 14507 1961
## 14508 1960
## 14509 2021
## 14510 2020
## 14511 2019
## 14512 2018
## 14513 2017
## 14514 2016
## 14515 2015
## 14516 2014
## 14517 2013
## 14518 2012
## 14519 2011
## 14520 2010
## 14521 2009
## 14522 2008
## 14523 2007
## 14524 2006
## 14525 2005
## 14526 2004
## 14527 2003
## 14528 2002
## 14529 2001
## 14530 2000
## 14531 1999
## 14532 1998
## 14533 1997
## 14534 1996
## 14535 1995
## 14536 1994
## 14537 1993
## 14538 1992
## 14539 1991
## 14540 1990
## 14541 1989
## 14542 1988
## 14543 1987
## 14544 1986
## 14545 1985
## 14546 1984
## 14547 1983
## 14548 1982
## 14549 1981
## 14550 1980
## 14551 1979
## 14552 1978
## 14553 1977
## 14554 1976
## 14555 1975
## 14556 1974
## 14557 1973
## 14558 1972
## 14559 1971
## 14560 1970
## 14561 1969
## 14562 1968
## 14563 1967
## 14564 1966
## 14565 1965
## 14566 1964
## 14567 1963
## 14568 1962
## 14569 1961
## 14570 1960
## 14571 2021
## 14572 2020
## 14573 2019
## 14574 2018
## 14575 2017
## 14576 2016
## 14577 2015
## 14578 2014
## 14579 2013
## 14580 2012
## 14581 2011
## 14582 2010
## 14583 2009
## 14584 2008
## 14585 2007
## 14586 2006
## 14587 2005
## 14588 2004
## 14589 2003
## 14590 2002
## 14591 2001
## 14592 2000
## 14593 1999
## 14594 1998
## 14595 1997
## 14596 1996
## 14597 1995
## 14598 1994
## 14599 1993
## 14600 1992
## 14601 1991
## 14602 1990
## 14603 1989
## 14604 1988
## 14605 1987
## 14606 1986
## 14607 1985
## 14608 1984
## 14609 1983
## 14610 1982
## 14611 1981
## 14612 1980
## 14613 1979
## 14614 1978
## 14615 1977
## 14616 1976
## 14617 1975
## 14618 1974
## 14619 1973
## 14620 1972
## 14621 1971
## 14622 1970
## 14623 1969
## 14624 1968
## 14625 1967
## 14626 1966
## 14627 1965
## 14628 1964
## 14629 1963
## 14630 1962
## 14631 1961
## 14632 1960
## 14633 2021
## 14634 2020
## 14635 2019
## 14636 2018
## 14637 2017
## 14638 2016
## 14639 2015
## 14640 2014
## 14641 2013
## 14642 2012
## 14643 2011
## 14644 2010
## 14645 2009
## 14646 2008
## 14647 2007
## 14648 2006
## 14649 2005
## 14650 2004
## 14651 2003
## 14652 2002
## 14653 2001
## 14654 2000
## 14655 1999
## 14656 1998
## 14657 1997
## 14658 1996
## 14659 1995
## 14660 1994
## 14661 1993
## 14662 1992
## 14663 1991
## 14664 1990
## 14665 1989
## 14666 1988
## 14667 1987
## 14668 1986
## 14669 1985
## 14670 1984
## 14671 1983
## 14672 1982
## 14673 1981
## 14674 1980
## 14675 1979
## 14676 1978
## 14677 1977
## 14678 1976
## 14679 1975
## 14680 1974
## 14681 1973
## 14682 1972
## 14683 1971
## 14684 1970
## 14685 1969
## 14686 1968
## 14687 1967
## 14688 1966
## 14689 1965
## 14690 1964
## 14691 1963
## 14692 1962
## 14693 1961
## 14694 1960
## 14695 2021
## 14696 2020
## 14697 2019
## 14698 2018
## 14699 2017
## 14700 2016
## 14701 2015
## 14702 2014
## 14703 2013
## 14704 2012
## 14705 2011
## 14706 2010
## 14707 2009
## 14708 2008
## 14709 2007
## 14710 2006
## 14711 2005
## 14712 2004
## 14713 2003
## 14714 2002
## 14715 2001
## 14716 2000
## 14717 1999
## 14718 1998
## 14719 1997
## 14720 1996
## 14721 1995
## 14722 1994
## 14723 1993
## 14724 1992
## 14725 1991
## 14726 1990
## 14727 1989
## 14728 1988
## 14729 1987
## 14730 1986
## 14731 1985
## 14732 1984
## 14733 1983
## 14734 1982
## 14735 1981
## 14736 1980
## 14737 1979
## 14738 1978
## 14739 1977
## 14740 1976
## 14741 1975
## 14742 1974
## 14743 1973
## 14744 1972
## 14745 1971
## 14746 1970
## 14747 1969
## 14748 1968
## 14749 1967
## 14750 1966
## 14751 1965
## 14752 1964
## 14753 1963
## 14754 1962
## 14755 1961
## 14756 1960
## 14757 2021
## 14758 2020
## 14759 2019
## 14760 2018
## 14761 2017
## 14762 2016
## 14763 2015
## 14764 2014
## 14765 2013
## 14766 2012
## 14767 2011
## 14768 2010
## 14769 2009
## 14770 2008
## 14771 2007
## 14772 2006
## 14773 2005
## 14774 2004
## 14775 2003
## 14776 2002
## 14777 2001
## 14778 2000
## 14779 1999
## 14780 1998
## 14781 1997
## 14782 1996
## 14783 1995
## 14784 1994
## 14785 1993
## 14786 1992
## 14787 1991
## 14788 1990
## 14789 1989
## 14790 1988
## 14791 1987
## 14792 1986
## 14793 1985
## 14794 1984
## 14795 1983
## 14796 1982
## 14797 1981
## 14798 1980
## 14799 1979
## 14800 1978
## 14801 1977
## 14802 1976
## 14803 1975
## 14804 1974
## 14805 1973
## 14806 1972
## 14807 1971
## 14808 1970
## 14809 1969
## 14810 1968
## 14811 1967
## 14812 1966
## 14813 1965
## 14814 1964
## 14815 1963
## 14816 1962
## 14817 1961
## 14818 1960
## 14819 2021
## 14820 2020
## 14821 2019
## 14822 2018
## 14823 2017
## 14824 2016
## 14825 2015
## 14826 2014
## 14827 2013
## 14828 2012
## 14829 2011
## 14830 2010
## 14831 2009
## 14832 2008
## 14833 2007
## 14834 2006
## 14835 2005
## 14836 2004
## 14837 2003
## 14838 2002
## 14839 2001
## 14840 2000
## 14841 1999
## 14842 1998
## 14843 1997
## 14844 1996
## 14845 1995
## 14846 1994
## 14847 1993
## 14848 1992
## 14849 1991
## 14850 1990
## 14851 1989
## 14852 1988
## 14853 1987
## 14854 1986
## 14855 1985
## 14856 1984
## 14857 1983
## 14858 1982
## 14859 1981
## 14860 1980
## 14861 1979
## 14862 1978
## 14863 1977
## 14864 1976
## 14865 1975
## 14866 1974
## 14867 1973
## 14868 1972
## 14869 1971
## 14870 1970
## 14871 1969
## 14872 1968
## 14873 1967
## 14874 1966
## 14875 1965
## 14876 1964
## 14877 1963
## 14878 1962
## 14879 1961
## 14880 1960
## 14881 2021
## 14882 2020
## 14883 2019
## 14884 2018
## 14885 2017
## 14886 2016
## 14887 2015
## 14888 2014
## 14889 2013
## 14890 2012
## 14891 2011
## 14892 2010
## 14893 2009
## 14894 2008
## 14895 2007
## 14896 2006
## 14897 2005
## 14898 2004
## 14899 2003
## 14900 2002
## 14901 2001
## 14902 2000
## 14903 1999
## 14904 1998
## 14905 1997
## 14906 1996
## 14907 1995
## 14908 1994
## 14909 1993
## 14910 1992
## 14911 1991
## 14912 1990
## 14913 1989
## 14914 1988
## 14915 1987
## 14916 1986
## 14917 1985
## 14918 1984
## 14919 1983
## 14920 1982
## 14921 1981
## 14922 1980
## 14923 1979
## 14924 1978
## 14925 1977
## 14926 1976
## 14927 1975
## 14928 1974
## 14929 1973
## 14930 1972
## 14931 1971
## 14932 1970
## 14933 1969
## 14934 1968
## 14935 1967
## 14936 1966
## 14937 1965
## 14938 1964
## 14939 1963
## 14940 1962
## 14941 1961
## 14942 1960
## 14943 2021
## 14944 2020
## 14945 2019
## 14946 2018
## 14947 2017
## 14948 2016
## 14949 2015
## 14950 2014
## 14951 2013
## 14952 2012
## 14953 2011
## 14954 2010
## 14955 2009
## 14956 2008
## 14957 2007
## 14958 2006
## 14959 2005
## 14960 2004
## 14961 2003
## 14962 2002
## 14963 2001
## 14964 2000
## 14965 1999
## 14966 1998
## 14967 1997
## 14968 1996
## 14969 1995
## 14970 1994
## 14971 1993
## 14972 1992
## 14973 1991
## 14974 1990
## 14975 1989
## 14976 1988
## 14977 1987
## 14978 1986
## 14979 1985
## 14980 1984
## 14981 1983
## 14982 1982
## 14983 1981
## 14984 1980
## 14985 1979
## 14986 1978
## 14987 1977
## 14988 1976
## 14989 1975
## 14990 1974
## 14991 1973
## 14992 1972
## 14993 1971
## 14994 1970
## 14995 1969
## 14996 1968
## 14997 1967
## 14998 1966
## 14999 1965
## 15000 1964
## 15001 1963
## 15002 1962
## 15003 1961
## 15004 1960
## 15005 2021
## 15006 2020
## 15007 2019
## 15008 2018
## 15009 2017
## 15010 2016
## 15011 2015
## 15012 2014
## 15013 2013
## 15014 2012
## 15015 2011
## 15016 2010
## 15017 2009
## 15018 2008
## 15019 2007
## 15020 2006
## 15021 2005
## 15022 2004
## 15023 2003
## 15024 2002
## 15025 2001
## 15026 2000
## 15027 1999
## 15028 1998
## 15029 1997
## 15030 1996
## 15031 1995
## 15032 1994
## 15033 1993
## 15034 1992
## 15035 1991
## 15036 1990
## 15037 1989
## 15038 1988
## 15039 1987
## 15040 1986
## 15041 1985
## 15042 1984
## 15043 1983
## 15044 1982
## 15045 1981
## 15046 1980
## 15047 1979
## 15048 1978
## 15049 1977
## 15050 1976
## 15051 1975
## 15052 1974
## 15053 1973
## 15054 1972
## 15055 1971
## 15056 1970
## 15057 1969
## 15058 1968
## 15059 1967
## 15060 1966
## 15061 1965
## 15062 1964
## 15063 1963
## 15064 1962
## 15065 1961
## 15066 1960
## 15067 2021
## 15068 2020
## 15069 2019
## 15070 2018
## 15071 2017
## 15072 2016
## 15073 2015
## 15074 2014
## 15075 2013
## 15076 2012
## 15077 2011
## 15078 2010
## 15079 2009
## 15080 2008
## 15081 2007
## 15082 2006
## 15083 2005
## 15084 2004
## 15085 2003
## 15086 2002
## 15087 2001
## 15088 2000
## 15089 1999
## 15090 1998
## 15091 1997
## 15092 1996
## 15093 1995
## 15094 1994
## 15095 1993
## 15096 1992
## 15097 1991
## 15098 1990
## 15099 1989
## 15100 1988
## 15101 1987
## 15102 1986
## 15103 1985
## 15104 1984
## 15105 1983
## 15106 1982
## 15107 1981
## 15108 1980
## 15109 1979
## 15110 1978
## 15111 1977
## 15112 1976
## 15113 1975
## 15114 1974
## 15115 1973
## 15116 1972
## 15117 1971
## 15118 1970
## 15119 1969
## 15120 1968
## 15121 1967
## 15122 1966
## 15123 1965
## 15124 1964
## 15125 1963
## 15126 1962
## 15127 1961
## 15128 1960
## 15129 2021
## 15130 2020
## 15131 2019
## 15132 2018
## 15133 2017
## 15134 2016
## 15135 2015
## 15136 2014
## 15137 2013
## 15138 2012
## 15139 2011
## 15140 2010
## 15141 2009
## 15142 2008
## 15143 2007
## 15144 2006
## 15145 2005
## 15146 2004
## 15147 2003
## 15148 2002
## 15149 2001
## 15150 2000
## 15151 1999
## 15152 1998
## 15153 1997
## 15154 1996
## 15155 1995
## 15156 1994
## 15157 1993
## 15158 1992
## 15159 1991
## 15160 1990
## 15161 1989
## 15162 1988
## 15163 1987
## 15164 1986
## 15165 1985
## 15166 1984
## 15167 1983
## 15168 1982
## 15169 1981
## 15170 1980
## 15171 1979
## 15172 1978
## 15173 1977
## 15174 1976
## 15175 1975
## 15176 1974
## 15177 1973
## 15178 1972
## 15179 1971
## 15180 1970
## 15181 1969
## 15182 1968
## 15183 1967
## 15184 1966
## 15185 1965
## 15186 1964
## 15187 1963
## 15188 1962
## 15189 1961
## 15190 1960
## 15191 2021
## 15192 2020
## 15193 2019
## 15194 2018
## 15195 2017
## 15196 2016
## 15197 2015
## 15198 2014
## 15199 2013
## 15200 2012
## 15201 2011
## 15202 2010
## 15203 2009
## 15204 2008
## 15205 2007
## 15206 2006
## 15207 2005
## 15208 2004
## 15209 2003
## 15210 2002
## 15211 2001
## 15212 2000
## 15213 1999
## 15214 1998
## 15215 1997
## 15216 1996
## 15217 1995
## 15218 1994
## 15219 1993
## 15220 1992
## 15221 1991
## 15222 1990
## 15223 1989
## 15224 1988
## 15225 1987
## 15226 1986
## 15227 1985
## 15228 1984
## 15229 1983
## 15230 1982
## 15231 1981
## 15232 1980
## 15233 1979
## 15234 1978
## 15235 1977
## 15236 1976
## 15237 1975
## 15238 1974
## 15239 1973
## 15240 1972
## 15241 1971
## 15242 1970
## 15243 1969
## 15244 1968
## 15245 1967
## 15246 1966
## 15247 1965
## 15248 1964
## 15249 1963
## 15250 1962
## 15251 1961
## 15252 1960
## 15253 2021
## 15254 2020
## 15255 2019
## 15256 2018
## 15257 2017
## 15258 2016
## 15259 2015
## 15260 2014
## 15261 2013
## 15262 2012
## 15263 2011
## 15264 2010
## 15265 2009
## 15266 2008
## 15267 2007
## 15268 2006
## 15269 2005
## 15270 2004
## 15271 2003
## 15272 2002
## 15273 2001
## 15274 2000
## 15275 1999
## 15276 1998
## 15277 1997
## 15278 1996
## 15279 1995
## 15280 1994
## 15281 1993
## 15282 1992
## 15283 1991
## 15284 1990
## 15285 1989
## 15286 1988
## 15287 1987
## 15288 1986
## 15289 1985
## 15290 1984
## 15291 1983
## 15292 1982
## 15293 1981
## 15294 1980
## 15295 1979
## 15296 1978
## 15297 1977
## 15298 1976
## 15299 1975
## 15300 1974
## 15301 1973
## 15302 1972
## 15303 1971
## 15304 1970
## 15305 1969
## 15306 1968
## 15307 1967
## 15308 1966
## 15309 1965
## 15310 1964
## 15311 1963
## 15312 1962
## 15313 1961
## 15314 1960
## 15315 2021
## 15316 2020
## 15317 2019
## 15318 2018
## 15319 2017
## 15320 2016
## 15321 2015
## 15322 2014
## 15323 2013
## 15324 2012
## 15325 2011
## 15326 2010
## 15327 2009
## 15328 2008
## 15329 2007
## 15330 2006
## 15331 2005
## 15332 2004
## 15333 2003
## 15334 2002
## 15335 2001
## 15336 2000
## 15337 1999
## 15338 1998
## 15339 1997
## 15340 1996
## 15341 1995
## 15342 1994
## 15343 1993
## 15344 1992
## 15345 1991
## 15346 1990
## 15347 1989
## 15348 1988
## 15349 1987
## 15350 1986
## 15351 1985
## 15352 1984
## 15353 1983
## 15354 1982
## 15355 1981
## 15356 1980
## 15357 1979
## 15358 1978
## 15359 1977
## 15360 1976
## 15361 1975
## 15362 1974
## 15363 1973
## 15364 1972
## 15365 1971
## 15366 1970
## 15367 1969
## 15368 1968
## 15369 1967
## 15370 1966
## 15371 1965
## 15372 1964
## 15373 1963
## 15374 1962
## 15375 1961
## 15376 1960
## 15377 2021
## 15378 2020
## 15379 2019
## 15380 2018
## 15381 2017
## 15382 2016
## 15383 2015
## 15384 2014
## 15385 2013
## 15386 2012
## 15387 2011
## 15388 2010
## 15389 2009
## 15390 2008
## 15391 2007
## 15392 2006
## 15393 2005
## 15394 2004
## 15395 2003
## 15396 2002
## 15397 2001
## 15398 2000
## 15399 1999
## 15400 1998
## 15401 1997
## 15402 1996
## 15403 1995
## 15404 1994
## 15405 1993
## 15406 1992
## 15407 1991
## 15408 1990
## 15409 1989
## 15410 1988
## 15411 1987
## 15412 1986
## 15413 1985
## 15414 1984
## 15415 1983
## 15416 1982
## 15417 1981
## 15418 1980
## 15419 1979
## 15420 1978
## 15421 1977
## 15422 1976
## 15423 1975
## 15424 1974
## 15425 1973
## 15426 1972
## 15427 1971
## 15428 1970
## 15429 1969
## 15430 1968
## 15431 1967
## 15432 1966
## 15433 1965
## 15434 1964
## 15435 1963
## 15436 1962
## 15437 1961
## 15438 1960
## 15439 2021
## 15440 2020
## 15441 2019
## 15442 2018
## 15443 2017
## 15444 2016
## 15445 2015
## 15446 2014
## 15447 2013
## 15448 2012
## 15449 2011
## 15450 2010
## 15451 2009
## 15452 2008
## 15453 2007
## 15454 2006
## 15455 2005
## 15456 2004
## 15457 2003
## 15458 2002
## 15459 2001
## 15460 2000
## 15461 1999
## 15462 1998
## 15463 1997
## 15464 1996
## 15465 1995
## 15466 1994
## 15467 1993
## 15468 1992
## 15469 1991
## 15470 1990
## 15471 1989
## 15472 1988
## 15473 1987
## 15474 1986
## 15475 1985
## 15476 1984
## 15477 1983
## 15478 1982
## 15479 1981
## 15480 1980
## 15481 1979
## 15482 1978
## 15483 1977
## 15484 1976
## 15485 1975
## 15486 1974
## 15487 1973
## 15488 1972
## 15489 1971
## 15490 1970
## 15491 1969
## 15492 1968
## 15493 1967
## 15494 1966
## 15495 1965
## 15496 1964
## 15497 1963
## 15498 1962
## 15499 1961
## 15500 1960
## 15501 2021
## 15502 2020
## 15503 2019
## 15504 2018
## 15505 2017
## 15506 2016
## 15507 2015
## 15508 2014
## 15509 2013
## 15510 2012
## 15511 2011
## 15512 2010
## 15513 2009
## 15514 2008
## 15515 2007
## 15516 2006
## 15517 2005
## 15518 2004
## 15519 2003
## 15520 2002
## 15521 2001
## 15522 2000
## 15523 1999
## 15524 1998
## 15525 1997
## 15526 1996
## 15527 1995
## 15528 1994
## 15529 1993
## 15530 1992
## 15531 1991
## 15532 1990
## 15533 1989
## 15534 1988
## 15535 1987
## 15536 1986
## 15537 1985
## 15538 1984
## 15539 1983
## 15540 1982
## 15541 1981
## 15542 1980
## 15543 1979
## 15544 1978
## 15545 1977
## 15546 1976
## 15547 1975
## 15548 1974
## 15549 1973
## 15550 1972
## 15551 1971
## 15552 1970
## 15553 1969
## 15554 1968
## 15555 1967
## 15556 1966
## 15557 1965
## 15558 1964
## 15559 1963
## 15560 1962
## 15561 1961
## 15562 1960
## 15563 2021
## 15564 2020
## 15565 2019
## 15566 2018
## 15567 2017
## 15568 2016
## 15569 2015
## 15570 2014
## 15571 2013
## 15572 2012
## 15573 2011
## 15574 2010
## 15575 2009
## 15576 2008
## 15577 2007
## 15578 2006
## 15579 2005
## 15580 2004
## 15581 2003
## 15582 2002
## 15583 2001
## 15584 2000
## 15585 1999
## 15586 1998
## 15587 1997
## 15588 1996
## 15589 1995
## 15590 1994
## 15591 1993
## 15592 1992
## 15593 1991
## 15594 1990
## 15595 1989
## 15596 1988
## 15597 1987
## 15598 1986
## 15599 1985
## 15600 1984
## 15601 1983
## 15602 1982
## 15603 1981
## 15604 1980
## 15605 1979
## 15606 1978
## 15607 1977
## 15608 1976
## 15609 1975
## 15610 1974
## 15611 1973
## 15612 1972
## 15613 1971
## 15614 1970
## 15615 1969
## 15616 1968
## 15617 1967
## 15618 1966
## 15619 1965
## 15620 1964
## 15621 1963
## 15622 1962
## 15623 1961
## 15624 1960
## 15625 2021
## 15626 2020
## 15627 2019
## 15628 2018
## 15629 2017
## 15630 2016
## 15631 2015
## 15632 2014
## 15633 2013
## 15634 2012
## 15635 2011
## 15636 2010
## 15637 2009
## 15638 2008
## 15639 2007
## 15640 2006
## 15641 2005
## 15642 2004
## 15643 2003
## 15644 2002
## 15645 2001
## 15646 2000
## 15647 1999
## 15648 1998
## 15649 1997
## 15650 1996
## 15651 1995
## 15652 1994
## 15653 1993
## 15654 1992
## 15655 1991
## 15656 1990
## 15657 1989
## 15658 1988
## 15659 1987
## 15660 1986
## 15661 1985
## 15662 1984
## 15663 1983
## 15664 1982
## 15665 1981
## 15666 1980
## 15667 1979
## 15668 1978
## 15669 1977
## 15670 1976
## 15671 1975
## 15672 1974
## 15673 1973
## 15674 1972
## 15675 1971
## 15676 1970
## 15677 1969
## 15678 1968
## 15679 1967
## 15680 1966
## 15681 1965
## 15682 1964
## 15683 1963
## 15684 1962
## 15685 1961
## 15686 1960
## 15687 2021
## 15688 2020
## 15689 2019
## 15690 2018
## 15691 2017
## 15692 2016
## 15693 2015
## 15694 2014
## 15695 2013
## 15696 2012
## 15697 2011
## 15698 2010
## 15699 2009
## 15700 2008
## 15701 2007
## 15702 2006
## 15703 2005
## 15704 2004
## 15705 2003
## 15706 2002
## 15707 2001
## 15708 2000
## 15709 1999
## 15710 1998
## 15711 1997
## 15712 1996
## 15713 1995
## 15714 1994
## 15715 1993
## 15716 1992
## 15717 1991
## 15718 1990
## 15719 1989
## 15720 1988
## 15721 1987
## 15722 1986
## 15723 1985
## 15724 1984
## 15725 1983
## 15726 1982
## 15727 1981
## 15728 1980
## 15729 1979
## 15730 1978
## 15731 1977
## 15732 1976
## 15733 1975
## 15734 1974
## 15735 1973
## 15736 1972
## 15737 1971
## 15738 1970
## 15739 1969
## 15740 1968
## 15741 1967
## 15742 1966
## 15743 1965
## 15744 1964
## 15745 1963
## 15746 1962
## 15747 1961
## 15748 1960
## 15749 2021
## 15750 2020
## 15751 2019
## 15752 2018
## 15753 2017
## 15754 2016
## 15755 2015
## 15756 2014
## 15757 2013
## 15758 2012
## 15759 2011
## 15760 2010
## 15761 2009
## 15762 2008
## 15763 2007
## 15764 2006
## 15765 2005
## 15766 2004
## 15767 2003
## 15768 2002
## 15769 2001
## 15770 2000
## 15771 1999
## 15772 1998
## 15773 1997
## 15774 1996
## 15775 1995
## 15776 1994
## 15777 1993
## 15778 1992
## 15779 1991
## 15780 1990
## 15781 1989
## 15782 1988
## 15783 1987
## 15784 1986
## 15785 1985
## 15786 1984
## 15787 1983
## 15788 1982
## 15789 1981
## 15790 1980
## 15791 1979
## 15792 1978
## 15793 1977
## 15794 1976
## 15795 1975
## 15796 1974
## 15797 1973
## 15798 1972
## 15799 1971
## 15800 1970
## 15801 1969
## 15802 1968
## 15803 1967
## 15804 1966
## 15805 1965
## 15806 1964
## 15807 1963
## 15808 1962
## 15809 1961
## 15810 1960
## 15811 2021
## 15812 2020
## 15813 2019
## 15814 2018
## 15815 2017
## 15816 2016
## 15817 2015
## 15818 2014
## 15819 2013
## 15820 2012
## 15821 2011
## 15822 2010
## 15823 2009
## 15824 2008
## 15825 2007
## 15826 2006
## 15827 2005
## 15828 2004
## 15829 2003
## 15830 2002
## 15831 2001
## 15832 2000
## 15833 1999
## 15834 1998
## 15835 1997
## 15836 1996
## 15837 1995
## 15838 1994
## 15839 1993
## 15840 1992
## 15841 1991
## 15842 1990
## 15843 1989
## 15844 1988
## 15845 1987
## 15846 1986
## 15847 1985
## 15848 1984
## 15849 1983
## 15850 1982
## 15851 1981
## 15852 1980
## 15853 1979
## 15854 1978
## 15855 1977
## 15856 1976
## 15857 1975
## 15858 1974
## 15859 1973
## 15860 1972
## 15861 1971
## 15862 1970
## 15863 1969
## 15864 1968
## 15865 1967
## 15866 1966
## 15867 1965
## 15868 1964
## 15869 1963
## 15870 1962
## 15871 1961
## 15872 1960
## 15873 2021
## 15874 2020
## 15875 2019
## 15876 2018
## 15877 2017
## 15878 2016
## 15879 2015
## 15880 2014
## 15881 2013
## 15882 2012
## 15883 2011
## 15884 2010
## 15885 2009
## 15886 2008
## 15887 2007
## 15888 2006
## 15889 2005
## 15890 2004
## 15891 2003
## 15892 2002
## 15893 2001
## 15894 2000
## 15895 1999
## 15896 1998
## 15897 1997
## 15898 1996
## 15899 1995
## 15900 1994
## 15901 1993
## 15902 1992
## 15903 1991
## 15904 1990
## 15905 1989
## 15906 1988
## 15907 1987
## 15908 1986
## 15909 1985
## 15910 1984
## 15911 1983
## 15912 1982
## 15913 1981
## 15914 1980
## 15915 1979
## 15916 1978
## 15917 1977
## 15918 1976
## 15919 1975
## 15920 1974
## 15921 1973
## 15922 1972
## 15923 1971
## 15924 1970
## 15925 1969
## 15926 1968
## 15927 1967
## 15928 1966
## 15929 1965
## 15930 1964
## 15931 1963
## 15932 1962
## 15933 1961
## 15934 1960
## 15935 2021
## 15936 2020
## 15937 2019
## 15938 2018
## 15939 2017
## 15940 2016
## 15941 2015
## 15942 2014
## 15943 2013
## 15944 2012
## 15945 2011
## 15946 2010
## 15947 2009
## 15948 2008
## 15949 2007
## 15950 2006
## 15951 2005
## 15952 2004
## 15953 2003
## 15954 2002
## 15955 2001
## 15956 2000
## 15957 1999
## 15958 1998
## 15959 1997
## 15960 1996
## 15961 1995
## 15962 1994
## 15963 1993
## 15964 1992
## 15965 1991
## 15966 1990
## 15967 1989
## 15968 1988
## 15969 1987
## 15970 1986
## 15971 1985
## 15972 1984
## 15973 1983
## 15974 1982
## 15975 1981
## 15976 1980
## 15977 1979
## 15978 1978
## 15979 1977
## 15980 1976
## 15981 1975
## 15982 1974
## 15983 1973
## 15984 1972
## 15985 1971
## 15986 1970
## 15987 1969
## 15988 1968
## 15989 1967
## 15990 1966
## 15991 1965
## 15992 1964
## 15993 1963
## 15994 1962
## 15995 1961
## 15996 1960
## 15997 2021
## 15998 2020
## 15999 2019
## 16000 2018
## 16001 2017
## 16002 2016
## 16003 2015
## 16004 2014
## 16005 2013
## 16006 2012
## 16007 2011
## 16008 2010
## 16009 2009
## 16010 2008
## 16011 2007
## 16012 2006
## 16013 2005
## 16014 2004
## 16015 2003
## 16016 2002
## 16017 2001
## 16018 2000
## 16019 1999
## 16020 1998
## 16021 1997
## 16022 1996
## 16023 1995
## 16024 1994
## 16025 1993
## 16026 1992
## 16027 1991
## 16028 1990
## 16029 1989
## 16030 1988
## 16031 1987
## 16032 1986
## 16033 1985
## 16034 1984
## 16035 1983
## 16036 1982
## 16037 1981
## 16038 1980
## 16039 1979
## 16040 1978
## 16041 1977
## 16042 1976
## 16043 1975
## 16044 1974
## 16045 1973
## 16046 1972
## 16047 1971
## 16048 1970
## 16049 1969
## 16050 1968
## 16051 1967
## 16052 1966
## 16053 1965
## 16054 1964
## 16055 1963
## 16056 1962
## 16057 1961
## 16058 1960
## 16059 2021
## 16060 2020
## 16061 2019
## 16062 2018
## 16063 2017
## 16064 2016
## 16065 2015
## 16066 2014
## 16067 2013
## 16068 2012
## 16069 2011
## 16070 2010
## 16071 2009
## 16072 2008
## 16073 2007
## 16074 2006
## 16075 2005
## 16076 2004
## 16077 2003
## 16078 2002
## 16079 2001
## 16080 2000
## 16081 1999
## 16082 1998
## 16083 1997
## 16084 1996
## 16085 1995
## 16086 1994
## 16087 1993
## 16088 1992
## 16089 1991
## 16090 1990
## 16091 1989
## 16092 1988
## 16093 1987
## 16094 1986
## 16095 1985
## 16096 1984
## 16097 1983
## 16098 1982
## 16099 1981
## 16100 1980
## 16101 1979
## 16102 1978
## 16103 1977
## 16104 1976
## 16105 1975
## 16106 1974
## 16107 1973
## 16108 1972
## 16109 1971
## 16110 1970
## 16111 1969
## 16112 1968
## 16113 1967
## 16114 1966
## 16115 1965
## 16116 1964
## 16117 1963
## 16118 1962
## 16119 1961
## 16120 1960
## 16121 2021
## 16122 2020
## 16123 2019
## 16124 2018
## 16125 2017
## 16126 2016
## 16127 2015
## 16128 2014
## 16129 2013
## 16130 2012
## 16131 2011
## 16132 2010
## 16133 2009
## 16134 2008
## 16135 2007
## 16136 2006
## 16137 2005
## 16138 2004
## 16139 2003
## 16140 2002
## 16141 2001
## 16142 2000
## 16143 1999
## 16144 1998
## 16145 1997
## 16146 1996
## 16147 1995
## 16148 1994
## 16149 1993
## 16150 1992
## 16151 1991
## 16152 1990
## 16153 1989
## 16154 1988
## 16155 1987
## 16156 1986
## 16157 1985
## 16158 1984
## 16159 1983
## 16160 1982
## 16161 1981
## 16162 1980
## 16163 1979
## 16164 1978
## 16165 1977
## 16166 1976
## 16167 1975
## 16168 1974
## 16169 1973
## 16170 1972
## 16171 1971
## 16172 1970
## 16173 1969
## 16174 1968
## 16175 1967
## 16176 1966
## 16177 1965
## 16178 1964
## 16179 1963
## 16180 1962
## 16181 1961
## 16182 1960
## 16183 2021
## 16184 2020
## 16185 2019
## 16186 2018
## 16187 2017
## 16188 2016
## 16189 2015
## 16190 2014
## 16191 2013
## 16192 2012
## 16193 2011
## 16194 2010
## 16195 2009
## 16196 2008
## 16197 2007
## 16198 2006
## 16199 2005
## 16200 2004
## 16201 2003
## 16202 2002
## 16203 2001
## 16204 2000
## 16205 1999
## 16206 1998
## 16207 1997
## 16208 1996
## 16209 1995
## 16210 1994
## 16211 1993
## 16212 1992
## 16213 1991
## 16214 1990
## 16215 1989
## 16216 1988
## 16217 1987
## 16218 1986
## 16219 1985
## 16220 1984
## 16221 1983
## 16222 1982
## 16223 1981
## 16224 1980
## 16225 1979
## 16226 1978
## 16227 1977
## 16228 1976
## 16229 1975
## 16230 1974
## 16231 1973
## 16232 1972
## 16233 1971
## 16234 1970
## 16235 1969
## 16236 1968
## 16237 1967
## 16238 1966
## 16239 1965
## 16240 1964
## 16241 1963
## 16242 1962
## 16243 1961
## 16244 1960
## 16245 2021
## 16246 2020
## 16247 2019
## 16248 2018
## 16249 2017
## 16250 2016
## 16251 2015
## 16252 2014
## 16253 2013
## 16254 2012
## 16255 2011
## 16256 2010
## 16257 2009
## 16258 2008
## 16259 2007
## 16260 2006
## 16261 2005
## 16262 2004
## 16263 2003
## 16264 2002
## 16265 2001
## 16266 2000
## 16267 1999
## 16268 1998
## 16269 1997
## 16270 1996
## 16271 1995
## 16272 1994
## 16273 1993
## 16274 1992
## 16275 1991
## 16276 1990
## 16277 1989
## 16278 1988
## 16279 1987
## 16280 1986
## 16281 1985
## 16282 1984
## 16283 1983
## 16284 1982
## 16285 1981
## 16286 1980
## 16287 1979
## 16288 1978
## 16289 1977
## 16290 1976
## 16291 1975
## 16292 1974
## 16293 1973
## 16294 1972
## 16295 1971
## 16296 1970
## 16297 1969
## 16298 1968
## 16299 1967
## 16300 1966
## 16301 1965
## 16302 1964
## 16303 1963
## 16304 1962
## 16305 1961
## 16306 1960
## 16307 2021
## 16308 2020
## 16309 2019
## 16310 2018
## 16311 2017
## 16312 2016
## 16313 2015
## 16314 2014
## 16315 2013
## 16316 2012
## 16317 2011
## 16318 2010
## 16319 2009
## 16320 2008
## 16321 2007
## 16322 2006
## 16323 2005
## 16324 2004
## 16325 2003
## 16326 2002
## 16327 2001
## 16328 2000
## 16329 1999
## 16330 1998
## 16331 1997
## 16332 1996
## 16333 1995
## 16334 1994
## 16335 1993
## 16336 1992
## 16337 1991
## 16338 1990
## 16339 1989
## 16340 1988
## 16341 1987
## 16342 1986
## 16343 1985
## 16344 1984
## 16345 1983
## 16346 1982
## 16347 1981
## 16348 1980
## 16349 1979
## 16350 1978
## 16351 1977
## 16352 1976
## 16353 1975
## 16354 1974
## 16355 1973
## 16356 1972
## 16357 1971
## 16358 1970
## 16359 1969
## 16360 1968
## 16361 1967
## 16362 1966
## 16363 1965
## 16364 1964
## 16365 1963
## 16366 1962
## 16367 1961
## 16368 1960
## 16369 2021
## 16370 2020
## 16371 2019
## 16372 2018
## 16373 2017
## 16374 2016
## 16375 2015
## 16376 2014
## 16377 2013
## 16378 2012
## 16379 2011
## 16380 2010
## 16381 2009
## 16382 2008
## 16383 2007
## 16384 2006
## 16385 2005
## 16386 2004
## 16387 2003
## 16388 2002
## 16389 2001
## 16390 2000
## 16391 1999
## 16392 1998
## 16393 1997
## 16394 1996
## 16395 1995
## 16396 1994
## 16397 1993
## 16398 1992
## 16399 1991
## 16400 1990
## 16401 1989
## 16402 1988
## 16403 1987
## 16404 1986
## 16405 1985
## 16406 1984
## 16407 1983
## 16408 1982
## 16409 1981
## 16410 1980
## 16411 1979
## 16412 1978
## 16413 1977
## 16414 1976
## 16415 1975
## 16416 1974
## 16417 1973
## 16418 1972
## 16419 1971
## 16420 1970
## 16421 1969
## 16422 1968
## 16423 1967
## 16424 1966
## 16425 1965
## 16426 1964
## 16427 1963
## 16428 1962
## 16429 1961
## 16430 1960
## 16431 2021
## 16432 2020
## 16433 2019
## 16434 2018
## 16435 2017
## 16436 2016
## 16437 2015
## 16438 2014
## 16439 2013
## 16440 2012
## 16441 2011
## 16442 2010
## 16443 2009
## 16444 2008
## 16445 2007
## 16446 2006
## 16447 2005
## 16448 2004
## 16449 2003
## 16450 2002
## 16451 2001
## 16452 2000
## 16453 1999
## 16454 1998
## 16455 1997
## 16456 1996
## 16457 1995
## 16458 1994
## 16459 1993
## 16460 1992
## 16461 1991
## 16462 1990
## 16463 1989
## 16464 1988
## 16465 1987
## 16466 1986
## 16467 1985
## 16468 1984
## 16469 1983
## 16470 1982
## 16471 1981
## 16472 1980
## 16473 1979
## 16474 1978
## 16475 1977
## 16476 1976
## 16477 1975
## 16478 1974
## 16479 1973
## 16480 1972
## 16481 1971
## 16482 1970
## 16483 1969
## 16484 1968
## 16485 1967
## 16486 1966
## 16487 1965
## 16488 1964
## 16489 1963
## 16490 1962
## 16491 1961
## 16492 1960
gdp_pcap_extra <- WDI(country = "all", indicator = "NY.GDP.PCAP.KD", extra = TRUE)
gdp_pcap_extra## iso2c country NY.GDP.PCAP.KD year
## 1 1A Arab World NA 1968
## 2 1A Arab World NA 1974
## 3 1A Arab World NA 1973
## 4 1A Arab World NA 1972
## 5 1A Arab World 4765.6558 1977
## 6 1A Arab World 4552.6175 1976
## 7 1A Arab World 4057.2454 1975
## 8 1A Arab World NA 1969
## 9 1A Arab World 6300.8314 2014
## 10 1A Arab World 6289.2469 2013
## 11 1A Arab World NA 1971
## 12 1A Arab World 6359.9006 2015
## 13 1A Arab World 4212.7227 1983
## 14 1A Arab World 4631.5414 1982
## 15 1A Arab World 5210.5421 1981
## 16 1A Arab World NA 1970
## 17 1A Arab World 4585.6763 1978
## 18 1A Arab World 6050.1186 2021
## 19 1A Arab World 5956.8778 2020
## 20 1A Arab World 6394.1795 2019
## 21 1A Arab World 6414.5397 2018
## 22 1A Arab World 6386.7222 2017
## 23 1A Arab World 6431.6762 2016
## 24 1A Arab World 5002.8173 2000
## 25 1A Arab World 6268.3527 2012
## 26 1A Arab World 6101.6453 2011
## 27 1A Arab World 6047.6162 2010
## 28 1A Arab World 5910.7934 2009
## 29 1A Arab World 5201.4690 1980
## 30 1A Arab World 4926.0734 1979
## 31 1A Arab World 5732.2290 2006
## 32 1A Arab World 5532.0994 2005
## 33 1A Arab World 5363.6378 2004
## 34 1A Arab World 5037.7877 2003
## 35 1A Arab World 4908.9391 2002
## 36 1A Arab World 4981.0741 2001
## 37 1A Arab World 3996.6258 1986
## 38 1A Arab World 4796.7989 1999
## 39 1A Arab World 4812.0308 1998
## 40 1A Arab World 4676.4500 1997
## 41 1A Arab World 4565.3656 1996
## 42 1A Arab World 6029.5848 2008
## 43 1A Arab World 5852.0977 2007
## 44 1A Arab World 4414.6321 1992
## 45 1A Arab World 4274.2966 1991
## 46 1A Arab World 4287.5620 1990
## 47 1A Arab World 3966.7263 1989
## 48 1A Arab World 3992.0174 1988
## 49 1A Arab World 3880.4220 1987
## 50 1A Arab World NA 1962
## 51 1A Arab World 3938.2793 1985
## 52 1A Arab World 4140.6767 1984
## 53 1A Arab World 4464.8854 1994
## 54 1A Arab World NA 1967
## 55 1A Arab World NA 1966
## 56 1A Arab World 4461.2518 1995
## 57 1A Arab World NA 1964
## 58 1A Arab World NA 1963
## 59 1A Arab World 4434.6500 1993
## 60 1A Arab World NA 1965
## 61 1A Arab World NA 1960
## 62 1A Arab World NA 1961
## 63 1W World 10396.4334 2016
## 64 1W World 11019.3754 2019
## 65 1W World 10853.1115 2018
## 66 1W World 10625.2559 2017
## 67 1W World 11057.4208 2021
## 68 1W World 10548.9042 2020
## 69 1W World 7385.2486 1997
## 70 1W World 7209.1572 1996
## 71 1W World 7058.3206 1995
## 72 1W World 6949.8107 1994
## 73 1W World 6829.6525 1993
## 74 1W World 6813.3086 1992
## 75 1W World 6780.1226 1991
## 76 1W World 6794.0106 1990
## 77 1W World 6719.2209 1989
## 78 1W World 6588.7245 1988
## 79 1W World 6408.0141 1987
## 80 1W World 6287.6449 1986
## 81 1W World 6185.8098 1985
## 82 1W World 6069.4556 1984
## 83 1W World 5899.6461 1983
## 84 1W World 5849.8938 1982
## 85 1W World 5931.8236 1981
## 86 1W World 5921.9563 1980
## 87 1W World 5914.4827 1979
## 88 1W World 5777.5080 1978
## 89 1W World 5644.9690 1977
## 90 1W World 5517.5712 1976
## 91 1W World 10231.7026 2015
## 92 1W World 10043.2007 2014
## 93 1W World 9862.6603 2013
## 94 1W World 9708.8721 2012
## 95 1W World 9568.3563 2011
## 96 1W World 9370.3853 2010
## 97 1W World 9071.9727 2009
## 98 1W World 9306.1935 2008
## 99 1W World 9230.9248 2007
## 100 1W World 8944.5147 2006
## 101 1W World 8667.7692 2005
## 102 1W World 8434.8197 2004
## 103 1W World 8173.3436 2003
## 104 1W World 8023.6392 2002
## 105 1W World 7941.1178 2001
## 106 1W World 7886.6774 2000
## 107 1W World 7647.8413 1999
## 108 1W World 7487.4175 1998
## 109 1W World 5004.8790 1971
## 110 1W World 4902.1002 1970
## 111 1W World 4815.4389 1969
## 112 1W World 4645.7989 1968
## 113 1W World 4475.4189 1967
## 114 1W World 4384.8833 1966
## 115 1W World 4235.3988 1965
## 116 1W World 4095.1962 1964
## 117 1W World 3922.0515 1963
## 118 1W World 5333.7613 1975
## 119 1W World 5398.3825 1974
## 120 1W World 5405.5943 1973
## 121 1W World 5180.8645 1972
## 122 1W World 3806.4035 1962
## 123 1W World 3676.5755 1961
## 124 1W World 3588.3786 1960
## 125 4E East Asia & Pacific (excluding high income) 279.0174 1961
## 126 4E East Asia & Pacific (excluding high income) 322.3129 1960
## 127 4E East Asia & Pacific (excluding high income) 5795.3349 2013
## 128 4E East Asia & Pacific (excluding high income) 5446.9461 2012
## 129 4E East Asia & Pacific (excluding high income) 2231.4093 2001
## 130 4E East Asia & Pacific (excluding high income) 4735.9544 2010
## 131 4E East Asia & Pacific (excluding high income) 3049.5236 2005
## 132 4E East Asia & Pacific (excluding high income) 2795.0580 2004
## 133 4E East Asia & Pacific (excluding high income) 5106.7086 2011
## 134 4E East Asia & Pacific (excluding high income) 3361.4158 2006
## 135 4E East Asia & Pacific (excluding high income) 6511.2581 2015
## 136 4E East Asia & Pacific (excluding high income) 6150.0344 2014
## 137 4E East Asia & Pacific (excluding high income) 2582.1805 2003
## 138 4E East Asia & Pacific (excluding high income) 2390.1567 2002
## 139 4E East Asia & Pacific (excluding high income) 1876.4088 1998
## 140 4E East Asia & Pacific (excluding high income) 4339.2302 2009
## 141 4E East Asia & Pacific (excluding high income) 2105.2096 2000
## 142 4E East Asia & Pacific (excluding high income) 1975.2396 1999
## 143 4E East Asia & Pacific (excluding high income) 8183.6461 2020
## 144 4E East Asia & Pacific (excluding high income) 8118.6307 2019
## 145 4E East Asia & Pacific (excluding high income) 7719.1446 2018
## 146 4E East Asia & Pacific (excluding high income) 7294.4321 2017
## 147 4E East Asia & Pacific (excluding high income) 6888.2504 2016
## 148 4E East Asia & Pacific (excluding high income) 273.5348 1962
## 149 4E East Asia & Pacific (excluding high income) 1024.5830 1989
## 150 4E East Asia & Pacific (excluding high income) 446.1242 1973
## 151 4E East Asia & Pacific (excluding high income) 421.8812 1972
## 152 4E East Asia & Pacific (excluding high income) 412.2812 1971
## 153 4E East Asia & Pacific (excluding high income) 396.7616 1970
## 154 4E East Asia & Pacific (excluding high income) 4047.3586 2008
## 155 4E East Asia & Pacific (excluding high income) 3753.4062 2007
## 156 4E East Asia & Pacific (excluding high income) 334.7462 1967
## 157 4E East Asia & Pacific (excluding high income) 348.5526 1966
## 158 4E East Asia & Pacific (excluding high income) 331.5584 1965
## 159 4E East Asia & Pacific (excluding high income) 307.1020 1964
## 160 4E East Asia & Pacific (excluding high income) 283.7353 1963
## 161 4E East Asia & Pacific (excluding high income) 1060.3670 1990
## 162 4E East Asia & Pacific (excluding high income) 480.0057 1976
## 163 4E East Asia & Pacific (excluding high income) 985.4827 1988
## 164 4E East Asia & Pacific (excluding high income) 913.7956 1987
## 165 4E East Asia & Pacific (excluding high income) 852.0121 1986
## 166 4E East Asia & Pacific (excluding high income) 808.6919 1985
## 167 4E East Asia & Pacific (excluding high income) 359.4963 1969
## 168 4E East Asia & Pacific (excluding high income) 331.5448 1968
## 169 4E East Asia & Pacific (excluding high income) 1613.7750 1995
## 170 4E East Asia & Pacific (excluding high income) 1487.3003 1994
## 171 4E East Asia & Pacific (excluding high income) 1358.2479 1993
## 172 4E East Asia & Pacific (excluding high income) 1236.7281 1992
## 173 4E East Asia & Pacific (excluding high income) 1128.0978 1991
## 174 4E East Asia & Pacific (excluding high income) 508.1540 1977
## 175 4E East Asia & Pacific (excluding high income) 634.6717 1981
## 176 4E East Asia & Pacific (excluding high income) 475.0124 1975
## 177 4E East Asia & Pacific (excluding high income) 453.2837 1974
## 178 4E East Asia & Pacific (excluding high income) 8744.9533 2021
## 179 4E East Asia & Pacific (excluding high income) 703.6685 1983
## 180 4E East Asia & Pacific (excluding high income) 1844.3674 1997
## 181 4E East Asia & Pacific (excluding high income) 1738.7325 1996
## 182 4E East Asia & Pacific (excluding high income) 546.5231 1978
## 183 4E East Asia & Pacific (excluding high income) 610.3957 1980
## 184 4E East Asia & Pacific (excluding high income) 576.2294 1979
## 185 4E East Asia & Pacific (excluding high income) 761.5682 1984
## 186 4E East Asia & Pacific (excluding high income) 664.1789 1982
## 187 7E Europe & Central Asia (excluding high income) NA 1966
## 188 7E Europe & Central Asia (excluding high income) 7553.9091 2016
## 189 7E Europe & Central Asia (excluding high income) NA 1967
## 190 7E Europe & Central Asia (excluding high income) 7485.8269 2015
## 191 7E Europe & Central Asia (excluding high income) 7469.1157 2014
## 192 7E Europe & Central Asia (excluding high income) NA 1965
## 193 7E Europe & Central Asia (excluding high income) NA 1964
## 194 7E Europe & Central Asia (excluding high income) 6384.0417 2007
## 195 7E Europe & Central Asia (excluding high income) 5938.1925 2006
## 196 7E Europe & Central Asia (excluding high income) NA 1961
## 197 7E Europe & Central Asia (excluding high income) 7367.9426 2013
## 198 7E Europe & Central Asia (excluding high income) NA 1963
## 199 7E Europe & Central Asia (excluding high income) NA 1962
## 200 7E Europe & Central Asia (excluding high income) 6530.5793 2010
## 201 7E Europe & Central Asia (excluding high income) 6217.3878 2009
## 202 7E Europe & Central Asia (excluding high income) 6627.1493 2008
## 203 7E Europe & Central Asia (excluding high income) 8546.0983 2021
## 204 7E Europe & Central Asia (excluding high income) 8013.2774 2020
## 205 7E Europe & Central Asia (excluding high income) 8145.3378 2019
## 206 7E Europe & Central Asia (excluding high income) 8004.5650 2018
## 207 7E Europe & Central Asia (excluding high income) 7802.5126 2017
## 208 7E Europe & Central Asia (excluding high income) NA 1977
## 209 7E Europe & Central Asia (excluding high income) NA 1976
## 210 7E Europe & Central Asia (excluding high income) NA 1960
## 211 7E Europe & Central Asia (excluding high income) 7129.0538 2012
## 212 7E Europe & Central Asia (excluding high income) 6898.6481 2011
## 213 7E Europe & Central Asia (excluding high income) NA 1972
## 214 7E Europe & Central Asia (excluding high income) NA 1971
## 215 7E Europe & Central Asia (excluding high income) NA 1970
## 216 7E Europe & Central Asia (excluding high income) NA 1969
## 217 7E Europe & Central Asia (excluding high income) NA 1968
## 218 7E Europe & Central Asia (excluding high income) 3666.1532 1995
## 219 7E Europe & Central Asia (excluding high income) 3739.0698 1994
## 220 7E Europe & Central Asia (excluding high income) 4218.1961 1993
## 221 7E Europe & Central Asia (excluding high income) 5499.0455 2005
## 222 7E Europe & Central Asia (excluding high income) 5129.7501 2004
## 223 7E Europe & Central Asia (excluding high income) NA 1975
## 224 7E Europe & Central Asia (excluding high income) NA 1974
## 225 7E Europe & Central Asia (excluding high income) NA 1973
## 226 7E Europe & Central Asia (excluding high income) 4101.0467 2000
## 227 7E Europe & Central Asia (excluding high income) 3783.6489 1999
## 228 7E Europe & Central Asia (excluding high income) 3696.5246 1998
## 229 7E Europe & Central Asia (excluding high income) 3758.1096 1997
## 230 7E Europe & Central Asia (excluding high income) 3657.8180 1996
## 231 7E Europe & Central Asia (excluding high income) NA 1982
## 232 7E Europe & Central Asia (excluding high income) NA 1981
## 233 7E Europe & Central Asia (excluding high income) NA 1980
## 234 7E Europe & Central Asia (excluding high income) 4501.6369 1992
## 235 7E Europe & Central Asia (excluding high income) 5065.4872 1991
## 236 7E Europe & Central Asia (excluding high income) 4743.3361 2003
## 237 7E Europe & Central Asia (excluding high income) 4439.3647 2002
## 238 7E Europe & Central Asia (excluding high income) 4209.2353 2001
## 239 7E Europe & Central Asia (excluding high income) NA 1987
## 240 7E Europe & Central Asia (excluding high income) NA 1986
## 241 7E Europe & Central Asia (excluding high income) NA 1985
## 242 7E Europe & Central Asia (excluding high income) NA 1984
## 243 7E Europe & Central Asia (excluding high income) NA 1983
## 244 7E Europe & Central Asia (excluding high income) NA 1978
## 245 7E Europe & Central Asia (excluding high income) 5360.1540 1990
## 246 7E Europe & Central Asia (excluding high income) NA 1979
## 247 7E Europe & Central Asia (excluding high income) NA 1988
## 248 7E Europe & Central Asia (excluding high income) 5473.9051 1989
## 249 8S South Asia 1745.1997 2020
## 250 8S South Asia 1862.8755 2019
## 251 8S South Asia 467.4143 1983
## 252 8S South Asia 1869.2833 2021
## 253 8S South Asia 475.8533 1984
## 254 8S South Asia 542.2914 1988
## 255 8S South Asia 511.6726 1987
## 256 8S South Asia 502.1702 1986
## 257 8S South Asia 490.2006 1985
## 258 8S South Asia 1152.6504 2009
## 259 8S South Asia 1093.9391 2008
## 260 8S South Asia 448.6709 1982
## 261 8S South Asia 442.5133 1981
## 262 8S South Asia 1813.7778 2018
## 263 8S South Asia 1725.6227 2017
## 264 8S South Asia 1641.0013 2016
## 265 8S South Asia 1543.0481 2015
## 266 8S South Asia 1455.2711 2014
## 267 8S South Asia 1378.8330 2013
## 268 8S South Asia 1317.6022 2012
## 269 8S South Asia 1265.8857 2011
## 270 8S South Asia 1221.1817 2010
## 271 8S South Asia 726.2874 1998
## 272 8S South Asia 702.0304 1997
## 273 8S South Asia 690.3611 1996
## 274 8S South Asia 660.0185 1995
## 275 8S South Asia 630.6661 1994
## 276 8S South Asia 607.9453 1993
## 277 8S South Asia 595.3963 1992
## 278 8S South Asia 575.2684 1991
## 279 8S South Asia 576.1945 1990
## 280 8S South Asia 558.9289 1989
## 281 8S South Asia 399.7486 1975
## 282 8S South Asia 382.6115 1974
## 283 8S South Asia 382.1238 1973
## 284 8S South Asia 376.5119 1972
## 285 8S South Asia 392.2305 1971
## 286 8S South Asia 398.7820 1970
## 287 8S South Asia 385.4159 1969
## 288 8S South Asia 372.6987 1968
## 289 8S South Asia 425.8022 1980
## 290 8S South Asia 409.5658 1979
## 291 8S South Asia 430.7695 1978
## 292 8S South Asia 415.6778 1977
## 293 8S South Asia 400.5309 1976
## 294 8S South Asia 817.0586 2002
## 295 8S South Asia 803.0253 2001
## 296 8S South Asia 783.1514 2000
## 297 8S South Asia 766.5137 1999
## 298 8S South Asia 1075.6207 2007
## 299 8S South Asia 1018.9303 2006
## 300 8S South Asia 962.1547 2005
## 301 8S South Asia 909.9139 2004
## 302 8S South Asia 860.9965 2003
## 303 8S South Asia 346.4460 1963
## 304 8S South Asia 336.2955 1962
## 305 8S South Asia 332.2302 1961
## 306 8S South Asia 325.5888 1960
## 307 8S South Asia 365.3080 1964
## 308 8S South Asia 364.5386 1967
## 309 8S South Asia 351.3007 1966
## 310 8S South Asia 354.9886 1965
## 311 AD Andorra 38301.4504 2018
## 312 AD Andorra 37707.8332 2017
## 313 AD Andorra 34722.0298 2014
## 314 AD Andorra 33220.6938 2013
## 315 AD Andorra 37432.9112 2016
## 316 AD Andorra 35770.9187 2015
## 317 AD Andorra 40602.6987 2006
## 318 AD Andorra 39783.0866 2005
## 319 AD Andorra 39043.1137 2004
## 320 AD Andorra 37620.3548 2003
## 321 AD Andorra 36158.7299 2002
## 322 AD Andorra 35975.0224 2001
## 323 AD Andorra 34267.7182 2000
## 324 AD Andorra 33750.1908 2012
## 325 AD Andorra 34956.7349 2011
## 326 AD Andorra 34667.3089 2010
## 327 AD Andorra 35362.8369 2009
## 328 AD Andorra 37610.7102 2008
## 329 AD Andorra 40392.0317 2007
## 330 AD Andorra 34014.6234 1980
## 331 AD Andorra 34462.6295 1979
## 332 AD Andorra 35551.8767 1978
## 333 AD Andorra 36081.8008 1977
## 334 AD Andorra 36175.4646 1976
## 335 AD Andorra 36246.8271 1975
## 336 AD Andorra 37504.8905 1974
## 337 AD Andorra 37123.4096 1973
## 338 AD Andorra 36166.5570 1972
## 339 AD Andorra 35159.6061 1971
## 340 AD Andorra 35391.2140 1970
## 341 AD Andorra NA 1969
## 342 AD Andorra NA 1968
## 343 AD Andorra NA 1967
## 344 AD Andorra NA 1966
## 345 AD Andorra NA 1965
## 346 AD Andorra NA 1964
## 347 AD Andorra NA 1963
## 348 AD Andorra NA 1962
## 349 AD Andorra NA 1961
## 350 AD Andorra NA 1960
## 351 AD Andorra 33625.3772 1999
## 352 AD Andorra 32416.1429 1998
## 353 AD Andorra 31325.6417 1997
## 354 AD Andorra 28701.2086 1996
## 355 AD Andorra 27641.9961 1995
## 356 AD Andorra 27408.3889 1994
## 357 AD Andorra 27517.6580 1993
## 358 AD Andorra 28792.3124 1992
## 359 AD Andorra 29642.8291 1991
## 360 AD Andorra 30051.2970 1990
## 361 AD Andorra 30091.3687 1989
## 362 AD Andorra 29854.9187 1988
## 363 AD Andorra 29564.9384 1987
## 364 AD Andorra 29178.6586 1986
## 365 AD Andorra 29480.4634 1985
## 366 AD Andorra 30084.6863 1984
## 367 AD Andorra 30897.0741 1983
## 368 AD Andorra 31709.4219 1982
## 369 AD Andorra 32669.5914 1981
## 370 AD Andorra 37640.1263 2021
## 371 AD Andorra 34588.0537 2020
## 372 AD Andorra 39003.5392 2019
## 373 AE United Arab Emirates NA 2021
## 374 AE United Arab Emirates 37497.5807 2020
## 375 AE United Arab Emirates 40438.3257 2019
## 376 AE United Arab Emirates 39670.9190 2018
## 377 AE United Arab Emirates 39798.5091 2017
## 378 AE United Arab Emirates 39400.0053 2016
## 379 AE United Arab Emirates 38663.3883 2015
## 380 AE United Arab Emirates 36995.6900 2014
## 381 AE United Arab Emirates 35495.7540 2013
## 382 AE United Arab Emirates 33996.5281 2012
## 383 AE United Arab Emirates 33246.1301 2011
## 384 AE United Arab Emirates 32534.8072 2010
## 385 AE United Arab Emirates 34580.2023 2009
## 386 AE United Arab Emirates 40755.0989 2008
## 387 AE United Arab Emirates 45388.6673 2007
## 388 AE United Arab Emirates 51197.3396 2006
## 389 AE United Arab Emirates 53844.7058 2005
## 390 AE United Arab Emirates 57910.2130 2004
## 391 AE United Arab Emirates 57932.2331 2003
## 392 AE United Arab Emirates 56815.0664 2002
## 393 AE United Arab Emirates 58421.8441 2001
## 394 AE United Arab Emirates 60716.2539 2000
## 395 AE United Arab Emirates 57875.0740 1999
## 396 AE United Arab Emirates 59297.9207 1998
## 397 AE United Arab Emirates 62264.9131 1997
## 398 AE United Arab Emirates 60548.5642 1996
## 399 AE United Arab Emirates 60169.0552 1995
## 400 AE United Arab Emirates 59364.6946 1994
## 401 AE United Arab Emirates 58633.2887 1993
## 402 AE United Arab Emirates 61294.5453 1992
## 403 AE United Arab Emirates 62854.0726 1991
## 404 AE United Arab Emirates 66023.6263 1990
## 405 AE United Arab Emirates 59119.7576 1989
## 406 AE United Arab Emirates 55816.1572 1988
## 407 AE United Arab Emirates 60813.4793 1987
## 408 AE United Arab Emirates 62368.0166 1986
## 409 AE United Arab Emirates 77644.4145 1985
## 410 AE United Arab Emirates 85032.9507 1984
## 411 AE United Arab Emirates 86108.7683 1983
## 412 AE United Arab Emirates 95337.9852 1982
## 413 AE United Arab Emirates 108563.1766 1981
## 414 AE United Arab Emirates 111574.2690 1980
## 415 AE United Arab Emirates 98553.2726 1979
## 416 AE United Arab Emirates 90889.7686 1978
## 417 AE United Arab Emirates 104936.6281 1977
## 418 AE United Arab Emirates 99606.9779 1976
## 419 AE United Arab Emirates 99453.4265 1975
## 420 AE United Arab Emirates NA 1974
## 421 AE United Arab Emirates NA 1973
## 422 AE United Arab Emirates NA 1972
## 423 AE United Arab Emirates NA 1971
## 424 AE United Arab Emirates NA 1970
## 425 AE United Arab Emirates NA 1969
## 426 AE United Arab Emirates NA 1968
## 427 AE United Arab Emirates NA 1967
## 428 AE United Arab Emirates NA 1966
## 429 AE United Arab Emirates NA 1965
## 430 AE United Arab Emirates NA 1964
## 431 AE United Arab Emirates NA 1963
## 432 AE United Arab Emirates NA 1962
## 433 AE United Arab Emirates NA 1961
## 434 AE United Arab Emirates NA 1960
## 435 AF Afghanistan 556.0072 2015
## 436 AF Afghanistan 511.9985 2011
## 437 AF Afghanistan 565.1793 2014
## 438 AF Afghanistan 568.9645 2013
## 439 AF Afghanistan 557.9497 2012
## 440 AF Afghanistan 392.7105 2007
## 441 AF Afghanistan 526.1037 2010
## 442 AF Afghanistan 472.8423 2009
## 443 AF Afghanistan 398.9711 2008
## 444 AF Afghanistan 332.2200 2003
## 445 AF Afghanistan 319.8471 2002
## 446 AF Afghanistan NA 2001
## 447 AF Afghanistan NA 2000
## 448 AF Afghanistan NA 1999
## 449 AF Afghanistan NA 1998
## 450 AF Afghanistan NA 1997
## 451 AF Afghanistan NA 1996
## 452 AF Afghanistan NA 1995
## 453 AF Afghanistan NA 1994
## 454 AF Afghanistan 353.7206 2006
## 455 AF Afghanistan 345.9258 2005
## 456 AF Afghanistan 322.6680 2004
## 457 AF Afghanistan NA 1977
## 458 AF Afghanistan NA 1976
## 459 AF Afghanistan NA 1975
## 460 AF Afghanistan NA 1974
## 461 AF Afghanistan NA 1973
## 462 AF Afghanistan NA 1972
## 463 AF Afghanistan NA 1971
## 464 AF Afghanistan NA 1970
## 465 AF Afghanistan NA 1969
## 466 AF Afghanistan NA 1968
## 467 AF Afghanistan NA 1967
## 468 AF Afghanistan NA 1966
## 469 AF Afghanistan NA 1965
## 470 AF Afghanistan NA 1964
## 471 AF Afghanistan NA 1963
## 472 AF Afghanistan NA 1962
## 473 AF Afghanistan NA 1961
## 474 AF Afghanistan NA 1960
## 475 AF Afghanistan NA 1986
## 476 AF Afghanistan NA 1985
## 477 AF Afghanistan NA 1984
## 478 AF Afghanistan NA 1983
## 479 AF Afghanistan NA 1982
## 480 AF Afghanistan NA 1981
## 481 AF Afghanistan NA 1993
## 482 AF Afghanistan NA 1992
## 483 AF Afghanistan NA 1991
## 484 AF Afghanistan NA 1990
## 485 AF Afghanistan NA 1989
## 486 AF Afghanistan NA 1988
## 487 AF Afghanistan NA 1987
## 488 AF Afghanistan 553.3551 2017
## 489 AF Afghanistan 552.9969 2016
## 490 AF Afghanistan NA 1980
## 491 AF Afghanistan NA 1979
## 492 AF Afghanistan NA 1978
## 493 AF Afghanistan NA 2021
## 494 AF Afghanistan 529.7412 2020
## 495 AF Afghanistan 555.1390 2019
## 496 AF Afghanistan 546.7430 2018
## 497 AG Antigua and Barbuda 16786.4474 2019
## 498 AG Antigua and Barbuda 14285.3298 2015
## 499 AG Antigua and Barbuda 16146.5927 2018
## 500 AG Antigua and Barbuda 15242.3731 2017
## 501 AG Antigua and Barbuda 14919.2060 2016
## 502 AG Antigua and Barbuda 13285.6447 2020
## 503 AG Antigua and Barbuda 16785.7470 2006
## 504 AG Antigua and Barbuda 15122.1856 2005
## 505 AG Antigua and Barbuda 14399.8207 2004
## 506 AG Antigua and Barbuda 13792.5009 2003
## 507 AG Antigua and Barbuda 13170.6260 2002
## 508 AG Antigua and Barbuda 13908.9916 2014
## 509 AG Antigua and Barbuda 13554.4014 2013
## 510 AG Antigua and Barbuda 13802.7075 2012
## 511 AG Antigua and Barbuda 13525.4449 2011
## 512 AG Antigua and Barbuda 13986.8409 2010
## 513 AG Antigua and Barbuda 15401.9686 2009
## 514 AG Antigua and Barbuda 17771.1932 2008
## 515 AG Antigua and Barbuda 18062.4657 2007
## 516 AG Antigua and Barbuda 6830.3986 1980
## 517 AG Antigua and Barbuda 6306.1351 1979
## 518 AG Antigua and Barbuda 5826.2412 1978
## 519 AG Antigua and Barbuda 5570.4320 1977
## 520 AG Antigua and Barbuda NA 1976
## 521 AG Antigua and Barbuda NA 1975
## 522 AG Antigua and Barbuda NA 1974
## 523 AG Antigua and Barbuda NA 1973
## 524 AG Antigua and Barbuda NA 1972
## 525 AG Antigua and Barbuda NA 1971
## 526 AG Antigua and Barbuda NA 1970
## 527 AG Antigua and Barbuda NA 1969
## 528 AG Antigua and Barbuda NA 1968
## 529 AG Antigua and Barbuda NA 1967
## 530 AG Antigua and Barbuda NA 1966
## 531 AG Antigua and Barbuda NA 1965
## 532 AG Antigua and Barbuda NA 1964
## 533 AG Antigua and Barbuda NA 1963
## 534 AG Antigua and Barbuda NA 1962
## 535 AG Antigua and Barbuda 13220.0448 2001
## 536 AG Antigua and Barbuda 14069.5148 2000
## 537 AG Antigua and Barbuda 13484.1865 1999
## 538 AG Antigua and Barbuda 13260.4943 1998
## 539 AG Antigua and Barbuda 12928.4418 1997
## 540 AG Antigua and Barbuda 12525.1679 1996
## 541 AG Antigua and Barbuda 12006.5186 1995
## 542 AG Antigua and Barbuda 12828.6104 1994
## 543 AG Antigua and Barbuda 12286.0333 1993
## 544 AG Antigua and Barbuda 11908.4932 1992
## 545 AG Antigua and Barbuda 11975.7403 1991
## 546 AG Antigua and Barbuda 11876.1994 1990
## 547 AG Antigua and Barbuda 11626.7788 1989
## 548 AG Antigua and Barbuda 11091.1203 1988
## 549 AG Antigua and Barbuda 10549.2467 1987
## 550 AG Antigua and Barbuda 9887.0879 1986
## 551 AG Antigua and Barbuda 8863.3849 1985
## 552 AG Antigua and Barbuda 8234.1286 1984
## 553 AG Antigua and Barbuda 7474.9651 1983
## 554 AG Antigua and Barbuda 7094.3045 1982
## 555 AG Antigua and Barbuda 7099.2353 1981
## 556 AG Antigua and Barbuda 13872.5822 2021
## 557 AG Antigua and Barbuda NA 1961
## 558 AG Antigua and Barbuda NA 1960
## 559 AL Albania 4090.3717 2016
## 560 AL Albania 4543.3865 2019
## 561 AL Albania 4431.5392 2018
## 562 AL Albania 4249.8037 2017
## 563 AL Albania 4831.8687 2021
## 564 AL Albania 4410.4552 2020
## 565 AL Albania 1305.0007 1994
## 566 AL Albania 1197.5806 1993
## 567 AL Albania 1086.4385 1992
## 568 AL Albania 1163.4913 1991
## 569 AL Albania 1606.2960 1990
## 570 AL Albania 1808.6456 1989
## 571 AL Albania 1691.5305 1988
## 572 AL Albania 1748.5783 1987
## 573 AL Albania 1798.0146 1986
## 574 AL Albania 1735.2899 1985
## 575 AL Albania 1740.3472 1984
## 576 AL Albania 1799.8781 1983
## 577 AL Albania 1818.3673 1982
## 578 AL Albania 1804.0103 1981
## 579 AL Albania 1740.5054 1980
## 580 AL Albania NA 1979
## 581 AL Albania NA 1978
## 582 AL Albania NA 1977
## 583 AL Albania NA 1976
## 584 AL Albania 3952.8025 2015
## 585 AL Albania 3855.7597 2014
## 586 AL Albania 3780.6982 2013
## 587 AL Albania 3736.3391 2012
## 588 AL Albania 3678.0467 2011
## 589 AL Albania 3577.1134 2010
## 590 AL Albania 3432.1700 2009
## 591 AL Albania 3298.4780 2008
## 592 AL Albania 3044.8958 2007
## 593 AL Albania 2851.3670 2006
## 594 AL Albania 2675.5079 2005
## 595 AL Albania 2522.4487 2004
## 596 AL Albania 2380.6440 2003
## 597 AL Albania 2247.4975 2002
## 598 AL Albania 2143.5263 2001
## 599 AL Albania 1960.8819 2000
## 600 AL Albania 1821.8727 1999
## 601 AL Albania 1603.6472 1998
## 602 AL Albania 1464.2976 1997
## 603 AL Albania 1633.5516 1996
## 604 AL Albania 1488.0205 1995
## 605 AL Albania NA 1968
## 606 AL Albania NA 1967
## 607 AL Albania NA 1966
## 608 AL Albania NA 1965
## 609 AL Albania NA 1964
## 610 AL Albania NA 1963
## 611 AL Albania NA 1975
## 612 AL Albania NA 1974
## 613 AL Albania NA 1973
## 614 AL Albania NA 1972
## 615 AL Albania NA 1971
## 616 AL Albania NA 1970
## 617 AL Albania NA 1969
## 618 AL Albania NA 1960
## 619 AL Albania NA 1962
## 620 AL Albania NA 1961
## 621 AM Armenia 4021.0463 2020
## 622 AM Armenia 4350.4662 2019
## 623 AM Armenia 4051.3850 2018
## 624 AM Armenia 4243.2379 2021
## 625 AM Armenia 3335.2442 2008
## 626 AM Armenia 3093.3693 2007
## 627 AM Armenia 2697.0190 2006
## 628 AM Armenia 2364.1759 2005
## 629 AM Armenia 3860.2181 2017
## 630 AM Armenia 3601.4697 2016
## 631 AM Armenia 3607.2893 2015
## 632 AM Armenia 3511.2251 2014
## 633 AM Armenia 3406.5361 2013
## 634 AM Armenia 3312.9800 2012
## 635 AM Armenia 3098.7423 2011
## 636 AM Armenia 2958.8390 2010
## 637 AM Armenia 2884.3395 2009
## 638 AM Armenia NA 1982
## 639 AM Armenia NA 1981
## 640 AM Armenia NA 1980
## 641 AM Armenia NA 1979
## 642 AM Armenia NA 1978
## 643 AM Armenia NA 1977
## 644 AM Armenia NA 1976
## 645 AM Armenia NA 1975
## 646 AM Armenia NA 1974
## 647 AM Armenia NA 1973
## 648 AM Armenia NA 1972
## 649 AM Armenia NA 1971
## 650 AM Armenia NA 1970
## 651 AM Armenia NA 1969
## 652 AM Armenia NA 1968
## 653 AM Armenia NA 1967
## 654 AM Armenia NA 1966
## 655 AM Armenia NA 1965
## 656 AM Armenia 2062.2032 2004
## 657 AM Armenia 1855.5968 2003
## 658 AM Armenia 1619.1122 2002
## 659 AM Armenia 1422.4767 2001
## 660 AM Armenia 1289.8843 2000
## 661 AM Armenia 1210.3624 1999
## 662 AM Armenia 1164.2822 1998
## 663 AM Armenia 1076.6250 1997
## 664 AM Armenia 1030.4639 1996
## 665 AM Armenia 958.5062 1995
## 666 AM Armenia 878.5302 1994
## 667 AM Armenia 813.8298 1993
## 668 AM Armenia 871.6972 1992
## 669 AM Armenia 1471.0862 1991
## 670 AM Armenia 1650.5106 1990
## 671 AM Armenia NA 1989
## 672 AM Armenia NA 1988
## 673 AM Armenia NA 1987
## 674 AM Armenia NA 1986
## 675 AM Armenia NA 1985
## 676 AM Armenia NA 1984
## 677 AM Armenia NA 1983
## 678 AM Armenia NA 1962
## 679 AM Armenia NA 1961
## 680 AM Armenia NA 1964
## 681 AM Armenia NA 1963
## 682 AM Armenia NA 1960
## 683 AO Angola NA 1960
## 684 AO Angola 1832.3557 2000
## 685 AO Angola 1837.2788 1999
## 686 AO Angola 1857.4376 1998
## 687 AO Angola 1832.4296 1997
## 688 AO Angola 1764.0233 1996
## 689 AO Angola 1604.3461 1995
## 690 AO Angola 1440.6904 1994
## 691 AO Angola 1468.2628 1993
## 692 AO Angola 1995.2414 1992
## 693 AO Angola 2189.6118 1991
## 694 AO Angola 2241.4077 1990
## 695 AO Angola 2401.2716 1989
## 696 AO Angola 2484.1414 1988
## 697 AO Angola 2423.6323 1987
## 698 AO Angola 2411.8512 1986
## 699 AO Angola 2428.1386 1985
## 700 AO Angola 2430.7545 1984
## 701 AO Angola 2376.3710 1983
## 702 AO Angola 2363.4074 1982
## 703 AO Angola 2331.4954 2021
## 704 AO Angola 2390.4781 2020
## 705 AO Angola 2612.3470 2019
## 706 AO Angola 2717.4741 2018
## 707 AO Angola 2845.4317 2017
## 708 AO Angola 2945.9681 2016
## 709 AO Angola 3127.8906 2015
## 710 AO Angola 3207.1781 2014
## 711 AO Angola 3168.6053 2013
## 712 AO Angola 3128.3247 2012
## 713 AO Angola 2987.7679 2011
## 714 AO Angola 2994.4380 2010
## 715 AO Angola 2962.4468 2009
## 716 AO Angola 3048.0156 2008
## 717 AO Angola 2845.4064 2007
## 718 AO Angola 2589.3217 2006
## 719 AO Angola 2406.7783 2005
## 720 AO Angola 2167.6472 2004
## 721 AO Angola 2022.3551 2003
## 722 AO Angola 2031.1233 2002
## 723 AO Angola 1847.4202 2001
## 724 AO Angola NA 1974
## 725 AO Angola NA 1973
## 726 AO Angola NA 1972
## 727 AO Angola NA 1971
## 728 AO Angola NA 1970
## 729 AO Angola NA 1969
## 730 AO Angola 2448.8828 1981
## 731 AO Angola 2653.4729 1980
## 732 AO Angola NA 1979
## 733 AO Angola NA 1978
## 734 AO Angola NA 1977
## 735 AO Angola NA 1976
## 736 AO Angola NA 1975
## 737 AO Angola NA 1961
## 738 AO Angola NA 1965
## 739 AO Angola NA 1968
## 740 AO Angola NA 1967
## 741 AO Angola NA 1966
## 742 AO Angola NA 1964
## 743 AO Angola NA 1963
## 744 AO Angola NA 1962
## 745 AR Argentina 7637.0667 1961
## 746 AR Argentina 7362.5341 1960
## 747 AR Argentina 11445.5649 1998
## 748 AR Argentina 11146.7210 1997
## 749 AR Argentina 10730.6082 2000
## 750 AR Argentina 10935.6446 1999
## 751 AR Argentina 10423.3789 1994
## 752 AR Argentina 9974.0044 1993
## 753 AR Argentina 9338.6995 1992
## 754 AR Argentina 8769.7504 1991
## 755 AR Argentina 8149.2406 1990
## 756 AR Argentina 8477.6729 1989
## 757 AR Argentina 9269.3558 1988
## 758 AR Argentina 9517.1086 1987
## 759 AR Argentina 9412.9948 1986
## 760 AR Argentina 9009.0017 1985
## 761 AR Argentina 9655.1836 1984
## 762 AR Argentina 10430.6825 1996
## 763 AR Argentina 10003.0917 1995
## 764 AR Argentina 12390.8087 2021
## 765 AR Argentina 11344.4057 2020
## 766 AR Argentina 12712.9707 2019
## 767 AR Argentina 13105.3972 2018
## 768 AR Argentina 13595.0374 2017
## 769 AR Argentina 13360.2118 2016
## 770 AR Argentina 13789.0604 2015
## 771 AR Argentina 13567.9484 2014
## 772 AR Argentina 14071.5087 2013
## 773 AR Argentina 13895.6337 2012
## 774 AR Argentina 14200.2699 2011
## 775 AR Argentina 13551.3392 2010
## 776 AR Argentina 12398.2836 2009
## 777 AR Argentina 13310.6237 2008
## 778 AR Argentina 12919.2354 2007
## 779 AR Argentina 11970.6554 2006
## 780 AR Argentina 11192.1796 2005
## 781 AR Argentina 10389.1513 2004
## 782 AR Argentina 9629.8441 2003
## 783 AR Argentina 8943.3080 2002
## 784 AR Argentina 10146.1068 2001
## 785 AR Argentina 10100.0685 1974
## 786 AR Argentina 9725.4670 1973
## 787 AR Argentina 9614.2379 1972
## 788 AR Argentina 9613.6769 1971
## 789 AR Argentina 9660.1921 1983
## 790 AR Argentina 9407.8746 1982
## 791 AR Argentina 9630.1152 1981
## 792 AR Argentina 10318.1830 1980
## 793 AR Argentina 10321.2391 1979
## 794 AR Argentina 9505.8562 1978
## 795 AR Argentina 10103.6274 1977
## 796 AR Argentina 9591.1720 1976
## 797 AR Argentina 9939.6966 1975
## 798 AR Argentina 9243.2566 1970
## 799 AR Argentina 9108.4969 1969
## 800 AR Argentina 8429.8689 1968
## 801 AR Argentina 8161.6021 1967
## 802 AR Argentina 8026.8762 1966
## 803 AR Argentina 8202.1125 1965
## 804 AR Argentina 7532.0045 1964
## 805 AR Argentina 6945.9571 1963
## 806 AR Argentina 7451.8034 1962
## 807 AS American Samoa NA 2021
## 808 AS American Samoa 11839.0105 2020
## 809 AS American Samoa 11368.5696 2019
## 810 AS American Samoa NA 1997
## 811 AS American Samoa NA 1996
## 812 AS American Samoa NA 1995
## 813 AS American Samoa NA 1994
## 814 AS American Samoa NA 1993
## 815 AS American Samoa NA 1992
## 816 AS American Samoa NA 1991
## 817 AS American Samoa NA 1990
## 818 AS American Samoa NA 1989
## 819 AS American Samoa NA 1988
## 820 AS American Samoa NA 1987
## 821 AS American Samoa NA 1986
## 822 AS American Samoa NA 1985
## 823 AS American Samoa NA 1984
## 824 AS American Samoa NA 1983
## 825 AS American Samoa NA 1982
## 826 AS American Samoa NA 1981
## 827 AS American Samoa NA 1980
## 828 AS American Samoa NA 1979
## 829 AS American Samoa 11393.6057 2018
## 830 AS American Samoa 11066.0602 2017
## 831 AS American Samoa 11871.3595 2016
## 832 AS American Samoa 12059.6352 2015
## 833 AS American Samoa 11694.5454 2014
## 834 AS American Samoa 11507.2257 2013
## 835 AS American Samoa 11812.4591 2012
## 836 AS American Samoa 12328.6653 2011
## 837 AS American Samoa 12256.3429 2010
## 838 AS American Samoa 12092.2765 2009
## 839 AS American Samoa 12439.1497 2008
## 840 AS American Samoa 12586.7160 2007
## 841 AS American Samoa 12202.7374 2006
## 842 AS American Samoa 12628.5077 2005
## 843 AS American Samoa 12653.2818 2004
## 844 AS American Samoa 12641.6679 2003
## 845 AS American Samoa 12609.3685 2002
## 846 AS American Samoa NA 2001
## 847 AS American Samoa NA 2000
## 848 AS American Samoa NA 1999
## 849 AS American Samoa NA 1998
## 850 AS American Samoa NA 1971
## 851 AS American Samoa NA 1970
## 852 AS American Samoa NA 1969
## 853 AS American Samoa NA 1968
## 854 AS American Samoa NA 1967
## 855 AS American Samoa NA 1966
## 856 AS American Samoa NA 1978
## 857 AS American Samoa NA 1977
## 858 AS American Samoa NA 1976
## 859 AS American Samoa NA 1975
## 860 AS American Samoa NA 1974
## 861 AS American Samoa NA 1973
## 862 AS American Samoa NA 1972
## 863 AS American Samoa NA 1963
## 864 AS American Samoa NA 1962
## 865 AS American Samoa NA 1965
## 866 AS American Samoa NA 1964
## 867 AS American Samoa NA 1961
## 868 AS American Samoa NA 1960
## 869 AT Austria 14471.8213 1965
## 870 AT Austria 12904.6699 1962
## 871 AT Austria 12648.9747 1961
## 872 AT Austria 14076.2762 1964
## 873 AT Austria 13352.6511 1963
## 874 AT Austria 15521.8096 1967
## 875 AT Austria 15181.5888 1966
## 876 AT Austria 32962.8174 1994
## 877 AT Austria 32313.7119 1993
## 878 AT Austria 32410.5398 1992
## 879 AT Austria 32097.2411 1991
## 880 AT Austria 31340.6813 1990
## 881 AT Austria 12051.1512 1960
## 882 AT Austria 39184.8086 2001
## 883 AT Austria 38842.8905 2000
## 884 AT Austria 37664.9433 1999
## 885 AT Austria 36442.2882 1998
## 886 AT Austria 35220.8877 1997
## 887 AT Austria 34537.7396 1996
## 888 AT Austria 33790.4850 1995
## 889 AT Austria 45090.7589 2021
## 890 AT Austria 43346.4318 2020
## 891 AT Austria 46669.7512 2019
## 892 AT Austria 46188.9665 2018
## 893 AT Austria 45281.7234 2017
## 894 AT Austria 44590.2516 2016
## 895 AT Austria 44195.8176 2015
## 896 AT Austria 44245.1687 2014
## 897 AT Austria 44299.3782 2013
## 898 AT Austria 44549.8817 2012
## 899 AT Austria 44451.0002 2011
## 900 AT Austria 43334.5090 2010
## 901 AT Austria 42655.1921 2009
## 902 AT Austria 44440.0559 2008
## 903 AT Austria 43937.7129 2007
## 904 AT Austria 42496.3511 2006
## 905 AT Austria 41281.2708 2005
## 906 AT Austria 40651.2266 2004
## 907 AT Austria 39815.2220 2003
## 908 AT Austria 39636.4826 2002
## 909 AT Austria 29264.3236 1988
## 910 AT Austria 28370.7179 1987
## 911 AT Austria 28008.5546 1986
## 912 AT Austria 27395.8726 1985
## 913 AT Austria 26740.5772 1984
## 914 AT Austria 26725.1907 1983
## 915 AT Austria 25911.6609 1982
## 916 AT Austria 25419.0096 1981
## 917 AT Austria 25520.7406 1980
## 918 AT Austria 25086.4002 1979
## 919 AT Austria 23770.3662 1978
## 920 AT Austria 23801.2675 1977
## 921 AT Austria 30265.1932 1989
## 922 AT Austria 21629.0463 1975
## 923 AT Austria 21650.4868 1974
## 924 AT Austria 20864.8475 1973
## 925 AT Austria 20002.5561 1972
## 926 AT Austria 18943.1811 1971
## 927 AT Austria 18101.9919 1970
## 928 AT Austria 17085.3300 1969
## 929 AT Austria 16132.0095 1968
## 930 AT Austria 22659.3178 1976
## 931 AU Australia 58780.3331 2021
## 932 AU Australia 54108.1111 2011
## 933 AU Australia 53542.8337 2010
## 934 AU Australia 53225.9510 2009
## 935 AU Australia 53338.6028 2008
## 936 AU Australia 58029.5155 2020
## 937 AU Australia 58781.0467 2019
## 938 AU Australia 58447.2527 2018
## 939 AU Australia 57695.5713 2017
## 940 AU Australia 57358.7828 2016
## 941 AU Australia 56707.0221 2015
## 942 AU Australia 56305.9791 2014
## 943 AU Australia 55723.9482 2013
## 944 AU Australia 55254.6062 2012
## 945 AU Australia 32995.1381 1985
## 946 AU Australia 31780.2585 1984
## 947 AU Australia 30729.8076 1983
## 948 AU Australia 31823.6227 1982
## 949 AU Australia 31318.0837 1981
## 950 AU Australia 30790.9685 1980
## 951 AU Australia 30250.3701 1979
## 952 AU Australia 29388.5744 1978
## 953 AU Australia 29468.8425 1977
## 954 AU Australia 28769.1030 1976
## 955 AU Australia 28325.0161 1975
## 956 AU Australia 28297.9448 1974
## 957 AU Australia 27878.8169 1973
## 958 AU Australia 27585.7828 1972
## 959 AU Australia 27040.5103 1971
## 960 AU Australia 26894.5065 1970
## 961 AU Australia 25593.1264 1969
## 962 AU Australia 24414.7801 1968
## 963 AU Australia 52538.9756 2007
## 964 AU Australia 50948.2250 2006
## 965 AU Australia 50332.8748 2005
## 966 AU Australia 49439.1223 2004
## 967 AU Australia 47997.1371 2003
## 968 AU Australia 47127.2781 2002
## 969 AU Australia 45864.7680 2001
## 970 AU Australia 45558.7531 2000
## 971 AU Australia 44369.2728 1999
## 972 AU Australia 42767.7940 1998
## 973 AU Australia 41309.8260 1997
## 974 AU Australia 40203.3023 1996
## 975 AU Australia 39223.1608 1995
## 976 AU Australia 38234.0299 1994
## 977 AU Australia 37161.6791 1993
## 978 AU Australia 36072.0398 1992
## 979 AU Australia 36361.9423 1991
## 980 AU Australia 36974.4509 1990
## 981 AU Australia 36231.0162 1989
## 982 AU Australia 35478.4268 1988
## 983 AU Australia 34104.8306 1987
## 984 AU Australia 33767.1612 1986
## 985 AU Australia 20045.8437 1961
## 986 AU Australia 19953.2063 1960
## 987 AU Australia 21659.1521 1964
## 988 AU Australia 23644.6005 1967
## 989 AU Australia 22525.0520 1966
## 990 AU Australia 22509.0974 1965
## 991 AU Australia 20647.4859 1963
## 992 AU Australia 19815.7496 1962
## 993 AW Aruba NA 1964
## 994 AW Aruba NA 1963
## 995 AW Aruba NA 1961
## 996 AW Aruba NA 1960
## 997 AW Aruba 28442.5161 2000
## 998 AW Aruba NA 1962
## 999 AW Aruba 27298.5555 1994
## 1000 AW Aruba 26693.9204 1993
## 1001 AW Aruba 26427.1629 1992
## 1002 AW Aruba 26355.9613 1991
## 1003 AW Aruba 25382.6194 1990
## 1004 AW Aruba 24863.0671 1989
## 1005 AW Aruba 22159.3018 1988
## 1006 AW Aruba 18445.0562 1987
## 1007 AW Aruba 26980.8907 1999
## 1008 AW Aruba 27178.8908 1998
## 1009 AW Aruba 27218.7610 1997
## 1010 AW Aruba 26111.1313 1996
## 1011 AW Aruba 26732.6236 1995
## 1012 AW Aruba NA 2021
## 1013 AW Aruba 23026.3329 2020
## 1014 AW Aruba 29769.2939 2019
## 1015 AW Aruba 30536.6672 2018
## 1016 AW Aruba 30293.3515 2017
## 1017 AW Aruba 28854.7133 2016
## 1018 AW Aruba 28399.0501 2015
## 1019 AW Aruba 27575.9303 2014
## 1020 AW Aruba 27744.9321 2013
## 1021 AW Aruba 26221.2595 2012
## 1022 AW Aruba 26629.2995 2011
## 1023 AW Aruba 25859.5109 2010
## 1024 AW Aruba 26641.8166 2009
## 1025 AW Aruba 30193.1098 2008
## 1026 AW Aruba 29689.3416 2007
## 1027 AW Aruba 28910.6607 2006
## 1028 AW Aruba 28814.2916 2005
## 1029 AW Aruba 29301.7636 2004
## 1030 AW Aruba 27799.5774 2003
## 1031 AW Aruba 28077.1931 2002
## 1032 AW Aruba 28989.5852 2001
## 1033 AW Aruba NA 1974
## 1034 AW Aruba 15685.4677 1986
## 1035 AW Aruba NA 1985
## 1036 AW Aruba NA 1984
## 1037 AW Aruba NA 1983
## 1038 AW Aruba NA 1982
## 1039 AW Aruba NA 1981
## 1040 AW Aruba NA 1980
## 1041 AW Aruba NA 1979
## 1042 AW Aruba NA 1978
## 1043 AW Aruba NA 1977
## 1044 AW Aruba NA 1976
## 1045 AW Aruba NA 1975
## 1046 AW Aruba NA 1970
## 1047 AW Aruba NA 1973
## 1048 AW Aruba NA 1972
## 1049 AW Aruba NA 1971
## 1050 AW Aruba NA 1966
## 1051 AW Aruba NA 1969
## 1052 AW Aruba NA 1968
## 1053 AW Aruba NA 1967
## 1054 AW Aruba NA 1965
## 1055 AZ Azerbaijan 5194.7384 2012
## 1056 AZ Azerbaijan 5152.6575 2011
## 1057 AZ Azerbaijan 5215.0209 2010
## 1058 AZ Azerbaijan 5425.9053 2013
## 1059 AZ Azerbaijan 5340.4904 2021
## 1060 AZ Azerbaijan 5083.3816 2020
## 1061 AZ Azerbaijan 5348.2653 2019
## 1062 AZ Azerbaijan 5262.1838 2018
## 1063 AZ Azerbaijan 5229.5261 2017
## 1064 AZ Azerbaijan 5270.5530 2016
## 1065 AZ Azerbaijan 5500.3104 2015
## 1066 AZ Azerbaijan 5505.9882 2014
## 1067 AZ Azerbaijan NA 1987
## 1068 AZ Azerbaijan NA 1986
## 1069 AZ Azerbaijan NA 1985
## 1070 AZ Azerbaijan NA 1984
## 1071 AZ Azerbaijan NA 1983
## 1072 AZ Azerbaijan NA 1982
## 1073 AZ Azerbaijan NA 1981
## 1074 AZ Azerbaijan NA 1980
## 1075 AZ Azerbaijan NA 1979
## 1076 AZ Azerbaijan NA 1978
## 1077 AZ Azerbaijan NA 1977
## 1078 AZ Azerbaijan NA 1976
## 1079 AZ Azerbaijan NA 1975
## 1080 AZ Azerbaijan NA 1974
## 1081 AZ Azerbaijan NA 1973
## 1082 AZ Azerbaijan NA 1972
## 1083 AZ Azerbaijan NA 1971
## 1084 AZ Azerbaijan NA 1970
## 1085 AZ Azerbaijan 5023.7908 2009
## 1086 AZ Azerbaijan 4692.9122 2008
## 1087 AZ Azerbaijan 4326.9616 2007
## 1088 AZ Azerbaijan 3501.0418 2006
## 1089 AZ Azerbaijan 2631.7590 2005
## 1090 AZ Azerbaijan 2077.8123 2004
## 1091 AZ Azerbaijan 1918.5436 2003
## 1092 AZ Azerbaijan 1754.0736 2002
## 1093 AZ Azerbaijan 1614.7921 2001
## 1094 AZ Azerbaijan 1480.7567 2000
## 1095 AZ Azerbaijan 1343.8087 1999
## 1096 AZ Azerbaijan 1262.2475 1998
## 1097 AZ Azerbaijan 1158.4410 1997
## 1098 AZ Azerbaijan 1105.5484 1996
## 1099 AZ Azerbaijan 1102.4592 1995
## 1100 AZ Azerbaijan 1264.4828 1994
## 1101 AZ Azerbaijan 1596.0766 1993
## 1102 AZ Azerbaijan 2107.2227 1992
## 1103 AZ Azerbaijan 2763.9769 1991
## 1104 AZ Azerbaijan 2820.7410 1990
## 1105 AZ Azerbaijan NA 1989
## 1106 AZ Azerbaijan NA 1988
## 1107 AZ Azerbaijan NA 1962
## 1108 AZ Azerbaijan NA 1961
## 1109 AZ Azerbaijan NA 1960
## 1110 AZ Azerbaijan NA 1968
## 1111 AZ Azerbaijan NA 1967
## 1112 AZ Azerbaijan NA 1966
## 1113 AZ Azerbaijan NA 1969
## 1114 AZ Azerbaijan NA 1964
## 1115 AZ Azerbaijan NA 1963
## 1116 AZ Azerbaijan NA 1965
## 1117 B8 Central Europe and the Baltics NA 1970
## 1118 B8 Central Europe and the Baltics NA 1976
## 1119 B8 Central Europe and the Baltics NA 1979
## 1120 B8 Central Europe and the Baltics NA 1978
## 1121 B8 Central Europe and the Baltics NA 1975
## 1122 B8 Central Europe and the Baltics NA 1971
## 1123 B8 Central Europe and the Baltics 12940.1793 2016
## 1124 B8 Central Europe and the Baltics NA 1974
## 1125 B8 Central Europe and the Baltics NA 1977
## 1126 B8 Central Europe and the Baltics 13605.0467 2017
## 1127 B8 Central Europe and the Baltics NA 1985
## 1128 B8 Central Europe and the Baltics NA 1984
## 1129 B8 Central Europe and the Baltics NA 1973
## 1130 B8 Central Europe and the Baltics NA 1972
## 1131 B8 Central Europe and the Baltics NA 1981
## 1132 B8 Central Europe and the Baltics NA 1980
## 1133 B8 Central Europe and the Baltics 15187.5802 2021
## 1134 B8 Central Europe and the Baltics 14316.2584 2020
## 1135 B8 Central Europe and the Baltics 14844.3166 2019
## 1136 B8 Central Europe and the Baltics 14244.0241 2018
## 1137 B8 Central Europe and the Baltics 8379.3178 2003
## 1138 B8 Central Europe and the Baltics 12522.6611 2015
## 1139 B8 Central Europe and the Baltics 12019.3545 2014
## 1140 B8 Central Europe and the Baltics 11646.6681 2013
## 1141 B8 Central Europe and the Baltics 11479.5755 2012
## 1142 B8 Central Europe and the Baltics NA 1983
## 1143 B8 Central Europe and the Baltics NA 1982
## 1144 B8 Central Europe and the Baltics 10779.6995 2009
## 1145 B8 Central Europe and the Baltics 11149.1079 2008
## 1146 B8 Central Europe and the Baltics 10689.3952 2007
## 1147 B8 Central Europe and the Baltics 10006.8693 2006
## 1148 B8 Central Europe and the Baltics 9364.5451 2005
## 1149 B8 Central Europe and the Baltics 8892.7063 2004
## 1150 B8 Central Europe and the Baltics NA 1989
## 1151 B8 Central Europe and the Baltics 8025.2415 2002
## 1152 B8 Central Europe and the Baltics 7695.4741 2001
## 1153 B8 Central Europe and the Baltics 7411.7233 2000
## 1154 B8 Central Europe and the Baltics 7089.6327 1999
## 1155 B8 Central Europe and the Baltics 11366.5397 2011
## 1156 B8 Central Europe and the Baltics 11002.4434 2010
## 1157 B8 Central Europe and the Baltics 6287.4336 1995
## 1158 B8 Central Europe and the Baltics 5939.1689 1994
## 1159 B8 Central Europe and the Baltics 5703.8778 1993
## 1160 B8 Central Europe and the Baltics 5613.4095 1992
## 1161 B8 Central Europe and the Baltics 5706.5689 1991
## 1162 B8 Central Europe and the Baltics 6308.5478 1990
## 1163 B8 Central Europe and the Baltics NA 1964
## 1164 B8 Central Europe and the Baltics NA 1988
## 1165 B8 Central Europe and the Baltics NA 1987
## 1166 B8 Central Europe and the Baltics NA 1986
## 1167 B8 Central Europe and the Baltics NA 1960
## 1168 B8 Central Europe and the Baltics NA 1968
## 1169 B8 Central Europe and the Baltics 6945.4498 1998
## 1170 B8 Central Europe and the Baltics 6752.6852 1997
## 1171 B8 Central Europe and the Baltics NA 1969
## 1172 B8 Central Europe and the Baltics 6587.4083 1996
## 1173 B8 Central Europe and the Baltics NA 1967
## 1174 B8 Central Europe and the Baltics NA 1966
## 1175 B8 Central Europe and the Baltics NA 1965
## 1176 B8 Central Europe and the Baltics NA 1963
## 1177 B8 Central Europe and the Baltics NA 1962
## 1178 B8 Central Europe and the Baltics NA 1961
## 1179 BA Bosnia and Herzegovina 3056.5368 2002
## 1180 BA Bosnia and Herzegovina 2314.4349 1998
## 1181 BA Bosnia and Herzegovina 2913.2296 2001
## 1182 BA Bosnia and Herzegovina 2847.5925 2000
## 1183 BA Bosnia and Herzegovina 2530.5118 1999
## 1184 BA Bosnia and Herzegovina 619.1424 1994
## 1185 BA Bosnia and Herzegovina NA 1993
## 1186 BA Bosnia and Herzegovina NA 1992
## 1187 BA Bosnia and Herzegovina NA 1991
## 1188 BA Bosnia and Herzegovina NA 1990
## 1189 BA Bosnia and Herzegovina NA 1989
## 1190 BA Bosnia and Herzegovina NA 1988
## 1191 BA Bosnia and Herzegovina NA 1987
## 1192 BA Bosnia and Herzegovina NA 1986
## 1193 BA Bosnia and Herzegovina NA 1985
## 1194 BA Bosnia and Herzegovina 2001.1782 1997
## 1195 BA Bosnia and Herzegovina 1477.8734 1996
## 1196 BA Bosnia and Herzegovina 768.9175 1995
## 1197 BA Bosnia and Herzegovina 5854.6673 2021
## 1198 BA Bosnia and Herzegovina 5437.5102 2020
## 1199 BA Bosnia and Herzegovina 5578.2665 2019
## 1200 BA Bosnia and Herzegovina 5387.2697 2018
## 1201 BA Bosnia and Herzegovina 5150.2733 2017
## 1202 BA Bosnia and Herzegovina 4940.7599 2016
## 1203 BA Bosnia and Herzegovina 4729.6901 2015
## 1204 BA Bosnia and Herzegovina 4518.4659 2014
## 1205 BA Bosnia and Herzegovina 4390.6489 2013
## 1206 BA Bosnia and Herzegovina 4215.6199 2012
## 1207 BA Bosnia and Herzegovina 4185.3042 2011
## 1208 BA Bosnia and Herzegovina 4095.9609 2010
## 1209 BA Bosnia and Herzegovina 4027.6914 2009
## 1210 BA Bosnia and Herzegovina 4132.1913 2008
## 1211 BA Bosnia and Herzegovina 3909.9716 2007
## 1212 BA Bosnia and Herzegovina 3691.0502 2006
## 1213 BA Bosnia and Herzegovina 3501.5636 2005
## 1214 BA Bosnia and Herzegovina 3371.2390 2004
## 1215 BA Bosnia and Herzegovina 3172.3830 2003
## 1216 BA Bosnia and Herzegovina NA 1963
## 1217 BA Bosnia and Herzegovina NA 1962
## 1218 BA Bosnia and Herzegovina NA 1961
## 1219 BA Bosnia and Herzegovina NA 1960
## 1220 BA Bosnia and Herzegovina NA 1973
## 1221 BA Bosnia and Herzegovina NA 1972
## 1222 BA Bosnia and Herzegovina NA 1984
## 1223 BA Bosnia and Herzegovina NA 1983
## 1224 BA Bosnia and Herzegovina NA 1982
## 1225 BA Bosnia and Herzegovina NA 1981
## 1226 BA Bosnia and Herzegovina NA 1980
## 1227 BA Bosnia and Herzegovina NA 1979
## 1228 BA Bosnia and Herzegovina NA 1978
## 1229 BA Bosnia and Herzegovina NA 1977
## 1230 BA Bosnia and Herzegovina NA 1976
## 1231 BA Bosnia and Herzegovina NA 1975
## 1232 BA Bosnia and Herzegovina NA 1974
## 1233 BA Bosnia and Herzegovina NA 1969
## 1234 BA Bosnia and Herzegovina NA 1968
## 1235 BA Bosnia and Herzegovina NA 1971
## 1236 BA Bosnia and Herzegovina NA 1970
## 1237 BA Bosnia and Herzegovina NA 1965
## 1238 BA Bosnia and Herzegovina NA 1964
## 1239 BA Bosnia and Herzegovina NA 1967
## 1240 BA Bosnia and Herzegovina NA 1966
## 1241 BB Barbados 16950.3243 2016
## 1242 BB Barbados 16678.5495 2019
## 1243 BB Barbados 16803.2646 2018
## 1244 BB Barbados 17002.0271 2017
## 1245 BB Barbados 14512.7794 2021
## 1246 BB Barbados 14329.1899 2020
## 1247 BB Barbados 13594.4438 1993
## 1248 BB Barbados 13537.7062 1992
## 1249 BB Barbados 14408.4618 1991
## 1250 BB Barbados 15049.4351 1990
## 1251 BB Barbados 15622.4318 1989
## 1252 BB Barbados 15137.2723 1988
## 1253 BB Barbados 14678.9247 1987
## 1254 BB Barbados 14358.0093 1986
## 1255 BB Barbados 13706.4274 1985
## 1256 BB Barbados 13598.2334 1984
## 1257 BB Barbados 13161.8243 1983
## 1258 BB Barbados 13132.9301 1982
## 1259 BB Barbados 13852.3716 1981
## 1260 BB Barbados 14171.4293 1980
## 1261 BB Barbados 13633.9035 1979
## 1262 BB Barbados 12694.4332 1978
## 1263 BB Barbados 12165.8269 1977
## 1264 BB Barbados 11802.1571 1976
## 1265 BB Barbados 16558.8648 2015
## 1266 BB Barbados 16187.7870 2014
## 1267 BB Barbados 16232.1870 2013
## 1268 BB Barbados 16505.1853 2012
## 1269 BB Barbados 16618.5592 2011
## 1270 BB Barbados 16784.4206 2010
## 1271 BB Barbados 17253.6389 2009
## 1272 BB Barbados 18240.4529 2008
## 1273 BB Barbados 18205.4033 2007
## 1274 BB Barbados 17913.6595 2006
## 1275 BB Barbados 16952.2925 2005
## 1276 BB Barbados 16368.6955 2004
## 1277 BB Barbados 16196.8644 2003
## 1278 BB Barbados 15904.6494 2002
## 1279 BB Barbados 15834.1936 2001
## 1280 BB Barbados 16276.5366 2000
## 1281 BB Barbados 15644.3548 1999
## 1282 BB Barbados 15657.0712 1998
## 1283 BB Barbados 15159.0684 1997
## 1284 BB Barbados 14534.5992 1996
## 1285 BB Barbados 14036.1339 1995
## 1286 BB Barbados 13814.1896 1994
## 1287 BB Barbados NA 1970
## 1288 BB Barbados NA 1969
## 1289 BB Barbados NA 1968
## 1290 BB Barbados NA 1967
## 1291 BB Barbados NA 1966
## 1292 BB Barbados NA 1965
## 1293 BB Barbados NA 1964
## 1294 BB Barbados NA 1963
## 1295 BB Barbados 11374.5720 1975
## 1296 BB Barbados 11666.6782 1974
## 1297 BB Barbados NA 1973
## 1298 BB Barbados NA 1972
## 1299 BB Barbados NA 1971
## 1300 BB Barbados NA 1962
## 1301 BB Barbados NA 1961
## 1302 BB Barbados NA 1960
## 1303 BD Bangladesh 401.4605 1972
## 1304 BD Bangladesh 474.4632 1971
## 1305 BD Bangladesh 512.1212 1970
## 1306 BD Bangladesh 496.8835 1969
## 1307 BD Bangladesh 505.0833 1968
## 1308 BD Bangladesh 476.0313 1967
## 1309 BD Bangladesh 501.0596 1966
## 1310 BD Bangladesh 504.1547 1965
## 1311 BD Bangladesh 511.3578 1964
## 1312 BD Bangladesh 474.4725 1963
## 1313 BD Bangladesh 490.2620 1962
## 1314 BD Bangladesh 477.9952 1961
## 1315 BD Bangladesh 463.3574 1960
## 1316 BD Bangladesh 653.8086 2000
## 1317 BD Bangladesh 633.1827 1999
## 1318 BD Bangladesh 617.2923 1998
## 1319 BD Bangladesh 599.2275 1997
## 1320 BD Bangladesh 585.7169 1996
## 1321 BD Bangladesh 572.4385 1995
## 1322 BD Bangladesh 1715.3548 2021
## 1323 BD Bangladesh 1619.7759 2020
## 1324 BD Bangladesh 1581.5675 2019
## 1325 BD Bangladesh 1481.1834 2018
## 1326 BD Bangladesh 1394.7814 2017
## 1327 BD Bangladesh 1322.6948 2016
## 1328 BD Bangladesh 1248.4533 2015
## 1329 BD Bangladesh 1184.8633 2014
## 1330 BD Bangladesh 1129.9935 2013
## 1331 BD Bangladesh 1078.2875 2012
## 1332 BD Bangladesh 1024.0220 2011
## 1333 BD Bangladesh 972.9097 2010
## 1334 BD Bangladesh 931.9865 2009
## 1335 BD Bangladesh 897.1890 2008
## 1336 BD Bangladesh 856.0459 2007
## 1337 BD Bangladesh 809.4736 2006
## 1338 BD Bangladesh 769.1360 2005
## 1339 BD Bangladesh 732.7488 2004
## 1340 BD Bangladesh 707.6051 2003
## 1341 BD Bangladesh 687.3833 2002
## 1342 BD Bangladesh 674.1670 2001
## 1343 BD Bangladesh 496.4329 1987
## 1344 BD Bangladesh 491.1358 1986
## 1345 BD Bangladesh 484.0480 1985
## 1346 BD Bangladesh 480.8311 1984
## 1347 BD Bangladesh 470.9053 1983
## 1348 BD Bangladesh 465.2501 1982
## 1349 BD Bangladesh 556.2989 1994
## 1350 BD Bangladesh 547.0514 1993
## 1351 BD Bangladesh 533.8880 1992
## 1352 BD Bangladesh 517.7637 1991
## 1353 BD Bangladesh 512.0966 1990
## 1354 BD Bangladesh 496.7616 1989
## 1355 BD Bangladesh 495.4038 1988
## 1356 BD Bangladesh 440.6036 1974
## 1357 BD Bangladesh 408.6063 1973
## 1358 BD Bangladesh 467.5867 1981
## 1359 BD Bangladesh 447.6949 1980
## 1360 BD Bangladesh 456.1454 1979
## 1361 BD Bangladesh 447.2395 1978
## 1362 BD Bangladesh 428.9870 1977
## 1363 BD Bangladesh 428.3799 1976
## 1364 BD Bangladesh 414.6048 1975
## 1365 BE Belgium 40424.6388 2020
## 1366 BE Belgium 43065.5151 2019
## 1367 BE Belgium 42403.5336 2018
## 1368 BE Belgium 41825.7628 2017
## 1369 BE Belgium 42787.2952 2021
## 1370 BE Belgium 30664.3079 1994
## 1371 BE Belgium 29797.4063 1993
## 1372 BE Belgium 30204.5638 1992
## 1373 BE Belgium 29870.1478 1991
## 1374 BE Belgium 29441.6621 1990
## 1375 BE Belgium 28631.3191 1989
## 1376 BE Belgium 27772.0520 1988
## 1377 BE Belgium 26603.9281 1987
## 1378 BE Belgium 26026.2805 1986
## 1379 BE Belgium 25569.4893 1985
## 1380 BE Belgium 25161.4910 1984
## 1381 BE Belgium 24555.4810 1983
## 1382 BE Belgium 24477.1999 1982
## 1383 BE Belgium 24325.8133 1981
## 1384 BE Belgium 24393.2982 1980
## 1385 BE Belgium 23381.1272 1979
## 1386 BE Belgium 22866.8232 1978
## 1387 BE Belgium 22255.6844 1977
## 1388 BE Belgium 41318.0196 2016
## 1389 BE Belgium 41008.2967 2015
## 1390 BE Belgium 40421.4208 2014
## 1391 BE Belgium 39970.3175 2013
## 1392 BE Belgium 39975.5736 2012
## 1393 BE Belgium 39929.0951 2011
## 1394 BE Belgium 39777.9253 2010
## 1395 BE Belgium 39025.2208 2009
## 1396 BE Belgium 40151.8499 2008
## 1397 BE Belgium 40290.2278 2007
## 1398 BE Belgium 39147.7636 2006
## 1399 BE Belgium 38426.0519 2005
## 1400 BE Belgium 37761.2813 2004
## 1401 BE Belgium 36617.3804 2003
## 1402 BE Belgium 36393.2418 2002
## 1403 BE Belgium 35943.2380 2001
## 1404 BE Belgium 35674.7913 2000
## 1405 BE Belgium 34479.9064 1999
## 1406 BE Belgium 33376.5748 1998
## 1407 BE Belgium 32804.3605 1997
## 1408 BE Belgium 31681.9364 1996
## 1409 BE Belgium 31329.8921 1995
## 1410 BE Belgium 16922.3544 1969
## 1411 BE Belgium 15915.1957 1968
## 1412 BE Belgium 15334.7679 1967
## 1413 BE Belgium 14846.0973 1966
## 1414 BE Belgium 14489.4451 1965
## 1415 BE Belgium 14118.9023 1964
## 1416 BE Belgium 22144.5236 1976
## 1417 BE Belgium 20997.2068 1975
## 1418 BE Belgium 21480.2613 1974
## 1419 BE Belgium 20607.1809 1973
## 1420 BE Belgium 19432.0310 1972
## 1421 BE Belgium 18527.1487 1971
## 1422 BE Belgium 17849.4947 1970
## 1423 BE Belgium 12277.6347 1961
## 1424 BE Belgium 11734.3062 1960
## 1425 BE Belgium 13326.1133 1963
## 1426 BE Belgium 12866.2288 1962
## 1427 BF Burkina Faso 539.8200 2007
## 1428 BF Burkina Faso 534.3567 2006
## 1429 BF Burkina Faso 582.4157 2010
## 1430 BF Burkina Faso 553.5167 2009
## 1431 BF Burkina Faso 554.1121 2008
## 1432 BF Burkina Faso 355.1484 1994
## 1433 BF Burkina Faso 360.2307 1993
## 1434 BF Burkina Faso 518.1679 2005
## 1435 BF Burkina Faso 491.1847 2004
## 1436 BF Burkina Faso 484.0971 2003
## 1437 BF Burkina Faso 462.2656 2002
## 1438 BF Burkina Faso 455.9077 2001
## 1439 BF Burkina Faso 440.0284 2000
## 1440 BF Burkina Faso 444.3225 1999
## 1441 BF Burkina Faso 425.5692 1998
## 1442 BF Burkina Faso 407.8607 1997
## 1443 BF Burkina Faso 394.4573 1996
## 1444 BF Burkina Faso 365.2805 1995
## 1445 BF Burkina Faso 760.4409 2021
## 1446 BF Burkina Faso 731.5221 2020
## 1447 BF Burkina Faso 738.2189 2019
## 1448 BF Burkina Faso 718.6426 2018
## 1449 BF Burkina Faso 693.7264 2017
## 1450 BF Burkina Faso 672.3630 2016
## 1451 BF Burkina Faso 653.3273 2015
## 1452 BF Burkina Faso 647.4287 2014
## 1453 BF Burkina Faso 639.2329 2013
## 1454 BF Burkina Faso 622.5197 2012
## 1455 BF Burkina Faso 602.5791 2011
## 1456 BF Burkina Faso 275.5481 1971
## 1457 BF Burkina Faso 276.4800 1970
## 1458 BF Burkina Faso 280.9734 1969
## 1459 BF Burkina Faso 280.1640 1968
## 1460 BF Burkina Faso 276.4476 1967
## 1461 BF Burkina Faso 258.2219 1966
## 1462 BF Burkina Faso 260.8854 1965
## 1463 BF Burkina Faso 255.1672 1964
## 1464 BF Burkina Faso 252.9991 1963
## 1465 BF Burkina Faso 259.7345 1962
## 1466 BF Burkina Faso 248.0226 1961
## 1467 BF Burkina Faso 241.6055 1960
## 1468 BF Burkina Faso 357.9641 1986
## 1469 BF Burkina Faso 340.2861 1985
## 1470 BF Burkina Faso 321.7663 1984
## 1471 BF Burkina Faso 336.0867 1983
## 1472 BF Burkina Faso 343.4740 1982
## 1473 BF Burkina Faso 321.2653 1981
## 1474 BF Burkina Faso 315.4840 1980
## 1475 BF Burkina Faso 357.7423 1992
## 1476 BF Burkina Faso 366.6537 1991
## 1477 BF Burkina Faso 345.2842 1990
## 1478 BF Burkina Faso 356.7400 1989
## 1479 BF Burkina Faso 358.5714 1988
## 1480 BF Burkina Faso 347.9318 1987
## 1481 BF Burkina Faso 273.2942 1973
## 1482 BF Burkina Faso 276.9908 1972
## 1483 BF Burkina Faso 312.7148 1976
## 1484 BF Burkina Faso 320.0823 1979
## 1485 BF Burkina Faso 315.4257 1978
## 1486 BF Burkina Faso 307.7464 1977
## 1487 BF Burkina Faso 293.7170 1975
## 1488 BF Burkina Faso 290.5729 1974
## 1489 BG Bulgaria NA 1976
## 1490 BG Bulgaria NA 1975
## 1491 BG Bulgaria NA 1974
## 1492 BG Bulgaria NA 1973
## 1493 BG Bulgaria NA 1972
## 1494 BG Bulgaria NA 1971
## 1495 BG Bulgaria NA 1979
## 1496 BG Bulgaria NA 1978
## 1497 BG Bulgaria NA 1977
## 1498 BG Bulgaria 4427.0107 1990
## 1499 BG Bulgaria 4784.0546 1989
## 1500 BG Bulgaria 4889.2563 1988
## 1501 BG Bulgaria 4411.8862 1987
## 1502 BG Bulgaria 4166.1417 1986
## 1503 BG Bulgaria 3996.8648 1985
## 1504 BG Bulgaria 3892.3568 1984
## 1505 BG Bulgaria 3773.3160 1983
## 1506 BG Bulgaria 3657.2878 1982
## 1507 BG Bulgaria 3584.4414 1981
## 1508 BG Bulgaria 3428.4095 1980
## 1509 BG Bulgaria 8293.5679 2021
## 1510 BG Bulgaria 7920.9113 2020
## 1511 BG Bulgaria 8234.7813 2019
## 1512 BG Bulgaria 7859.6780 2018
## 1513 BG Bulgaria 7599.1250 2017
## 1514 BG Bulgaria 7341.0476 2016
## 1515 BG Bulgaria 7074.6810 2015
## 1516 BG Bulgaria 6796.6891 2014
## 1517 BG Bulgaria 6693.4502 2013
## 1518 BG Bulgaria NA 1970
## 1519 BG Bulgaria NA 1969
## 1520 BG Bulgaria NA 1968
## 1521 BG Bulgaria NA 1967
## 1522 BG Bulgaria NA 1966
## 1523 BG Bulgaria NA 1965
## 1524 BG Bulgaria NA 1964
## 1525 BG Bulgaria NA 1963
## 1526 BG Bulgaria NA 1962
## 1527 BG Bulgaria NA 1961
## 1528 BG Bulgaria NA 1960
## 1529 BG Bulgaria 3937.4349 2001
## 1530 BG Bulgaria 3717.6770 2000
## 1531 BG Bulgaria 3537.1058 1999
## 1532 BG Bulgaria 3839.7167 1998
## 1533 BG Bulgaria 3674.9318 1997
## 1534 BG Bulgaria 4252.9465 1996
## 1535 BG Bulgaria 4021.7228 1995
## 1536 BG Bulgaria 3892.7111 1994
## 1537 BG Bulgaria 3810.2437 1993
## 1538 BG Bulgaria 3836.7640 1992
## 1539 BG Bulgaria 4093.4767 1991
## 1540 BG Bulgaria 4849.5429 2004
## 1541 BG Bulgaria 4518.8782 2003
## 1542 BG Bulgaria 4260.1161 2002
## 1543 BG Bulgaria 6427.8101 2010
## 1544 BG Bulgaria 6288.6774 2009
## 1545 BG Bulgaria 6693.6124 2012
## 1546 BG Bulgaria 6605.0898 2011
## 1547 BG Bulgaria 5629.4199 2006
## 1548 BG Bulgaria 5230.9837 2005
## 1549 BG Bulgaria 6459.6409 2008
## 1550 BG Bulgaria 6044.7594 2007
## 1551 BH Bahrain 22552.6846 2016
## 1552 BH Bahrain 22634.0856 2015
## 1553 BH Bahrain 22676.6259 2014
## 1554 BH Bahrain 22078.9905 2013
## 1555 BH Bahrain 19446.6843 2021
## 1556 BH Bahrain 19545.5786 2020
## 1557 BH Bahrain 21317.3365 2019
## 1558 BH Bahrain 21818.7423 2018
## 1559 BH Bahrain 22445.4526 2017
## 1560 BH Bahrain 18160.1694 1990
## 1561 BH Bahrain 17925.0720 1989
## 1562 BH Bahrain 18469.8463 1988
## 1563 BH Bahrain 17885.0193 1987
## 1564 BH Bahrain 16779.7366 1986
## 1565 BH Bahrain 17139.0701 1985
## 1566 BH Bahrain 18534.2249 1984
## 1567 BH Bahrain 18131.0725 1983
## 1568 BH Bahrain 17507.8734 1982
## 1569 BH Bahrain 19537.9587 1981
## 1570 BH Bahrain 21450.5528 1980
## 1571 BH Bahrain NA 1979
## 1572 BH Bahrain NA 1978
## 1573 BH Bahrain NA 1977
## 1574 BH Bahrain NA 1976
## 1575 BH Bahrain NA 1975
## 1576 BH Bahrain NA 1974
## 1577 BH Bahrain NA 1973
## 1578 BH Bahrain 21187.5419 2012
## 1579 BH Bahrain 20774.2449 2011
## 1580 BH Bahrain 20982.3405 2010
## 1581 BH Bahrain 21057.4208 2009
## 1582 BH Bahrain 21833.4120 2008
## 1583 BH Bahrain 22111.6801 2007
## 1584 BH Bahrain 22069.2804 2006
## 1585 BH Bahrain 22343.5374 2005
## 1586 BH Bahrain 22422.6899 2004
## 1587 BH Bahrain 22335.9324 2003
## 1588 BH Bahrain 22258.1949 2002
## 1589 BH Bahrain 22697.6169 2001
## 1590 BH Bahrain 23243.5909 2000
## 1591 BH Bahrain 23047.0707 1999
## 1592 BH Bahrain 22919.3940 1998
## 1593 BH Bahrain 22561.7924 1997
## 1594 BH Bahrain 22500.0710 1996
## 1595 BH Bahrain 22185.4956 1995
## 1596 BH Bahrain 21894.5445 1994
## 1597 BH Bahrain 22497.0364 1993
## 1598 BH Bahrain 20432.1239 1992
## 1599 BH Bahrain 19651.3379 1991
## 1600 BH Bahrain NA 1965
## 1601 BH Bahrain NA 1964
## 1602 BH Bahrain NA 1963
## 1603 BH Bahrain NA 1962
## 1604 BH Bahrain NA 1961
## 1605 BH Bahrain NA 1960
## 1606 BH Bahrain NA 1972
## 1607 BH Bahrain NA 1971
## 1608 BH Bahrain NA 1970
## 1609 BH Bahrain NA 1969
## 1610 BH Bahrain NA 1968
## 1611 BH Bahrain NA 1967
## 1612 BH Bahrain NA 1966
## 1613 BI Burundi 380.4441 1978
## 1614 BI Burundi 340.6100 1975
## 1615 BI Burundi 343.3002 1974
## 1616 BI Burundi 393.5041 1977
## 1617 BI Burundi 360.8393 1976
## 1618 BI Burundi 371.0652 1980
## 1619 BI Burundi 377.0426 1979
## 1620 BI Burundi 445.0490 1992
## 1621 BI Burundi 450.1510 1991
## 1622 BI Burundi 438.6573 1990
## 1623 BI Burundi 434.3570 1989
## 1624 BI Burundi 440.0463 1988
## 1625 BI Burundi 430.7657 1987
## 1626 BI Burundi 420.0272 1986
## 1627 BI Burundi 418.4433 1985
## 1628 BI Burundi 384.8441 1984
## 1629 BI Burundi 394.8021 1983
## 1630 BI Burundi 390.8993 1982
## 1631 BI Burundi 405.5441 1981
## 1632 BI Burundi 267.3191 2021
## 1633 BI Burundi 270.6577 2020
## 1634 BI Burundi 278.2026 2019
## 1635 BI Burundi 281.9347 2018
## 1636 BI Burundi 286.3955 2017
## 1637 BI Burundi 294.1818 2016
## 1638 BI Burundi 305.5111 2015
## 1639 BI Burundi 349.7761 1973
## 1640 BI Burundi 330.4840 1972
## 1641 BI Burundi 357.0627 1971
## 1642 BI Burundi 352.6043 1970
## 1643 BI Burundi 296.1735 1969
## 1644 BI Burundi 307.4938 1968
## 1645 BI Burundi 316.3489 1967
## 1646 BI Burundi 285.1856 1966
## 1647 BI Burundi 279.3160 1965
## 1648 BI Burundi 274.7020 1964
## 1649 BI Burundi 263.8824 1963
## 1650 BI Burundi 258.3797 1962
## 1651 BI Burundi 241.4665 1961
## 1652 BI Burundi 285.4030 1960
## 1653 BI Burundi 306.5459 2000
## 1654 BI Burundi 314.7080 1999
## 1655 BI Burundi 322.1114 1998
## 1656 BI Burundi 310.6911 1997
## 1657 BI Burundi 318.9419 1996
## 1658 BI Burundi 350.9068 1995
## 1659 BI Burundi 386.7793 1994
## 1660 BI Burundi 409.1825 1993
## 1661 BI Burundi 301.7527 2006
## 1662 BI Burundi 295.6999 2005
## 1663 BI Burundi 302.6440 2004
## 1664 BI Burundi 297.9877 2003
## 1665 BI Burundi 310.9062 2002
## 1666 BI Burundi 328.1058 2014
## 1667 BI Burundi 324.7877 2013
## 1668 BI Burundi 319.3983 2012
## 1669 BI Burundi 315.6172 2011
## 1670 BI Burundi 313.2724 2010
## 1671 BI Burundi 307.8655 2009
## 1672 BI Burundi 306.4688 2008
## 1673 BI Burundi 302.0690 2007
## 1674 BI Burundi 305.8160 2001
## 1675 BJ Benin 1260.7346 2021
## 1676 BJ Benin 1214.6596 2020
## 1677 BJ Benin 854.0429 1997
## 1678 BJ Benin 832.5564 1996
## 1679 BJ Benin 823.5493 1995
## 1680 BJ Benin 802.6062 1994
## 1681 BJ Benin 814.1313 1993
## 1682 BJ Benin 796.6429 1992
## 1683 BJ Benin 801.1509 1991
## 1684 BJ Benin 795.0717 1990
## 1685 BJ Benin 753.5700 1989
## 1686 BJ Benin 800.1418 1988
## 1687 BJ Benin 797.2660 1987
## 1688 BJ Benin 833.4363 1986
## 1689 BJ Benin 839.7489 1985
## 1690 BJ Benin 803.8021 1984
## 1691 BJ Benin 766.2911 1983
## 1692 BJ Benin 824.0122 1982
## 1693 BJ Benin 828.6980 1981
## 1694 BJ Benin 774.5521 1980
## 1695 BJ Benin 1201.5614 2019
## 1696 BJ Benin 1155.3132 2018
## 1697 BJ Benin 1112.8171 2017
## 1698 BJ Benin 1082.4513 2016
## 1699 BJ Benin 1076.7967 2015
## 1700 BJ Benin 1087.7200 2014
## 1701 BJ Benin 1051.5519 2013
## 1702 BJ Benin 1008.7663 2012
## 1703 BJ Benin 989.7674 2011
## 1704 BJ Benin 988.6108 2010
## 1705 BJ Benin 995.6942 2009
## 1706 BJ Benin 1000.8515 2008
## 1707 BJ Benin 981.4557 2007
## 1708 BJ Benin 952.8312 2006
## 1709 BJ Benin 943.6293 2005
## 1710 BJ Benin 955.5342 2004
## 1711 BJ Benin 942.9186 2003
## 1712 BJ Benin 939.6617 2002
## 1713 BJ Benin 925.7161 2001
## 1714 BJ Benin 905.8263 2000
## 1715 BJ Benin 881.6194 1999
## 1716 BJ Benin 861.9871 1998
## 1717 BJ Benin 760.7693 1972
## 1718 BJ Benin 730.9189 1971
## 1719 BJ Benin 758.3926 1970
## 1720 BJ Benin 758.8828 1969
## 1721 BJ Benin 753.2653 1968
## 1722 BJ Benin 740.3185 1967
## 1723 BJ Benin 745.1334 1979
## 1724 BJ Benin 718.1942 1978
## 1725 BJ Benin 727.9854 1977
## 1726 BJ Benin 711.3009 1976
## 1727 BJ Benin 722.7728 1975
## 1728 BJ Benin 778.5152 1974
## 1729 BJ Benin 771.1977 1973
## 1730 BJ Benin 710.3672 1964
## 1731 BJ Benin 677.3573 1963
## 1732 BJ Benin 746.9336 1966
## 1733 BJ Benin 734.7887 1965
## 1734 BJ Benin 679.0217 1960
## 1735 BJ Benin 657.0928 1962
## 1736 BJ Benin 690.6246 1961
## 1737 BM Bermuda 76999.1578 1978
## 1738 BM Bermuda 78360.6870 1979
## 1739 BM Bermuda 63637.7154 1974
## 1740 BM Bermuda 76180.8013 1977
## 1741 BM Bermuda 72208.7316 1976
## 1742 BM Bermuda 66534.0406 1975
## 1743 BM Bermuda 48593.3905 1966
## 1744 BM Bermuda 43253.5439 1965
## 1745 BM Bermuda 42301.4324 1964
## 1746 BM Bermuda 39029.4477 1963
## 1747 BM Bermuda 39527.7963 1962
## 1748 BM Bermuda 38751.2332 1961
## 1749 BM Bermuda 62615.3153 1973
## 1750 BM Bermuda 61244.5370 1972
## 1751 BM Bermuda 59713.4403 1971
## 1752 BM Bermuda 57309.1584 1970
## 1753 BM Bermuda 54904.6943 1969
## 1754 BM Bermuda 54082.1391 1968
## 1755 BM Bermuda 53985.6405 1967
## 1756 BM Bermuda 101617.5573 2021
## 1757 BM Bermuda 99728.6431 2020
## 1758 BM Bermuda 107036.2393 2019
## 1759 BM Bermuda 106697.7375 2018
## 1760 BM Bermuda 107237.0318 2017
## 1761 BM Bermuda 102407.3944 2016
## 1762 BM Bermuda 102005.6256 2015
## 1763 BM Bermuda 101374.4698 2014
## 1764 BM Bermuda 105492.4807 2013
## 1765 BM Bermuda 106119.7950 2012
## 1766 BM Bermuda 112471.3475 2011
## 1767 BM Bermuda 115839.7960 2010
## 1768 BM Bermuda 117886.7380 2009
## 1769 BM Bermuda 125610.0334 2008
## 1770 BM Bermuda 128757.8807 2007
## 1771 BM Bermuda 125294.9594 2006
## 1772 BM Bermuda 119396.4494 2005
## 1773 BM Bermuda 118193.1487 2004
## 1774 BM Bermuda 116268.8169 2003
## 1775 BM Bermuda 113172.1206 2002
## 1776 BM Bermuda 37935.8868 1960
## 1777 BM Bermuda 109001.5860 2000
## 1778 BM Bermuda 100602.9275 1999
## 1779 BM Bermuda 97857.3233 1998
## 1780 BM Bermuda 94878.4922 1997
## 1781 BM Bermuda 91261.1515 1996
## 1782 BM Bermuda 89518.2776 1995
## 1783 BM Bermuda 86361.9528 1994
## 1784 BM Bermuda 86444.6782 1993
## 1785 BM Bermuda 84371.0357 1992
## 1786 BM Bermuda 83812.1328 1991
## 1787 BM Bermuda 86436.2343 1990
## 1788 BM Bermuda 87131.9494 1989
## 1789 BM Bermuda 87481.3788 1988
## 1790 BM Bermuda 84794.9969 1987
## 1791 BM Bermuda 82395.2732 1986
## 1792 BM Bermuda 77902.6542 1985
## 1793 BM Bermuda 80164.5663 1984
## 1794 BM Bermuda 80483.7350 1983
## 1795 BM Bermuda 79583.1340 1982
## 1796 BM Bermuda 84633.1605 1981
## 1797 BM Bermuda 83239.5346 1980
## 1798 BM Bermuda 115619.4747 2001
## 1799 BN Brunei Darussalam 35064.8667 2007
## 1800 BN Brunei Darussalam 35455.6356 2006
## 1801 BN Brunei Darussalam 34441.1226 2005
## 1802 BN Brunei Darussalam 34850.1442 2004
## 1803 BN Brunei Darussalam 33981.3370 2008
## 1804 BN Brunei Darussalam 35126.3737 1994
## 1805 BN Brunei Darussalam 34994.3426 1993
## 1806 BN Brunei Darussalam 35881.1439 1992
## 1807 BN Brunei Darussalam 35239.4057 1991
## 1808 BN Brunei Darussalam 35277.8023 2003
## 1809 BN Brunei Darussalam 34926.6281 2002
## 1810 BN Brunei Darussalam 34291.1358 2001
## 1811 BN Brunei Darussalam 34063.6146 2000
## 1812 BN Brunei Darussalam 33825.7126 1999
## 1813 BN Brunei Darussalam 33551.9701 1998
## 1814 BN Brunei Darussalam 34516.2129 1997
## 1815 BN Brunei Darussalam 35875.9246 1996
## 1816 BN Brunei Darussalam 35753.4100 1995
## 1817 BN Brunei Darussalam 29927.0437 2021
## 1818 BN Brunei Darussalam 30696.8771 2020
## 1819 BN Brunei Darussalam 30646.1092 2019
## 1820 BN Brunei Darussalam 29802.7829 2018
## 1821 BN Brunei Darussalam 30101.5288 2017
## 1822 BN Brunei Darussalam 30038.7345 2016
## 1823 BN Brunei Darussalam 31164.0363 2015
## 1824 BN Brunei Darussalam 31678.9373 2014
## 1825 BN Brunei Darussalam 32924.9900 2013
## 1826 BN Brunei Darussalam 34096.9076 2012
## 1827 BN Brunei Darussalam 34244.2069 2011
## 1828 BN Brunei Darussalam 33437.1217 2010
## 1829 BN Brunei Darussalam 32991.8236 2009
## 1830 BN Brunei Darussalam NA 1970
## 1831 BN Brunei Darussalam NA 1969
## 1832 BN Brunei Darussalam NA 1968
## 1833 BN Brunei Darussalam NA 1967
## 1834 BN Brunei Darussalam NA 1966
## 1835 BN Brunei Darussalam NA 1965
## 1836 BN Brunei Darussalam NA 1964
## 1837 BN Brunei Darussalam NA 1963
## 1838 BN Brunei Darussalam NA 1962
## 1839 BN Brunei Darussalam NA 1961
## 1840 BN Brunei Darussalam NA 1960
## 1841 BN Brunei Darussalam 38189.7986 1986
## 1842 BN Brunei Darussalam 40388.6399 1985
## 1843 BN Brunei Darussalam 42176.9817 1984
## 1844 BN Brunei Darussalam 43132.0048 1983
## 1845 BN Brunei Darussalam 44168.2815 1982
## 1846 BN Brunei Darussalam 43769.5125 1981
## 1847 BN Brunei Darussalam 56324.5391 1980
## 1848 BN Brunei Darussalam 62590.5458 1979
## 1849 BN Brunei Darussalam 52870.6152 1978
## 1850 BN Brunei Darussalam 35154.2312 1990
## 1851 BN Brunei Darussalam 35779.1340 1989
## 1852 BN Brunei Darussalam 37211.0630 1988
## 1853 BN Brunei Darussalam 37866.9093 1987
## 1854 BN Brunei Darussalam NA 1973
## 1855 BN Brunei Darussalam NA 1972
## 1856 BN Brunei Darussalam NA 1971
## 1857 BN Brunei Darussalam 41651.0900 1975
## 1858 BN Brunei Darussalam 43260.9222 1974
## 1859 BN Brunei Darussalam 51353.1178 1977
## 1860 BN Brunei Darussalam 48100.4102 1976
## 1861 BO Bolivia 2187.3545 1976
## 1862 BO Bolivia 2196.4573 1979
## 1863 BO Bolivia 2241.7400 1978
## 1864 BO Bolivia 2245.6781 1977
## 1865 BO Bolivia 1707.9079 1968
## 1866 BO Bolivia 1606.8997 1967
## 1867 BO Bolivia 1543.0107 1966
## 1868 BO Bolivia 1469.5908 1965
## 1869 BO Bolivia 1429.4708 1964
## 1870 BO Bolivia 1402.9152 1963
## 1871 BO Bolivia 2137.7110 1975
## 1872 BO Bolivia 2036.5020 1974
## 1873 BO Bolivia 2022.3205 1973
## 1874 BO Bolivia 1954.8409 1972
## 1875 BO Bolivia 1850.3531 1971
## 1876 BO Bolivia 1799.5711 1970
## 1877 BO Bolivia 1747.0329 1969
## 1878 BO Bolivia 1960.4304 1982
## 1879 BO Bolivia 2082.8125 1981
## 1880 BO Bolivia 2120.7018 1980
## 1881 BO Bolivia 3125.5291 2021
## 1882 BO Bolivia 2986.0244 2020
## 1883 BO Bolivia 3317.3709 2019
## 1884 BO Bolivia 3291.1564 2018
## 1885 BO Bolivia 3203.0044 2017
## 1886 BO Bolivia 3118.9137 2016
## 1887 BO Bolivia 3035.9717 2015
## 1888 BO Bolivia 2939.4775 2014
## 1889 BO Bolivia 2830.6735 2013
## 1890 BO Bolivia 2692.6075 2012
## 1891 BO Bolivia 2602.7185 2011
## 1892 BO Bolivia 2514.4348 2010
## 1893 BO Bolivia 2454.8003 2009
## 1894 BO Bolivia 2414.9734 2008
## 1895 BO Bolivia 2313.8912 2007
## 1896 BO Bolivia 2251.2750 2006
## 1897 BO Bolivia 2186.1867 2005
## 1898 BO Bolivia 1339.9392 1962
## 1899 BO Bolivia 1294.3351 1961
## 1900 BO Bolivia 1292.8056 1960
## 1901 BO Bolivia 2054.3309 2001
## 1902 BO Bolivia 2059.1853 2000
## 1903 BO Bolivia 2048.0265 1999
## 1904 BO Bolivia 2079.6967 1998
## 1905 BO Bolivia 2019.8516 1997
## 1906 BO Bolivia 1963.6408 1996
## 1907 BO Bolivia 1920.3180 1995
## 1908 BO Bolivia 1872.7099 1994
## 1909 BO Bolivia 1826.8656 1993
## 1910 BO Bolivia 1789.2400 1992
## 1911 BO Bolivia 1797.7802 1991
## 1912 BO Bolivia 1744.3120 1990
## 1913 BO Bolivia 1702.6792 1989
## 1914 BO Bolivia 1675.6038 1988
## 1915 BO Bolivia 1662.9779 1987
## 1916 BO Bolivia 1657.3881 1986
## 1917 BO Bolivia 1736.8716 1985
## 1918 BO Bolivia 1803.0550 1984
## 1919 BO Bolivia 1843.6233 1983
## 1920 BO Bolivia 2131.3071 2004
## 1921 BO Bolivia 2083.4219 2003
## 1922 BO Bolivia 2066.2417 2002
## 1923 BR Brazil 7352.2826 2005
## 1924 BR Brazil 6904.6253 2002
## 1925 BR Brazil 6788.5766 2001
## 1926 BR Brazil 7206.2618 2004
## 1927 BR Brazil 6896.1372 2003
## 1928 BR Brazil 6420.4074 1994
## 1929 BR Brazil 6165.3169 1993
## 1930 BR Brazil 5974.5901 1992
## 1931 BR Brazil 6110.7191 1991
## 1932 BR Brazil 6155.6454 1990
## 1933 BR Brazil 6553.2380 1989
## 1934 BR Brazil 6471.9527 1988
## 1935 BR Brazil 6787.6690 2000
## 1936 BR Brazil 6595.6161 1999
## 1937 BR Brazil 6662.8534 1998
## 1938 BR Brazil 6742.7117 1997
## 1939 BR Brazil 6624.1004 1996
## 1940 BR Brazil 6584.7392 1995
## 1941 BR Brazil 8551.2053 2021
## 1942 BR Brazil 8228.7743 2020
## 1943 BR Brazil 8622.0666 2019
## 1944 BR Brazil 8582.3386 2018
## 1945 BR Brazil 8498.2939 2017
## 1946 BR Brazil 8455.3123 2016
## 1947 BR Brazil 8813.9898 2015
## 1948 BR Brazil 9214.9772 2014
## 1949 BR Brazil 9247.5734 2013
## 1950 BR Brazil 9056.5804 2012
## 1951 BR Brazil 8965.6206 2011
## 1952 BR Brazil 8702.2553 2010
## 1953 BR Brazil 8169.2624 2009
## 1954 BR Brazil 8258.6159 2008
## 1955 BR Brazil 7936.8244 2007
## 1956 BR Brazil 7560.7020 2006
## 1957 BR Brazil 2893.5758 1966
## 1958 BR Brazil 2787.4388 1965
## 1959 BR Brazil 2799.6419 1964
## 1960 BR Brazil 2786.3624 1963
## 1961 BR Brazil 2851.4929 1962
## 1962 BR Brazil 2754.2463 1961
## 1963 BR Brazil 2611.0534 1960
## 1964 BR Brazil 6504.9757 1986
## 1965 BR Brazil 6178.5239 1985
## 1966 BR Brazil 5853.8973 1984
## 1967 BR Brazil 5679.8974 1983
## 1968 BR Brazil 5987.8205 1982
## 1969 BR Brazil 6079.2440 1981
## 1970 BR Brazil 6500.3878 1980
## 1971 BR Brazil 6094.9209 1979
## 1972 BR Brazil 5845.7525 1978
## 1973 BR Brazil 5702.5144 1977
## 1974 BR Brazil 5564.7634 1976
## 1975 BR Brazil 5168.2806 1975
## 1976 BR Brazil 6601.5891 1987
## 1977 BR Brazil 4764.1180 1973
## 1978 BR Brazil 4280.6683 1972
## 1979 BR Brazil 3917.2858 1971
## 1980 BR Brazil 3605.8705 1970
## 1981 BR Brazil 3349.5318 1969
## 1982 BR Brazil 3138.7857 1968
## 1983 BR Brazil 2934.9877 1967
## 1984 BR Brazil 5032.1796 1974
## 1985 BS Bahamas, The 24589.9026 1964
## 1986 BS Bahamas, The 27052.1940 1966
## 1987 BS Bahamas, The 25921.4976 1965
## 1988 BS Bahamas, The 31218.7235 1969
## 1989 BS Bahamas, The 29660.0685 1968
## 1990 BS Bahamas, The 28436.4900 1967
## 1991 BS Bahamas, The 29808.2328 1994
## 1992 BS Bahamas, The 29408.2737 1993
## 1993 BS Bahamas, The 29873.1414 1992
## 1994 BS Bahamas, The 23365.2899 1963
## 1995 BS Bahamas, The 22231.2435 1962
## 1996 BS Bahamas, The 21171.8460 1961
## 1997 BS Bahamas, The 20106.9500 1960
## 1998 BS Bahamas, The 35793.9117 2000
## 1999 BS Bahamas, The 34833.2935 1999
## 2000 BS Bahamas, The 31416.3742 1998
## 2001 BS Bahamas, The 33268.5450 1997
## 2002 BS Bahamas, The 31499.0727 1996
## 2003 BS Bahamas, The 30632.6214 1995
## 2004 BS Bahamas, The 27445.1408 2021
## 2005 BS Bahamas, The 24359.0036 2020
## 2006 BS Bahamas, The 32285.5424 2019
## 2007 BS Bahamas, The 32001.1557 2018
## 2008 BS Bahamas, The 31745.6450 2017
## 2009 BS Bahamas, The 31117.8857 2016
## 2010 BS Bahamas, The 31699.3586 2015
## 2011 BS Bahamas, The 31689.2478 2014
## 2012 BS Bahamas, The 31407.9349 2013
## 2013 BS Bahamas, The 32652.2081 2012
## 2014 BS Bahamas, The 32026.6263 2011
## 2015 BS Bahamas, The 32248.1300 2010
## 2016 BS Bahamas, The 32244.2966 2009
## 2017 BS Bahamas, The 34229.0539 2008
## 2018 BS Bahamas, The 35696.9205 2007
## 2019 BS Bahamas, The 35863.3661 2006
## 2020 BS Bahamas, The 35648.8530 2005
## 2021 BS Bahamas, The 35122.0730 2004
## 2022 BS Bahamas, The 35456.2898 2003
## 2023 BS Bahamas, The 36548.3894 2002
## 2024 BS Bahamas, The 36178.4613 2001
## 2025 BS Bahamas, The 32992.6219 1987
## 2026 BS Bahamas, The 32605.4554 1986
## 2027 BS Bahamas, The 32636.2613 1985
## 2028 BS Bahamas, The 31764.6310 1984
## 2029 BS Bahamas, The 28417.4513 1983
## 2030 BS Bahamas, The 28042.8252 1982
## 2031 BS Bahamas, The 26875.5435 1981
## 2032 BS Bahamas, The 30272.5096 1980
## 2033 BS Bahamas, The 29060.6614 1979
## 2034 BS Bahamas, The 31658.9511 1991
## 2035 BS Bahamas, The 33657.0237 1990
## 2036 BS Bahamas, The 34812.8973 1989
## 2037 BS Bahamas, The 33183.6451 1988
## 2038 BS Bahamas, The 22954.8992 1974
## 2039 BS Bahamas, The 28119.6085 1973
## 2040 BS Bahamas, The 26678.6834 1972
## 2041 BS Bahamas, The 28276.5296 1971
## 2042 BS Bahamas, The 28566.1574 1970
## 2043 BS Bahamas, The 23554.1310 1978
## 2044 BS Bahamas, The 21087.6653 1977
## 2045 BS Bahamas, The 19739.3474 1976
## 2046 BS Bahamas, The 19164.4666 1975
## 2047 BT Bhutan 1108.4398 2000
## 2048 BT Bhutan 1040.0369 1998
## 2049 BT Bhutan 1004.5050 1997
## 2050 BT Bhutan 971.3088 1996
## 2051 BT Bhutan 1096.8215 1999
## 2052 BT Bhutan 874.7688 1994
## 2053 BT Bhutan 832.4261 1993
## 2054 BT Bhutan 813.2584 1992
## 2055 BT Bhutan 777.3242 1991
## 2056 BT Bhutan 786.1482 1990
## 2057 BT Bhutan 723.9676 1989
## 2058 BT Bhutan 691.0946 1988
## 2059 BT Bhutan 679.9561 1987
## 2060 BT Bhutan 544.0795 1986
## 2061 BT Bhutan 503.6056 1985
## 2062 BT Bhutan 497.8210 1984
## 2063 BT Bhutan 488.7350 1983
## 2064 BT Bhutan 931.8786 1995
## 2065 BT Bhutan NA 2021
## 2066 BT Bhutan 2879.6386 2020
## 2067 BT Bhutan 3238.0605 2019
## 2068 BT Bhutan 3097.1484 2018
## 2069 BT Bhutan 3040.9370 2017
## 2070 BT Bhutan 2940.7000 2016
## 2071 BT Bhutan 2752.6302 2015
## 2072 BT Bhutan 2612.8863 2014
## 2073 BT Bhutan 2500.8645 2013
## 2074 BT Bhutan 2479.1517 2012
## 2075 BT Bhutan 2386.6211 2011
## 2076 BT Bhutan 2235.3227 2010
## 2077 BT Bhutan 2017.9035 2009
## 2078 BT Bhutan 1909.2459 2008
## 2079 BT Bhutan 1840.2716 2007
## 2080 BT Bhutan 1572.4621 2006
## 2081 BT Bhutan 1489.2118 2005
## 2082 BT Bhutan 1409.6480 2004
## 2083 BT Bhutan 1352.9790 2003
## 2084 BT Bhutan 1278.8778 2002
## 2085 BT Bhutan 1175.8568 2001
## 2086 BT Bhutan NA 1962
## 2087 BT Bhutan NA 1961
## 2088 BT Bhutan NA 1960
## 2089 BT Bhutan NA 1973
## 2090 BT Bhutan NA 1972
## 2091 BT Bhutan NA 1971
## 2092 BT Bhutan NA 1970
## 2093 BT Bhutan 453.8014 1982
## 2094 BT Bhutan 450.0755 1981
## 2095 BT Bhutan 401.7388 1980
## 2096 BT Bhutan NA 1979
## 2097 BT Bhutan NA 1978
## 2098 BT Bhutan NA 1977
## 2099 BT Bhutan NA 1976
## 2100 BT Bhutan NA 1975
## 2101 BT Bhutan NA 1974
## 2102 BT Bhutan NA 1969
## 2103 BT Bhutan NA 1968
## 2104 BT Bhutan NA 1967
## 2105 BT Bhutan NA 1966
## 2106 BT Bhutan NA 1965
## 2107 BT Bhutan NA 1964
## 2108 BT Bhutan NA 1963
## 2109 BW Botswana 1849.2419 1980
## 2110 BW Botswana 1713.8877 1979
## 2111 BW Botswana 653.1700 1970
## 2112 BW Botswana 572.6690 1969
## 2113 BW Botswana 509.3981 1968
## 2114 BW Botswana 470.8481 1967
## 2115 BW Botswana 453.9485 1966
## 2116 BW Botswana 1588.0870 1978
## 2117 BW Botswana 1444.4143 1977
## 2118 BW Botswana 1340.6802 1976
## 2119 BW Botswana 1258.4724 1975
## 2120 BW Botswana 1203.7207 1974
## 2121 BW Botswana 1146.1464 1973
## 2122 BW Botswana 977.1685 1972
## 2123 BW Botswana 798.1302 1971
## 2124 BW Botswana 2418.5576 1984
## 2125 BW Botswana 2307.1467 1983
## 2126 BW Botswana 2109.5213 1982
## 2127 BW Botswana 1946.3095 1981
## 2128 BW Botswana 6887.7522 2021
## 2129 BW Botswana 6304.8623 2020
## 2130 BW Botswana 7051.3465 2019
## 2131 BW Botswana 6973.0988 2018
## 2132 BW Botswana 6855.1603 2017
## 2133 BW Botswana 6729.0656 2016
## 2134 BW Botswana 6402.9102 2015
## 2135 BW Botswana 6895.5744 2014
## 2136 BW Botswana 6704.5368 2013
## 2137 BW Botswana 6089.3991 2012
## 2138 BW Botswana 5899.4628 2011
## 2139 BW Botswana 5642.2200 2010
## 2140 BW Botswana 5286.5749 2009
## 2141 BW Botswana 5837.7793 2008
## 2142 BW Botswana 5612.3278 2007
## 2143 BW Botswana 435.9854 1965
## 2144 BW Botswana 421.1496 1964
## 2145 BW Botswana 403.1774 1963
## 2146 BW Botswana 389.2984 1962
## 2147 BW Botswana 372.8612 1961
## 2148 BW Botswana 357.5632 1960
## 2149 BW Botswana 4569.2152 2000
## 2150 BW Botswana 4572.1809 1999
## 2151 BW Botswana 4260.2389 1998
## 2152 BW Botswana 4338.9003 1997
## 2153 BW Botswana 4100.4435 1996
## 2154 BW Botswana 3968.3207 1995
## 2155 BW Botswana 3798.4366 1994
## 2156 BW Botswana 3757.0233 1993
## 2157 BW Botswana 3782.5504 1992
## 2158 BW Botswana 3778.4777 1991
## 2159 BW Botswana 3624.3296 1990
## 2160 BW Botswana 3509.7311 1989
## 2161 BW Botswana 3219.2063 1988
## 2162 BW Botswana 2800.4288 1987
## 2163 BW Botswana 2602.0567 1986
## 2164 BW Botswana 2498.4842 1985
## 2165 BW Botswana 4816.5700 2003
## 2166 BW Botswana 5294.9697 2006
## 2167 BW Botswana 4986.3280 2005
## 2168 BW Botswana 4859.6290 2004
## 2169 BW Botswana 4683.9559 2002
## 2170 BW Botswana 4494.9388 2001
## 2171 BY Belarus NA 1972
## 2172 BY Belarus NA 1975
## 2173 BY Belarus NA 1974
## 2174 BY Belarus NA 1973
## 2175 BY Belarus NA 1968
## 2176 BY Belarus NA 1971
## 2177 BY Belarus NA 1970
## 2178 BY Belarus NA 1969
## 2179 BY Belarus NA 1964
## 2180 BY Belarus NA 1963
## 2181 BY Belarus NA 1962
## 2182 BY Belarus NA 1961
## 2183 BY Belarus NA 1960
## 2184 BY Belarus 2912.1234 2002
## 2185 BY Belarus 2754.6645 2001
## 2186 BY Belarus 2616.9130 2000
## 2187 BY Belarus 2461.8269 1999
## 2188 BY Belarus 2370.1865 1998
## 2189 BY Belarus NA 1967
## 2190 BY Belarus NA 1966
## 2191 BY Belarus NA 1965
## 2192 BY Belarus 6418.2376 2021
## 2193 BY Belarus 6234.8243 2020
## 2194 BY Belarus 6264.8610 2019
## 2195 BY Belarus 6165.9093 2018
## 2196 BY Belarus 5964.8929 2017
## 2197 BY Belarus 5811.1979 2016
## 2198 BY Belarus 5967.0522 2015
## 2199 BY Belarus 6212.9128 2014
## 2200 BY Belarus 6110.9047 2013
## 2201 BY Belarus 6047.8711 2012
## 2202 BY Belarus 5938.2207 2011
## 2203 BY Belarus 5621.9372 2010
## 2204 BY Belarus 5203.8549 2009
## 2205 BY Belarus 5180.7123 2008
## 2206 BY Belarus 4684.9803 2007
## 2207 BY Belarus 4294.2287 2006
## 2208 BY Belarus 3880.0144 2005
## 2209 BY Belarus 3522.4899 2004
## 2210 BY Belarus 3139.1210 2003
## 2211 BY Belarus NA 1989
## 2212 BY Belarus NA 1988
## 2213 BY Belarus NA 1987
## 2214 BY Belarus NA 1986
## 2215 BY Belarus NA 1985
## 2216 BY Belarus 2176.6924 1997
## 2217 BY Belarus 1945.8389 1996
## 2218 BY Belarus 1886.4774 1995
## 2219 BY Belarus 2098.6243 1994
## 2220 BY Belarus 2373.8905 1993
## 2221 BY Belarus 2574.8239 1992
## 2222 BY Belarus 2854.5208 1991
## 2223 BY Belarus 2890.5242 1990
## 2224 BY Belarus NA 1976
## 2225 BY Belarus NA 1984
## 2226 BY Belarus NA 1983
## 2227 BY Belarus NA 1982
## 2228 BY Belarus NA 1981
## 2229 BY Belarus NA 1980
## 2230 BY Belarus NA 1979
## 2231 BY Belarus NA 1978
## 2232 BY Belarus NA 1977
## 2233 BZ Belize 1910.5083 1976
## 2234 BZ Belize 1938.1055 1975
## 2235 BZ Belize 1898.8004 1974
## 2236 BZ Belize 1698.0751 1973
## 2237 BZ Belize 1638.9651 1972
## 2238 BZ Belize 1515.1025 1971
## 2239 BZ Belize 1340.4192 1966
## 2240 BZ Belize 1318.2986 1965
## 2241 BZ Belize 1293.5436 1964
## 2242 BZ Belize 1267.6645 1963
## 2243 BZ Belize 1242.1898 1962
## 2244 BZ Belize 1217.9128 1961
## 2245 BZ Belize 1194.3015 1960
## 2246 BZ Belize 4275.2734 2000
## 2247 BZ Belize 3914.6429 1999
## 2248 BZ Belize 1488.5414 1970
## 2249 BZ Belize 1454.9716 1969
## 2250 BZ Belize 1422.4983 1968
## 2251 BZ Belize 1364.3645 1967
## 2252 BZ Belize 4151.2104 2021
## 2253 BZ Belize 3851.6982 2020
## 2254 BZ Belize 4712.8401 2019
## 2255 BZ Belize 4709.8559 2018
## 2256 BZ Belize 4705.0966 2017
## 2257 BZ Belize 4699.2724 2016
## 2258 BZ Belize 4805.1969 2015
## 2259 BZ Belize 4769.9140 2014
## 2260 BZ Belize 4667.1792 2013
## 2261 BZ Belize 4733.5467 2012
## 2262 BZ Belize 4729.9901 2011
## 2263 BZ Belize 4767.5293 2010
## 2264 BZ Belize 4728.5675 2009
## 2265 BZ Belize 4834.7901 2008
## 2266 BZ Belize 4827.7500 2007
## 2267 BZ Belize 4898.0933 2006
## 2268 BZ Belize 4809.0534 2005
## 2269 BZ Belize 4829.5450 2004
## 2270 BZ Belize 4736.3473 2003
## 2271 BZ Belize 4448.1690 2002
## 2272 BZ Belize 4352.8694 2001
## 2273 BZ Belize 2447.2398 1987
## 2274 BZ Belize 2272.0797 1986
## 2275 BZ Belize 3735.1801 1998
## 2276 BZ Belize 3741.4354 1997
## 2277 BZ Belize 3747.2107 1996
## 2278 BZ Belize 3813.9772 1995
## 2279 BZ Belize 3888.8218 1994
## 2280 BZ Belize 3962.3183 1993
## 2281 BZ Belize 3791.6697 1992
## 2282 BZ Belize 3440.0941 1991
## 2283 BZ Belize 3145.2250 1990
## 2284 BZ Belize 2885.0697 1989
## 2285 BZ Belize 2616.3813 1988
## 2286 BZ Belize 2296.2025 1983
## 2287 BZ Belize 2413.6250 1982
## 2288 BZ Belize 2234.7129 1985
## 2289 BZ Belize 2275.4643 1984
## 2290 BZ Belize 2257.9395 1979
## 2291 BZ Belize 2135.2400 1978
## 2292 BZ Belize 2480.3123 1981
## 2293 BZ Belize 2510.8663 1980
## 2294 BZ Belize 2007.1939 1977
## 2295 CA Canada NA 1978
## 2296 CA Canada 31830.6171 1998
## 2297 CA Canada 31222.7248 1997
## 2298 CA Canada NA 1996
## 2299 CA Canada NA 1995
## 2300 CA Canada NA 1994
## 2301 CA Canada NA 1993
## 2302 CA Canada NA 1992
## 2303 CA Canada NA 1991
## 2304 CA Canada NA 1990
## 2305 CA Canada NA 1989
## 2306 CA Canada NA 1988
## 2307 CA Canada NA 1987
## 2308 CA Canada NA 1986
## 2309 CA Canada NA 1985
## 2310 CA Canada NA 1984
## 2311 CA Canada NA 1983
## 2312 CA Canada NA 1982
## 2313 CA Canada NA 1981
## 2314 CA Canada NA 1980
## 2315 CA Canada NA 1979
## 2316 CA Canada 43945.5570 2021
## 2317 CA Canada NA 1977
## 2318 CA Canada NA 1976
## 2319 CA Canada NA 1975
## 2320 CA Canada NA 1974
## 2321 CA Canada NA 1973
## 2322 CA Canada NA 1972
## 2323 CA Canada NA 1971
## 2324 CA Canada NA 1970
## 2325 CA Canada NA 1969
## 2326 CA Canada NA 1968
## 2327 CA Canada NA 1967
## 2328 CA Canada NA 1966
## 2329 CA Canada NA 1965
## 2330 CA Canada NA 1964
## 2331 CA Canada NA 1963
## 2332 CA Canada NA 1962
## 2333 CA Canada NA 1961
## 2334 CA Canada NA 1960
## 2335 CA Canada 35015.7950 2002
## 2336 CA Canada 34227.3417 2001
## 2337 CA Canada 34121.6092 2000
## 2338 CA Canada 32826.5308 1999
## 2339 CA Canada 42315.8074 2012
## 2340 CA Canada 42036.9978 2011
## 2341 CA Canada 41155.3236 2010
## 2342 CA Canada 40368.2920 2009
## 2343 CA Canada 42063.6331 2008
## 2344 CA Canada 42258.6910 2020
## 2345 CA Canada 45109.2445 2019
## 2346 CA Canada 44917.4837 2018
## 2347 CA Canada 44325.4883 2017
## 2348 CA Canada 43536.9134 2016
## 2349 CA Canada 43596.1355 2015
## 2350 CA Canada 43635.0955 2014
## 2351 CA Canada 42846.2842 2013
## 2352 CA Canada 37086.4493 2004
## 2353 CA Canada 42097.4351 2007
## 2354 CA Canada 39776.1795 2006
## 2355 CA Canada 38573.1998 2005
## 2356 CA Canada 36024.0992 2003
## 2357 CD Congo, Dem. Rep. 432.6784 2012
## 2358 CD Congo, Dem. Rep. 417.7570 2011
## 2359 CD Congo, Dem. Rep. 480.7662 2014
## 2360 CD Congo, Dem. Rep. 453.9989 2013
## 2361 CD Congo, Dem. Rep. 517.9268 2021
## 2362 CD Congo, Dem. Rep. 505.3483 2020
## 2363 CD Congo, Dem. Rep. 512.5863 2019
## 2364 CD Congo, Dem. Rep. 506.9583 2018
## 2365 CD Congo, Dem. Rep. 494.7812 2017
## 2366 CD Congo, Dem. Rep. 492.8028 2016
## 2367 CD Congo, Dem. Rep. 497.3170 2015
## 2368 CD Congo, Dem. Rep. 940.4490 1989
## 2369 CD Congo, Dem. Rep. 982.4830 1988
## 2370 CD Congo, Dem. Rep. 1006.2651 1987
## 2371 CD Congo, Dem. Rep. 1007.0263 1986
## 2372 CD Congo, Dem. Rep. 987.4944 1985
## 2373 CD Congo, Dem. Rep. 1008.6013 1984
## 2374 CD Congo, Dem. Rep. 979.7314 1983
## 2375 CD Congo, Dem. Rep. 990.0235 1982
## 2376 CD Congo, Dem. Rep. 1019.4749 1981
## 2377 CD Congo, Dem. Rep. 1021.8122 1980
## 2378 CD Congo, Dem. Rep. 1026.9555 1979
## 2379 CD Congo, Dem. Rep. 1051.5347 1978
## 2380 CD Congo, Dem. Rep. 1143.3179 1977
## 2381 CD Congo, Dem. Rep. 1167.8514 1976
## 2382 CD Congo, Dem. Rep. 1268.7012 1975
## 2383 CD Congo, Dem. Rep. 1372.4566 1974
## 2384 CD Congo, Dem. Rep. 1367.0968 1973
## 2385 CD Congo, Dem. Rep. 1298.2863 1972
## 2386 CD Congo, Dem. Rep. 1331.4583 1971
## 2387 CD Congo, Dem. Rep. 404.1516 2010
## 2388 CD Congo, Dem. Rep. 390.1121 2009
## 2389 CD Congo, Dem. Rep. 392.0747 2008
## 2390 CD Congo, Dem. Rep. 381.4556 2007
## 2391 CD Congo, Dem. Rep. 370.8858 2006
## 2392 CD Congo, Dem. Rep. 363.6675 2005
## 2393 CD Congo, Dem. Rep. 353.7319 2004
## 2394 CD Congo, Dem. Rep. 341.9907 2003
## 2395 CD Congo, Dem. Rep. 334.0157 2002
## 2396 CD Congo, Dem. Rep. 334.1200 2001
## 2397 CD Congo, Dem. Rep. 350.8708 2000
## 2398 CD Congo, Dem. Rep. 386.6562 1999
## 2399 CD Congo, Dem. Rep. 413.5363 1998
## 2400 CD Congo, Dem. Rep. 430.1735 1997
## 2401 CD Congo, Dem. Rep. 467.1799 1996
## 2402 CD Congo, Dem. Rep. 485.4171 1995
## 2403 CD Congo, Dem. Rep. 497.8893 1994
## 2404 CD Congo, Dem. Rep. 537.2772 1993
## 2405 CD Congo, Dem. Rep. 645.5536 1992
## 2406 CD Congo, Dem. Rep. 749.9266 1991
## 2407 CD Congo, Dem. Rep. 849.5526 1990
## 2408 CD Congo, Dem. Rep. 1323.7084 1963
## 2409 CD Congo, Dem. Rep. 1291.1015 1962
## 2410 CD Congo, Dem. Rep. 1092.7452 1961
## 2411 CD Congo, Dem. Rep. 1257.0627 1960
## 2412 CD Congo, Dem. Rep. 1252.1617 1968
## 2413 CD Congo, Dem. Rep. 1235.1155 1967
## 2414 CD Congo, Dem. Rep. 1290.7453 1970
## 2415 CD Congo, Dem. Rep. 1330.5673 1969
## 2416 CD Congo, Dem. Rep. 1257.6392 1964
## 2417 CD Congo, Dem. Rep. 1283.4867 1966
## 2418 CD Congo, Dem. Rep. 1236.1019 1965
## 2419 CF Central African Republic 483.0313 1999
## 2420 CF Central African Republic 477.3187 1998
## 2421 CF Central African Republic 467.0523 1997
## 2422 CF Central African Republic 454.8332 1996
## 2423 CF Central African Republic 486.3657 1995
## 2424 CF Central African Republic 466.3831 1994
## 2425 CF Central African Republic 457.5689 1993
## 2426 CF Central African Republic 469.4336 1992
## 2427 CF Central African Republic 515.7300 1991
## 2428 CF Central African Republic 531.8557 1990
## 2429 CF Central African Republic 555.6043 1989
## 2430 CF Central African Republic 555.2997 1988
## 2431 CF Central African Republic 555.6860 1987
## 2432 CF Central African Republic 595.5993 1986
## 2433 CF Central African Republic 587.6003 1985
## 2434 CF Central African Republic 579.9480 1984
## 2435 CF Central African Republic 545.1313 1983
## 2436 CF Central African Republic 611.8931 1982
## 2437 CF Central African Republic 585.8482 1981
## 2438 CF Central African Republic 612.6464 1980
## 2439 CF Central African Republic 658.9218 1979
## 2440 CF Central African Republic 692.7642 1978
## 2441 CF Central African Republic 700.5088 1977
## 2442 CF Central African Republic 689.3190 1976
## 2443 CF Central African Republic 666.7045 1975
## 2444 CF Central African Republic 675.7405 1974
## 2445 CF Central African Republic 645.3638 1973
## 2446 CF Central African Republic 642.5772 1972
## 2447 CF Central African Republic 652.1032 1971
## 2448 CF Central African Republic 655.2684 1970
## 2449 CF Central African Republic 651.9524 1969
## 2450 CF Central African Republic 620.8821 1968
## 2451 CF Central African Republic 625.1492 1967
## 2452 CF Central African Republic 609.8160 1966
## 2453 CF Central African Republic 618.2191 1965
## 2454 CF Central African Republic 624.2515 1964
## 2455 CF Central African Republic 622.8525 1963
## 2456 CF Central African Republic 638.3898 1962
## 2457 CF Central African Republic 674.2440 1961
## 2458 CF Central African Republic 652.8550 1960
## 2459 CF Central African Republic 460.3452 2000
## 2460 CF Central African Republic 365.1161 2013
## 2461 CF Central African Republic 575.5019 2012
## 2462 CF Central African Republic 550.0199 2011
## 2463 CF Central African Republic 531.7130 2010
## 2464 CF Central African Republic 513.9374 2009
## 2465 CF Central African Republic 411.1463 2021
## 2466 CF Central African Republic 415.0910 2020
## 2467 CF Central African Republic 418.7217 2019
## 2468 CF Central African Republic 412.9902 2018
## 2469 CF Central African Republic 404.0025 2017
## 2470 CF Central African Republic 391.4735 2016
## 2471 CF Central African Republic 377.4229 2015
## 2472 CF Central African Republic 364.0840 2014
## 2473 CF Central African Republic 454.5074 2005
## 2474 CF Central African Republic 480.4109 2008
## 2475 CF Central African Republic 479.1922 2007
## 2476 CF Central African Republic 466.9768 2006
## 2477 CF Central African Republic 470.3560 2001
## 2478 CF Central African Republic 459.3453 2004
## 2479 CF Central African Republic 442.1528 2003
## 2480 CF Central African Republic 477.0976 2002
## 2481 CG Congo, Rep. 2172.3166 2005
## 2482 CG Congo, Rep. 2269.1567 2006
## 2483 CG Congo, Rep. 2422.6831 2010
## 2484 CG Congo, Rep. 2272.0445 2009
## 2485 CG Congo, Rep. 2103.1421 2008
## 2486 CG Congo, Rep. 2047.4681 2007
## 2487 CG Congo, Rep. 2275.2642 1993
## 2488 CG Congo, Rep. 2362.3126 1992
## 2489 CG Congo, Rep. 2080.4581 2004
## 2490 CG Congo, Rep. 2071.6692 2003
## 2491 CG Congo, Rep. 2114.8847 2002
## 2492 CG Congo, Rep. 2080.3242 2001
## 2493 CG Congo, Rep. 2062.1164 2000
## 2494 CG Congo, Rep. 1973.0339 1999
## 2495 CG Congo, Rep. 2084.8785 1998
## 2496 CG Congo, Rep. 2068.8985 1997
## 2497 CG Congo, Rep. 2142.7895 1996
## 2498 CG Congo, Rep. 2114.0415 1995
## 2499 CG Congo, Rep. 2091.0877 1994
## 2500 CG Congo, Rep. 1967.0091 1980
## 2501 CG Congo, Rep. 1721.5540 1979
## 2502 CG Congo, Rep. 1614.0126 1978
## 2503 CG Congo, Rep. 1562.3124 1977
## 2504 CG Congo, Rep. 1766.7615 1976
## 2505 CG Congo, Rep. 1802.7895 1975
## 2506 CG Congo, Rep. 1723.4326 1974
## 2507 CG Congo, Rep. 1645.3485 1973
## 2508 CG Congo, Rep. 1565.7439 1972
## 2509 CG Congo, Rep. 1484.3882 1971
## 2510 CG Congo, Rep. 1418.0704 1970
## 2511 CG Congo, Rep. 1371.9371 1969
## 2512 CG Congo, Rep. 1312.0269 1968
## 2513 CG Congo, Rep. 1253.1996 1967
## 2514 CG Congo, Rep. 1261.1098 1966
## 2515 CG Congo, Rep. 1278.0074 1965
## 2516 CG Congo, Rep. 1265.5877 1964
## 2517 CG Congo, Rep. 1250.9804 1963
## 2518 CG Congo, Rep. 1336.9081 1962
## 2519 CG Congo, Rep. 1302.6147 1961
## 2520 CG Congo, Rep. 1231.5779 1960
## 2521 CG Congo, Rep. 2508.3459 1986
## 2522 CG Congo, Rep. 2769.2392 1985
## 2523 CG Congo, Rep. 2882.8982 1984
## 2524 CG Congo, Rep. 2773.4212 1983
## 2525 CG Congo, Rep. 2697.3044 1982
## 2526 CG Congo, Rep. 2246.9910 1981
## 2527 CG Congo, Rep. 1543.0167 2021
## 2528 CG Congo, Rep. 1639.2374 2020
## 2529 CG Congo, Rep. 2366.4597 1991
## 2530 CG Congo, Rep. 2375.4025 1990
## 2531 CG Congo, Rep. 2417.0907 1989
## 2532 CG Congo, Rep. 2420.9798 1988
## 2533 CG Congo, Rep. 2444.8555 1987
## 2534 CG Congo, Rep. 2602.5048 2014
## 2535 CG Congo, Rep. 2498.9545 2013
## 2536 CG Congo, Rep. 2579.6990 2012
## 2537 CG Congo, Rep. 2407.8936 2011
## 2538 CG Congo, Rep. 1793.0281 2019
## 2539 CG Congo, Rep. 1841.1739 2018
## 2540 CG Congo, Rep. 1984.6985 2017
## 2541 CG Congo, Rep. 2129.7155 2016
## 2542 CG Congo, Rep. 2448.5238 2015
## 2543 CH Switzerland 88224.1403 2021
## 2544 CH Switzerland 85685.2903 2020
## 2545 CH Switzerland 88413.1917 2019
## 2546 CH Switzerland 87980.6707 2018
## 2547 CH Switzerland 86119.1454 2017
## 2548 CH Switzerland 85570.3961 2016
## 2549 CH Switzerland 84776.1422 2015
## 2550 CH Switzerland 84348.3928 2014
## 2551 CH Switzerland 83344.5234 2013
## 2552 CH Switzerland 82800.0741 2012
## 2553 CH Switzerland 82677.5990 2011
## 2554 CH Switzerland 82026.7245 2010
## 2555 CH Switzerland 80262.4856 2009
## 2556 CH Switzerland 82997.6922 2008
## 2557 CH Switzerland 81804.8618 2007
## 2558 CH Switzerland 79367.9002 2006
## 2559 CH Switzerland 76784.6373 2005
## 2560 CH Switzerland 75112.8674 2004
## 2561 CH Switzerland 73555.5996 2003
## 2562 CH Switzerland 74138.0835 2002
## 2563 CH Switzerland 74705.1554 2001
## 2564 CH Switzerland 74013.0564 2000
## 2565 CH Switzerland 71583.6867 1999
## 2566 CH Switzerland 70691.9467 1998
## 2567 CH Switzerland 68793.5596 1997
## 2568 CH Switzerland 67429.3907 1996
## 2569 CH Switzerland 67394.9716 1995
## 2570 CH Switzerland 67522.1500 1994
## 2571 CH Switzerland 67209.1660 1993
## 2572 CH Switzerland 67909.6011 1992
## 2573 CH Switzerland 68692.5025 1991
## 2574 CH Switzerland 70199.3239 1990
## 2575 CH Switzerland 68410.0813 1989
## 2576 CH Switzerland 66102.6730 1988
## 2577 CH Switzerland 64476.9843 1987
## 2578 CH Switzerland 63870.5947 1986
## 2579 CH Switzerland 63032.2992 1985
## 2580 CH Switzerland 61067.7822 1984
## 2581 CH Switzerland 59497.5210 1983
## 2582 CH Switzerland 59373.7415 1982
## 2583 CH Switzerland 60514.0544 1981
## 2584 CH Switzerland 59887.0204 1980
## 2585 CH Switzerland NA 1979
## 2586 CH Switzerland NA 1978
## 2587 CH Switzerland NA 1977
## 2588 CH Switzerland NA 1976
## 2589 CH Switzerland NA 1975
## 2590 CH Switzerland NA 1974
## 2591 CH Switzerland NA 1973
## 2592 CH Switzerland NA 1972
## 2593 CH Switzerland NA 1971
## 2594 CH Switzerland NA 1970
## 2595 CH Switzerland NA 1969
## 2596 CH Switzerland NA 1968
## 2597 CH Switzerland NA 1967
## 2598 CH Switzerland NA 1966
## 2599 CH Switzerland NA 1965
## 2600 CH Switzerland NA 1964
## 2601 CH Switzerland NA 1963
## 2602 CH Switzerland NA 1962
## 2603 CH Switzerland NA 1961
## 2604 CH Switzerland NA 1960
## 2605 CI Cote d'Ivoire 1769.2149 2013
## 2606 CI Cote d'Ivoire 1637.3928 2012
## 2607 CI Cote d'Ivoire 1558.9687 2011
## 2608 CI Cote d'Ivoire 1616.3782 2009
## 2609 CI Cote d'Ivoire 1596.2552 2008
## 2610 CI Cote d'Ivoire 1557.9083 2007
## 2611 CI Cote d'Ivoire 1687.2165 2010
## 2612 CI Cote d'Ivoire 1565.4285 2005
## 2613 CI Cote d'Ivoire 1583.1120 2004
## 2614 CI Cote d'Ivoire 1566.5772 2003
## 2615 CI Cote d'Ivoire 1679.4065 2002
## 2616 CI Cote d'Ivoire 1765.3281 2001
## 2617 CI Cote d'Ivoire 1847.8700 2000
## 2618 CI Cote d'Ivoire 1901.5727 1999
## 2619 CI Cote d'Ivoire 1933.0732 1998
## 2620 CI Cote d'Ivoire 1910.2299 1997
## 2621 CI Cote d'Ivoire 1797.4387 1996
## 2622 CI Cote d'Ivoire 1723.1574 1995
## 2623 CI Cote d'Ivoire 1662.9131 1994
## 2624 CI Cote d'Ivoire 1575.1428 2006
## 2625 CI Cote d'Ivoire 3095.4035 1979
## 2626 CI Cote d'Ivoire 3161.0695 1978
## 2627 CI Cote d'Ivoire 2981.4659 1977
## 2628 CI Cote d'Ivoire 2907.5851 1976
## 2629 CI Cote d'Ivoire 2696.0767 1975
## 2630 CI Cote d'Ivoire 2608.9795 1974
## 2631 CI Cote d'Ivoire 2620.5372 1973
## 2632 CI Cote d'Ivoire 2591.3985 1972
## 2633 CI Cote d'Ivoire 2601.4443 1971
## 2634 CI Cote d'Ivoire 2482.2764 1970
## 2635 CI Cote d'Ivoire 2342.9009 1969
## 2636 CI Cote d'Ivoire 2222.5231 1968
## 2637 CI Cote d'Ivoire 2048.1556 1967
## 2638 CI Cote d'Ivoire 2029.7858 1966
## 2639 CI Cote d'Ivoire 1886.6925 1965
## 2640 CI Cote d'Ivoire 2021.5840 1964
## 2641 CI Cote d'Ivoire 1785.8576 1963
## 2642 CI Cote d'Ivoire 1621.0027 1962
## 2643 CI Cote d'Ivoire 1662.7393 1961
## 2644 CI Cote d'Ivoire 1567.7618 1960
## 2645 CI Cote d'Ivoire 2150.6034 1986
## 2646 CI Cote d'Ivoire 2164.4197 1985
## 2647 CI Cote d'Ivoire 2155.5373 1984
## 2648 CI Cote d'Ivoire 2308.6871 1983
## 2649 CI Cote d'Ivoire 2506.5257 1982
## 2650 CI Cote d'Ivoire 2612.1582 1981
## 2651 CI Cote d'Ivoire 1707.1777 1993
## 2652 CI Cote d'Ivoire 1771.7750 1992
## 2653 CI Cote d'Ivoire 1840.7741 1991
## 2654 CI Cote d'Ivoire 1907.5326 1990
## 2655 CI Cote d'Ivoire 1999.4981 1989
## 2656 CI Cote d'Ivoire 2013.6148 1988
## 2657 CI Cote d'Ivoire 2064.7879 1987
## 2658 CI Cote d'Ivoire 1972.5457 2015
## 2659 CI Cote d'Ivoire 1887.1649 2014
## 2660 CI Cote d'Ivoire 2636.9196 1980
## 2661 CI Cote d'Ivoire 2414.4403 2021
## 2662 CI Cote d'Ivoire 2313.7934 2020
## 2663 CI Cote d'Ivoire 2327.7454 2019
## 2664 CI Cote d'Ivoire 2247.7766 2018
## 2665 CI Cote d'Ivoire 2157.2452 2017
## 2666 CI Cote d'Ivoire 2061.2152 2016
## 2667 CL Chile 14322.2894 2021
## 2668 CL Chile 12890.2643 2020
## 2669 CL Chile 13828.6344 2019
## 2670 CL Chile 11199.8802 2009
## 2671 CL Chile 11447.1328 2008
## 2672 CL Chile 11147.9936 2007
## 2673 CL Chile 10714.0290 2006
## 2674 CL Chile 13886.1906 2018
## 2675 CL Chile 13540.4387 2017
## 2676 CL Chile 13550.8119 2016
## 2677 CL Chile 13495.0106 2015
## 2678 CL Chile 13367.2283 2014
## 2679 CL Chile 13271.9148 2013
## 2680 CL Chile 12973.2383 2012
## 2681 CL Chile 12339.2611 2011
## 2682 CL Chile 11732.7300 2010
## 2683 CL Chile 4282.4924 1985
## 2684 CL Chile 4178.4434 1984
## 2685 CL Chile 4071.0946 1983
## 2686 CL Chile 4346.0202 1982
## 2687 CL Chile 4952.2198 1981
## 2688 CL Chile 4715.0878 1980
## 2689 CL Chile 4430.1707 1979
## 2690 CL Chile 4147.2457 1978
## 2691 CL Chile 3909.3575 1977
## 2692 CL Chile 3594.2432 1976
## 2693 CL Chile 3515.3557 1975
## 2694 CL Chile 4099.8474 1974
## 2695 CL Chile 4068.0283 1973
## 2696 CL Chile 4352.1982 1972
## 2697 CL Chile 4468.2279 1971
## 2698 CL Chile 4150.0658 1970
## 2699 CL Chile 4142.3538 1969
## 2700 CL Chile 4051.2596 1968
## 2701 CL Chile 3976.6180 1967
## 2702 CL Chile 3904.6132 1966
## 2703 CL Chile 10210.0603 2005
## 2704 CL Chile 9748.0051 2004
## 2705 CL Chile 9233.4216 2003
## 2706 CL Chile 8909.8615 2002
## 2707 CL Chile 8726.9973 2001
## 2708 CL Chile 8555.9776 2000
## 2709 CL Chile 8247.2695 1999
## 2710 CL Chile 8372.0814 1998
## 2711 CL Chile 8140.1835 1997
## 2712 CL Chile 7683.2291 1996
## 2713 CL Chile 7297.1387 1995
## 2714 CL Chile 6800.1593 1994
## 2715 CL Chile 6577.2793 1993
## 2716 CL Chile 6271.9544 1992
## 2717 CL Chile 5735.8185 1991
## 2718 CL Chile 5409.0132 1990
## 2719 CL Chile 5321.0428 1989
## 2720 CL Chile 4920.1999 1988
## 2721 CL Chile 4657.7802 1987
## 2722 CL Chile 4444.4081 1986
## 2723 CL Chile 3607.6180 1964
## 2724 CL Chile 3587.3895 1963
## 2725 CL Chile 3458.8124 1962
## 2726 CL Chile 3573.9399 1965
## 2727 CL Chile 3292.8073 1960
## 2728 CL Chile 3394.2354 1961
## 2729 CM Cameroon 1407.2745 2016
## 2730 CM Cameroon 1382.5098 2015
## 2731 CM Cameroon 1343.9285 2014
## 2732 CM Cameroon 1306.0275 2013
## 2733 CM Cameroon 1278.1644 2012
## 2734 CM Cameroon 1248.6626 2007
## 2735 CM Cameroon 1230.1392 2006
## 2736 CM Cameroon 1217.7570 2005
## 2737 CM Cameroon 1223.9342 2004
## 2738 CM Cameroon 1174.5405 2003
## 2739 CM Cameroon 1143.9854 2002
## 2740 CM Cameroon 1124.4323 2001
## 2741 CM Cameroon 1106.6540 2000
## 2742 CM Cameroon 1094.1125 1999
## 2743 CM Cameroon 1255.4772 2011
## 2744 CM Cameroon 1248.1805 2010
## 2745 CM Cameroon 1246.8074 2009
## 2746 CM Cameroon 1249.3752 2008
## 2747 CM Cameroon 1432.5650 2021
## 2748 CM Cameroon 1419.6767 2020
## 2749 CM Cameroon 1449.2775 2019
## 2750 CM Cameroon 1437.2715 2018
## 2751 CM Cameroon 1419.1761 2017
## 2752 CM Cameroon 1355.2078 1979
## 2753 CM Cameroon 1316.5499 1978
## 2754 CM Cameroon 1111.0596 1977
## 2755 CM Cameroon 1005.2865 1976
## 2756 CM Cameroon 1094.1979 1975
## 2757 CM Cameroon 1011.2482 1974
## 2758 CM Cameroon 938.3969 1973
## 2759 CM Cameroon 914.7770 1972
## 2760 CM Cameroon 914.5959 1971
## 2761 CM Cameroon 906.8737 1970
## 2762 CM Cameroon 902.1817 1969
## 2763 CM Cameroon 881.6186 1968
## 2764 CM Cameroon 849.4146 1967
## 2765 CM Cameroon 976.4535 1966
## 2766 CM Cameroon 955.4193 1965
## 2767 CM Cameroon 958.1023 1964
## 2768 CM Cameroon 946.2303 1963
## 2769 CM Cameroon 932.2625 1962
## 2770 CM Cameroon 924.2111 1961
## 2771 CM Cameroon 932.4713 1960
## 2772 CM Cameroon 1783.5491 1986
## 2773 CM Cameroon 1074.5305 1998
## 2774 CM Cameroon 1053.1774 1997
## 2775 CM Cameroon 1034.5079 1996
## 2776 CM Cameroon 1019.7331 1995
## 2777 CM Cameroon 1018.6920 1994
## 2778 CM Cameroon 1028.4435 1993
## 2779 CM Cameroon 1149.6311 1992
## 2780 CM Cameroon 1221.7529 1991
## 2781 CM Cameroon 1308.7077 1990
## 2782 CM Cameroon 1437.0272 1989
## 2783 CM Cameroon 1509.9572 1988
## 2784 CM Cameroon 1690.6855 1987
## 2785 CM Cameroon 1526.2616 1982
## 2786 CM Cameroon 1724.2865 1985
## 2787 CM Cameroon 1646.8039 1984
## 2788 CM Cameroon 1581.1025 1983
## 2789 CM Cameroon 1464.0074 1981
## 2790 CM Cameroon 1289.1472 1980
## 2791 CN China 3061.8278 2004
## 2792 CN China 2797.1717 2003
## 2793 CN China 3390.7102 2005
## 2794 CN China 2193.8930 2000
## 2795 CN China 2038.2029 1999
## 2796 CN China 2557.8871 2002
## 2797 CN China 2359.5682 2001
## 2798 CN China 1100.6442 1992
## 2799 CN China 975.4612 1991
## 2800 CN China 905.0309 1990
## 2801 CN China 883.7626 1989
## 2802 CN China 861.1920 1988
## 2803 CN China 786.8635 1987
## 2804 CN China 716.1041 1986
## 2805 CN China 1909.6190 1998
## 2806 CN China 1787.7638 1997
## 2807 CN China 1653.4309 1996
## 2808 CN China 1520.0268 1995
## 2809 CN China 1384.9277 1994
## 2810 CN China 1239.1272 1993
## 2811 CN China 404.5959 1979
## 2812 CN China 381.0987 1978
## 2813 CN China 346.9385 1977
## 2814 CN China 326.9489 1976
## 2815 CN China 337.3435 1975
## 2816 CN China 315.8161 1974
## 2817 CN China 315.1291 1973
## 2818 CN China 299.1904 1972
## 2819 CN China 295.3796 1971
## 2820 CN China 283.5849 1970
## 2821 CN China 244.3635 1969
## 2822 CN China 214.7697 1968
## 2823 CN China 229.8759 1967
## 2824 CN China 250.3045 1966
## 2825 CN China 232.6068 1965
## 2826 CN China 203.6875 1964
## 2827 CN China 176.4001 1963
## 2828 CN China 163.9068 1962
## 2829 CN China 175.0234 1961
## 2830 CN China 238.2166 1960
## 2831 CN China 8016.4314 2015
## 2832 CN China 667.1274 1985
## 2833 CN China 596.2001 1984
## 2834 CN China 524.4084 1983
## 2835 CN China 480.3105 1982
## 2836 CN China 447.1190 1981
## 2837 CN China 430.8546 1980
## 2838 CN China 11188.3025 2021
## 2839 CN China 10358.2594 2020
## 2840 CN China 10155.4929 2019
## 2841 CN China 9619.1925 2018
## 2842 CN China 9053.2127 2017
## 2843 CN China 8516.5137 2016
## 2844 CN China 6152.6860 2011
## 2845 CN China 7532.7720 2014
## 2846 CN China 7056.4106 2013
## 2847 CN China 6591.6509 2012
## 2848 CN China 4319.0238 2007
## 2849 CN China 5647.0588 2010
## 2850 CN China 5128.8951 2009
## 2851 CN China 4711.6351 2008
## 2852 CN China 3800.7591 2006
## 2853 CO Colombia 6442.8592 2021
## 2854 CO Colombia 5468.1955 2011
## 2855 CO Colombia 5162.7056 2010
## 2856 CO Colombia 4992.8232 2009
## 2857 CO Colombia 4991.7892 2008
## 2858 CO Colombia 5871.1617 2020
## 2859 CO Colombia 6384.5358 2019
## 2860 CO Colombia 6271.8751 2018
## 2861 CO Colombia 6208.9870 2017
## 2862 CO Colombia 6219.1497 2016
## 2863 CO Colombia 6175.8760 2015
## 2864 CO Colombia 6069.1868 2014
## 2865 CO Colombia 5866.8738 2013
## 2866 CO Colombia 5631.2174 2012
## 2867 CO Colombia 3332.6985 1986
## 2868 CO Colombia 3214.6082 1985
## 2869 CO Colombia 3183.6354 1984
## 2870 CO Colombia 3146.6162 1983
## 2871 CO Colombia 3165.3619 1982
## 2872 CO Colombia 3204.6398 1981
## 2873 CO Colombia 3202.7307 1980
## 2874 CO Colombia 3145.6662 1979
## 2875 CO Colombia 3052.2961 1978
## 2876 CO Colombia 2877.5976 1977
## 2877 CO Colombia 2825.1810 1976
## 2878 CO Colombia 2758.4501 1975
## 2879 CO Colombia 2756.1887 1974
## 2880 CO Colombia 2664.6018 1973
## 2881 CO Colombia 2553.0857 1972
## 2882 CO Colombia 2426.4555 1971
## 2883 CO Colombia 2345.8116 1970
## 2884 CO Colombia 2265.3993 1969
## 2885 CO Colombia 2192.5550 1968
## 2886 CO Colombia 4890.2776 2007
## 2887 CO Colombia 4638.4719 2006
## 2888 CO Colombia 4402.8991 2005
## 2889 CO Colombia 4257.1627 2004
## 2890 CO Colombia 4099.3064 2003
## 2891 CO Colombia 4003.4658 2002
## 2892 CO Colombia 3965.7641 2001
## 2893 CO Colombia 3961.9297 2000
## 2894 CO Colombia 3911.5734 1999
## 2895 CO Colombia 4150.8353 1998
## 2896 CO Colombia 4197.3953 1997
## 2897 CO Colombia 4129.0503 1996
## 2898 CO Colombia 4118.6280 1995
## 2899 CO Colombia 3987.4822 1994
## 2900 CO Colombia 3840.0678 1993
## 2901 CO Colombia 3714.6188 1992
## 2902 CO Colombia 3640.4550 1991
## 2903 CO Colombia 3639.7192 1990
## 2904 CO Colombia 3559.6329 1989
## 2905 CO Colombia 3510.7979 1988
## 2906 CO Colombia 3441.5055 1987
## 2907 CO Colombia 1906.0150 1960
## 2908 CO Colombia 2045.5620 1964
## 2909 CO Colombia 2127.7850 1967
## 2910 CO Colombia 2102.4112 1966
## 2911 CO Colombia 2056.9508 1965
## 2912 CO Colombia 1986.3257 1963
## 2913 CO Colombia 1983.5427 1962
## 2914 CO Colombia 1941.3458 1961
## 2915 CR Costa Rica 12004.6713 2016
## 2916 CR Costa Rica 11642.7781 2015
## 2917 CR Costa Rica 11355.3311 2014
## 2918 CR Costa Rica 12375.9237 2017
## 2919 CR Costa Rica 12931.6913 2021
## 2920 CR Costa Rica 12126.6259 2020
## 2921 CR Costa Rica 12755.1684 2019
## 2922 CR Costa Rica 12573.9558 2018
## 2923 CR Costa Rica 6683.8362 1993
## 2924 CR Costa Rica 6403.7847 1992
## 2925 CR Costa Rica 6018.8573 1991
## 2926 CR Costa Rica 6041.4439 1990
## 2927 CR Costa Rica 5988.5411 1989
## 2928 CR Costa Rica 5816.8823 1988
## 2929 CR Costa Rica 5772.1689 1987
## 2930 CR Costa Rica 5655.9388 1986
## 2931 CR Costa Rica 5503.2218 1985
## 2932 CR Costa Rica 5612.4763 1984
## 2933 CR Costa Rica 5338.2497 1983
## 2934 CR Costa Rica 5332.9300 1982
## 2935 CR Costa Rica 5910.7288 1981
## 2936 CR Costa Rica 6213.5450 1980
## 2937 CR Costa Rica 6335.5398 1979
## 2938 CR Costa Rica 6201.3279 1978
## 2939 CR Costa Rica 5992.5305 1977
## 2940 CR Costa Rica 5648.3667 1976
## 2941 CR Costa Rica 5492.3072 1975
## 2942 CR Costa Rica 5516.1596 1974
## 2943 CR Costa Rica 11090.0884 2013
## 2944 CR Costa Rica 10945.0350 2012
## 2945 CR Costa Rica 10559.2060 2011
## 2946 CR Costa Rica 10236.9803 2010
## 2947 CR Costa Rica 9837.8766 2009
## 2948 CR Costa Rica 10052.6829 2008
## 2949 CR Costa Rica 9725.3849 2007
## 2950 CR Costa Rica 9109.5303 2006
## 2951 CR Costa Rica 8606.3337 2005
## 2952 CR Costa Rica 8395.4011 2004
## 2953 CR Costa Rica 8157.6512 2003
## 2954 CR Costa Rica 7940.4302 2002
## 2955 CR Costa Rica 7805.3119 2001
## 2956 CR Costa Rica 7678.4916 2000
## 2957 CR Costa Rica 7538.8863 1999
## 2958 CR Costa Rica 7389.0451 1998
## 2959 CR Costa Rica 7053.1374 1997
## 2960 CR Costa Rica 6846.3576 1996
## 2961 CR Costa Rica 6920.5790 1995
## 2962 CR Costa Rica 6811.1119 1994
## 2963 CR Costa Rica 4110.1119 1967
## 2964 CR Costa Rica 4012.4854 1966
## 2965 CR Costa Rica 3874.0898 1965
## 2966 CR Costa Rica 3703.7921 1964
## 2967 CR Costa Rica 3701.3723 1963
## 2968 CR Costa Rica 3591.0329 1962
## 2969 CR Costa Rica 3534.2941 1961
## 2970 CR Costa Rica 5356.7780 1973
## 2971 CR Costa Rica 5097.0733 1972
## 2972 CR Costa Rica 4831.2633 1971
## 2973 CR Costa Rica 4643.7906 1970
## 2974 CR Costa Rica 4438.6170 1969
## 2975 CR Costa Rica 4328.4053 1968
## 2976 CR Costa Rica 3600.4830 1960
## 2977 CU Cuba 7378.6963 2014
## 2978 CU Cuba 7694.0146 2015
## 2979 CU Cuba 6759.3428 2010
## 2980 CU Cuba 7317.8540 2013
## 2981 CU Cuba 7138.3682 2012
## 2982 CU Cuba 6942.0577 2011
## 2983 CU Cuba 5808.3496 2006
## 2984 CU Cuba 5182.8197 2005
## 2985 CU Cuba 4665.3866 2004
## 2986 CU Cuba 4419.1776 2003
## 2987 CU Cuba 4268.9171 2002
## 2988 CU Cuba 4222.1371 2001
## 2989 CU Cuba 4105.8795 2000
## 2990 CU Cuba 3891.1896 1999
## 2991 CU Cuba 3679.6675 1998
## 2992 CU Cuba 3690.1933 1997
## 2993 CU Cuba 6601.0264 2009
## 2994 CU Cuba 6500.6526 2008
## 2995 CU Cuba 6235.7659 2007
## 2996 CU Cuba 3590.4044 1980
## 2997 CU Cuba 3795.9801 1979
## 2998 CU Cuba 3780.9159 1978
## 2999 CU Cuba 3575.6037 1977
## 3000 CU Cuba 3320.7932 1976
## 3001 CU Cuba 3185.7486 1975
## 3002 CU Cuba 2949.1662 1974
## 3003 CU Cuba 2965.6377 1973
## 3004 CU Cuba 2915.9169 1972
## 3005 CU Cuba 2830.9829 1971
## 3006 CU Cuba 2653.7340 1970
## 3007 CU Cuba NA 1969
## 3008 CU Cuba NA 1968
## 3009 CU Cuba NA 1967
## 3010 CU Cuba NA 1966
## 3011 CU Cuba NA 1965
## 3012 CU Cuba NA 1964
## 3013 CU Cuba NA 1963
## 3014 CU Cuba NA 1962
## 3015 CU Cuba NA 1961
## 3016 CU Cuba NA 1960
## 3017 CU Cuba 5237.4069 1986
## 3018 CU Cuba 5276.9744 1985
## 3019 CU Cuba 5228.3491 1984
## 3020 CU Cuba 3606.8170 1996
## 3021 CU Cuba 3360.3172 1995
## 3022 CU Cuba 3294.7927 1994
## 3023 CU Cuba 3286.2416 1993
## 3024 CU Cuba 3879.6650 1992
## 3025 CU Cuba 4413.6364 1991
## 3026 CU Cuba 4977.7772 1990
## 3027 CU Cuba 5174.4299 1989
## 3028 CU Cuba 5192.0942 1988
## 3029 CU Cuba 5060.5367 1987
## 3030 CU Cuba 4637.7569 1982
## 3031 CU Cuba 4275.8350 1981
## 3032 CU Cuba NA 2021
## 3033 CU Cuba 4868.6518 1983
## 3034 CU Cuba 8031.0354 2019
## 3035 CU Cuba 8040.9880 2018
## 3036 CU Cuba 7863.3947 2017
## 3037 CU Cuba 7156.1068 2020
## 3038 CU Cuba 7726.4950 2016
## 3039 CV Cabo Verde 3070.4637 2013
## 3040 CV Cabo Verde 3091.2230 2011
## 3041 CV Cabo Verde 3010.7222 2010
## 3042 CV Cabo Verde 3003.6412 2009
## 3043 CV Cabo Verde 3085.1917 2012
## 3044 CV Cabo Verde 2922.2331 2007
## 3045 CV Cabo Verde 2569.1922 2006
## 3046 CV Cabo Verde 2410.7738 2005
## 3047 CV Cabo Verde 2286.5834 2004
## 3048 CV Cabo Verde 2105.8666 2003
## 3049 CV Cabo Verde 2053.2537 2002
## 3050 CV Cabo Verde 1983.2976 2001
## 3051 CV Cabo Verde 1974.0888 2000
## 3052 CV Cabo Verde 1759.0645 1999
## 3053 CV Cabo Verde 1612.0238 1998
## 3054 CV Cabo Verde 1461.9817 1997
## 3055 CV Cabo Verde 1344.6864 1996
## 3056 CV Cabo Verde 3079.1205 2008
## 3057 CV Cabo Verde 3106.3612 2021
## 3058 CV Cabo Verde 2935.3210 2020
## 3059 CV Cabo Verde 3482.4485 2019
## 3060 CV Cabo Verde 3333.0661 2018
## 3061 CV Cabo Verde 3225.7518 2017
## 3062 CV Cabo Verde 3147.8374 2016
## 3063 CV Cabo Verde 3043.0314 2015
## 3064 CV Cabo Verde 3050.2723 2014
## 3065 CV Cabo Verde NA 1974
## 3066 CV Cabo Verde NA 1973
## 3067 CV Cabo Verde NA 1972
## 3068 CV Cabo Verde NA 1971
## 3069 CV Cabo Verde NA 1970
## 3070 CV Cabo Verde NA 1969
## 3071 CV Cabo Verde NA 1968
## 3072 CV Cabo Verde NA 1967
## 3073 CV Cabo Verde NA 1966
## 3074 CV Cabo Verde NA 1965
## 3075 CV Cabo Verde NA 1964
## 3076 CV Cabo Verde NA 1963
## 3077 CV Cabo Verde NA 1962
## 3078 CV Cabo Verde NA 1961
## 3079 CV Cabo Verde NA 1960
## 3080 CV Cabo Verde 770.1942 1986
## 3081 CV Cabo Verde 760.5748 1985
## 3082 CV Cabo Verde 712.7151 1984
## 3083 CV Cabo Verde 700.2617 1983
## 3084 CV Cabo Verde 1236.5619 1995
## 3085 CV Cabo Verde 1111.1092 1994
## 3086 CV Cabo Verde 958.6388 1993
## 3087 CV Cabo Verde 907.3612 1992
## 3088 CV Cabo Verde 840.4243 1991
## 3089 CV Cabo Verde 849.0827 1990
## 3090 CV Cabo Verde 860.4913 1989
## 3091 CV Cabo Verde 827.6898 1988
## 3092 CV Cabo Verde 792.0648 1987
## 3093 CV Cabo Verde 652.3860 1982
## 3094 CV Cabo Verde 646.6953 1981
## 3095 CV Cabo Verde 606.4455 1980
## 3096 CV Cabo Verde NA 1979
## 3097 CV Cabo Verde NA 1978
## 3098 CV Cabo Verde NA 1977
## 3099 CV Cabo Verde NA 1976
## 3100 CV Cabo Verde NA 1975
## 3101 CW Curacao NA 2021
## 3102 CW Curacao 14748.8955 2020
## 3103 CW Curacao 17796.6996 2019
## 3104 CW Curacao NA 1997
## 3105 CW Curacao NA 1996
## 3106 CW Curacao NA 1995
## 3107 CW Curacao NA 1994
## 3108 CW Curacao NA 1993
## 3109 CW Curacao NA 1992
## 3110 CW Curacao NA 1991
## 3111 CW Curacao NA 1990
## 3112 CW Curacao NA 1989
## 3113 CW Curacao NA 1988
## 3114 CW Curacao NA 1987
## 3115 CW Curacao NA 1986
## 3116 CW Curacao NA 1985
## 3117 CW Curacao NA 1984
## 3118 CW Curacao NA 1983
## 3119 CW Curacao NA 1982
## 3120 CW Curacao NA 1981
## 3121 CW Curacao NA 1980
## 3122 CW Curacao NA 1979
## 3123 CW Curacao 18198.6641 2018
## 3124 CW Curacao 18504.3057 2017
## 3125 CW Curacao 18890.7588 2016
## 3126 CW Curacao 19260.2698 2015
## 3127 CW Curacao 19459.4944 2014
## 3128 CW Curacao 19963.3453 2013
## 3129 CW Curacao 20356.1818 2012
## 3130 CW Curacao 20539.3601 2011
## 3131 CW Curacao 20706.4372 2010
## 3132 CW Curacao 20952.8997 2009
## 3133 CW Curacao 21202.4307 2008
## 3134 CW Curacao 21011.1569 2007
## 3135 CW Curacao 20913.6631 2006
## 3136 CW Curacao 21112.3220 2005
## 3137 CW Curacao 21512.1115 2004
## 3138 CW Curacao 21840.8911 2003
## 3139 CW Curacao 22231.8795 2002
## 3140 CW Curacao 22171.0657 2001
## 3141 CW Curacao 21523.6459 2000
## 3142 CW Curacao NA 1999
## 3143 CW Curacao NA 1998
## 3144 CW Curacao NA 1971
## 3145 CW Curacao NA 1970
## 3146 CW Curacao NA 1969
## 3147 CW Curacao NA 1968
## 3148 CW Curacao NA 1967
## 3149 CW Curacao NA 1966
## 3150 CW Curacao NA 1978
## 3151 CW Curacao NA 1977
## 3152 CW Curacao NA 1976
## 3153 CW Curacao NA 1975
## 3154 CW Curacao NA 1974
## 3155 CW Curacao NA 1973
## 3156 CW Curacao NA 1972
## 3157 CW Curacao NA 1963
## 3158 CW Curacao NA 1962
## 3159 CW Curacao NA 1965
## 3160 CW Curacao NA 1964
## 3161 CW Curacao NA 1961
## 3162 CW Curacao NA 1960
## 3163 CY Cyprus 27161.4043 2018
## 3164 CY Cyprus 26013.8320 2017
## 3165 CY Cyprus 22513.7793 2014
## 3166 CY Cyprus 22682.2656 2013
## 3167 CY Cyprus 24805.2031 2016
## 3168 CY Cyprus 23408.3359 2015
## 3169 CY Cyprus 26393.6777 2006
## 3170 CY Cyprus 25629.5840 2005
## 3171 CY Cyprus 24797.9199 2004
## 3172 CY Cyprus 23929.0996 2003
## 3173 CY Cyprus 23602.5312 2002
## 3174 CY Cyprus 23017.6367 2001
## 3175 CY Cyprus 22382.3965 2000
## 3176 CY Cyprus 24216.5293 2012
## 3177 CY Cyprus 25466.1074 2011
## 3178 CY Cyprus 26019.7637 2010
## 3179 CY Cyprus 26181.7441 2009
## 3180 CY Cyprus 27447.2402 2008
## 3181 CY Cyprus 27154.9004 2007
## 3182 CY Cyprus 10667.0938 1980
## 3183 CY Cyprus 10196.9492 1979
## 3184 CY Cyprus 9350.3369 1978
## 3185 CY Cyprus 8707.8418 1977
## 3186 CY Cyprus 7484.3091 1976
## 3187 CY Cyprus 6172.8872 1975
## 3188 CY Cyprus NA 1974
## 3189 CY Cyprus NA 1973
## 3190 CY Cyprus NA 1972
## 3191 CY Cyprus NA 1971
## 3192 CY Cyprus NA 1970
## 3193 CY Cyprus NA 1969
## 3194 CY Cyprus NA 1968
## 3195 CY Cyprus NA 1967
## 3196 CY Cyprus NA 1966
## 3197 CY Cyprus NA 1965
## 3198 CY Cyprus NA 1964
## 3199 CY Cyprus NA 1963
## 3200 CY Cyprus NA 1962
## 3201 CY Cyprus NA 1961
## 3202 CY Cyprus NA 1960
## 3203 CY Cyprus 21348.2539 1999
## 3204 CY Cyprus 20560.8555 1998
## 3205 CY Cyprus 19615.8145 1997
## 3206 CY Cyprus 19383.9395 1996
## 3207 CY Cyprus 19452.4883 1995
## 3208 CY Cyprus 18279.7441 1994
## 3209 CY Cyprus 17622.0527 1993
## 3210 CY Cyprus 17927.2871 1992
## 3211 CY Cyprus 16828.7363 1991
## 3212 CY Cyprus 17143.2715 1990
## 3213 CY Cyprus 16305.1885 1989
## 3214 CY Cyprus 15321.6162 1988
## 3215 CY Cyprus 14252.5625 1987
## 3216 CY Cyprus 13457.5859 1986
## 3217 CY Cyprus 13126.6104 1985
## 3218 CY Cyprus 12668.6104 1984
## 3219 CY Cyprus 11800.3682 1983
## 3220 CY Cyprus 11269.0283 1982
## 3221 CY Cyprus 10755.5059 1981
## 3222 CY Cyprus 27714.7461 2021
## 3223 CY Cyprus 26502.8477 2020
## 3224 CY Cyprus 28211.0645 2019
## 3225 CZ Czechia 19685.4945 2018
## 3226 CZ Czechia 19139.2399 2017
## 3227 CZ Czechia 18247.0117 2016
## 3228 CZ Czechia 17829.6983 2015
## 3229 CZ Czechia 16951.3791 2014
## 3230 CZ Czechia 16593.8642 2013
## 3231 CZ Czechia 16606.9925 2012
## 3232 CZ Czechia 16761.8273 2011
## 3233 CZ Czechia 16505.9537 2010
## 3234 CZ Czechia 16160.6206 2009
## 3235 CZ Czechia 17046.8850 2008
## 3236 CZ Czechia 16739.1787 2007
## 3237 CZ Czechia 15948.7453 2006
## 3238 CZ Czechia 14978.4132 2005
## 3239 CZ Czechia 14070.2805 2004
## 3240 CZ Czechia 13428.0996 2003
## 3241 CZ Czechia 12959.8175 2002
## 3242 CZ Czechia 12734.9220 2001
## 3243 CZ Czechia 12312.4978 2000
## 3244 CZ Czechia 11805.6718 1999
## 3245 CZ Czechia 11632.6029 1998
## 3246 CZ Czechia 11663.1738 1997
## 3247 CZ Czechia 11711.3154 1996
## 3248 CZ Czechia 11219.1501 1995
## 3249 CZ Czechia 10527.8757 1994
## 3250 CZ Czechia 10233.9422 1993
## 3251 CZ Czechia 19608.9851 2021
## 3252 CZ Czechia 18984.6373 2020
## 3253 CZ Czechia 20202.1516 2019
## 3254 CZ Czechia NA 1978
## 3255 CZ Czechia NA 1977
## 3256 CZ Czechia NA 1976
## 3257 CZ Czechia NA 1975
## 3258 CZ Czechia NA 1974
## 3259 CZ Czechia NA 1973
## 3260 CZ Czechia NA 1972
## 3261 CZ Czechia NA 1971
## 3262 CZ Czechia NA 1970
## 3263 CZ Czechia NA 1969
## 3264 CZ Czechia NA 1968
## 3265 CZ Czechia NA 1967
## 3266 CZ Czechia NA 1966
## 3267 CZ Czechia NA 1965
## 3268 CZ Czechia NA 1964
## 3269 CZ Czechia NA 1963
## 3270 CZ Czechia NA 1962
## 3271 CZ Czechia NA 1961
## 3272 CZ Czechia NA 1960
## 3273 CZ Czechia 10238.2477 1992
## 3274 CZ Czechia 10300.8992 1991
## 3275 CZ Czechia 11626.6259 1990
## 3276 CZ Czechia NA 1989
## 3277 CZ Czechia NA 1988
## 3278 CZ Czechia NA 1987
## 3279 CZ Czechia NA 1986
## 3280 CZ Czechia NA 1985
## 3281 CZ Czechia NA 1984
## 3282 CZ Czechia NA 1983
## 3283 CZ Czechia NA 1982
## 3284 CZ Czechia NA 1981
## 3285 CZ Czechia NA 1980
## 3286 CZ Czechia NA 1979
## 3287 DE Germany 42526.5537 2021
## 3288 DE Germany 41315.3136 2020
## 3289 DE Germany 43329.0507 2019
## 3290 DE Germany 42973.2900 2018
## 3291 DE Germany 42639.5544 2017
## 3292 DE Germany 41682.0322 2016
## 3293 DE Germany 41103.2564 2015
## 3294 DE Germany 40851.1617 2014
## 3295 DE Germany 40135.0158 2013
## 3296 DE Germany 40069.3540 2012
## 3297 DE Germany 39977.3417 2011
## 3298 DE Germany 37760.9136 2010
## 3299 DE Germany 36190.3929 2009
## 3300 DE Germany 38278.3130 2008
## 3301 DE Germany 37842.3578 2007
## 3302 DE Germany 36699.4468 2006
## 3303 DE Germany 35310.4705 2005
## 3304 DE Germany 35034.0806 2004
## 3305 DE Germany 34619.6641 2003
## 3306 DE Germany 34883.0581 2002
## 3307 DE Germany 35011.0685 2001
## 3308 DE Germany 34490.0758 2000
## 3309 DE Germany 33559.3994 1999
## 3310 DE Germany 32959.0736 1998
## 3311 DE Germany 32313.2971 1997
## 3312 DE Germany 31790.8669 1996
## 3313 DE Germany 31628.1598 1995
## 3314 DE Germany 31238.8791 1994
## 3315 DE Germany 30615.1402 1993
## 3316 DE Germany 31121.0706 1992
## 3317 DE Germany 30766.9290 1991
## 3318 DE Germany 29485.7100 1990
## 3319 DE Germany 28256.1062 1989
## 3320 DE Germany 27407.5201 1988
## 3321 DE Germany 26531.2297 1987
## 3322 DE Germany 26204.5896 1986
## 3323 DE Germany 25630.3330 1985
## 3324 DE Germany 24991.3337 1984
## 3325 DE Germany 24221.3404 1983
## 3326 DE Germany 23783.9455 1982
## 3327 DE Germany 23855.5259 1981
## 3328 DE Germany 23766.1077 1980
## 3329 DE Germany 23484.5992 1979
## 3330 DE Germany 22558.7148 1978
## 3331 DE Germany 21880.8076 1977
## 3332 DE Germany 21124.2557 1976
## 3333 DE Germany 20041.9480 1975
## 3334 DE Germany 20141.9395 1974
## 3335 DE Germany 19972.0254 1973
## 3336 DE Germany 19121.4979 1972
## 3337 DE Germany 18421.0422 1971
## 3338 DE Germany 17894.2967 1970
## 3339 DE Germany NA 1969
## 3340 DE Germany NA 1968
## 3341 DE Germany NA 1967
## 3342 DE Germany NA 1966
## 3343 DE Germany NA 1965
## 3344 DE Germany NA 1964
## 3345 DE Germany NA 1963
## 3346 DE Germany NA 1962
## 3347 DE Germany NA 1961
## 3348 DE Germany NA 1960
## 3349 DJ Djibouti 3190.2247 2021
## 3350 DJ Djibouti 3102.3587 2020
## 3351 DJ Djibouti 3110.9946 2019
## 3352 DJ Djibouti 2992.5313 2018
## 3353 DJ Djibouti 2901.0098 2017
## 3354 DJ Djibouti 2795.2257 2016
## 3355 DJ Djibouti 2652.5132 2015
## 3356 DJ Djibouti 2508.8272 2014
## 3357 DJ Djibouti 2384.2353 2013
## 3358 DJ Djibouti NA 2012
## 3359 DJ Djibouti NA 2011
## 3360 DJ Djibouti NA 2010
## 3361 DJ Djibouti NA 2009
## 3362 DJ Djibouti NA 2008
## 3363 DJ Djibouti NA 2007
## 3364 DJ Djibouti NA 2006
## 3365 DJ Djibouti NA 2005
## 3366 DJ Djibouti NA 2004
## 3367 DJ Djibouti NA 2003
## 3368 DJ Djibouti NA 2002
## 3369 DJ Djibouti NA 2001
## 3370 DJ Djibouti NA 2000
## 3371 DJ Djibouti NA 1999
## 3372 DJ Djibouti NA 1998
## 3373 DJ Djibouti NA 1997
## 3374 DJ Djibouti NA 1996
## 3375 DJ Djibouti NA 1995
## 3376 DJ Djibouti NA 1994
## 3377 DJ Djibouti NA 1993
## 3378 DJ Djibouti NA 1992
## 3379 DJ Djibouti NA 1991
## 3380 DJ Djibouti NA 1990
## 3381 DJ Djibouti NA 1989
## 3382 DJ Djibouti NA 1988
## 3383 DJ Djibouti NA 1987
## 3384 DJ Djibouti NA 1986
## 3385 DJ Djibouti NA 1985
## 3386 DJ Djibouti NA 1984
## 3387 DJ Djibouti NA 1983
## 3388 DJ Djibouti NA 1982
## 3389 DJ Djibouti NA 1981
## 3390 DJ Djibouti NA 1980
## 3391 DJ Djibouti NA 1979
## 3392 DJ Djibouti NA 1978
## 3393 DJ Djibouti NA 1977
## 3394 DJ Djibouti NA 1976
## 3395 DJ Djibouti NA 1975
## 3396 DJ Djibouti NA 1974
## 3397 DJ Djibouti NA 1973
## 3398 DJ Djibouti NA 1972
## 3399 DJ Djibouti NA 1971
## 3400 DJ Djibouti NA 1970
## 3401 DJ Djibouti NA 1969
## 3402 DJ Djibouti NA 1968
## 3403 DJ Djibouti NA 1967
## 3404 DJ Djibouti NA 1966
## 3405 DJ Djibouti NA 1965
## 3406 DJ Djibouti NA 1964
## 3407 DJ Djibouti NA 1963
## 3408 DJ Djibouti NA 1962
## 3409 DJ Djibouti NA 1961
## 3410 DJ Djibouti NA 1960
## 3411 DK Denmark 58585.5077 2021
## 3412 DK Denmark 56202.1659 2020
## 3413 DK Denmark 57553.1312 2019
## 3414 DK Denmark 56563.4885 2018
## 3415 DK Denmark 55735.7649 2017
## 3416 DK Denmark 54556.0690 2016
## 3417 DK Denmark 53254.8564 2015
## 3418 DK Denmark 52404.7640 2014
## 3419 DK Denmark 51831.7979 2013
## 3420 DK Denmark 51567.0402 2012
## 3421 DK Denmark 51644.4635 2011
## 3422 DK Denmark 51173.4662 2010
## 3423 DK Denmark 50457.2325 2009
## 3424 DK Denmark 53345.3576 2008
## 3425 DK Denmark 53935.8702 2007
## 3426 DK Denmark 53687.4415 2006
## 3427 DK Denmark 51835.8327 2005
## 3428 DK Denmark 50792.0010 2004
## 3429 DK Denmark 49599.9970 2003
## 3430 DK Denmark 49541.8556 2002
## 3431 DK Denmark 49469.6888 2001
## 3432 DK Denmark 49241.9280 2000
## 3433 DK Denmark 47622.4391 1999
## 3434 DK Denmark 46412.0390 1998
## 3435 DK Denmark 45570.0798 1997
## 3436 DK Denmark 44314.7905 1996
## 3437 DK Denmark 43310.2501 1995
## 3438 DK Denmark 42257.0983 1994
## 3439 DK Denmark 40253.5399 1993
## 3440 DK Denmark 40383.5588 1992
## 3441 DK Denmark 39739.6099 1991
## 3442 DK Denmark 39295.2434 1990
## 3443 DK Denmark 38786.9310 1989
## 3444 DK Denmark 38561.4119 1988
## 3445 DK Denmark 38585.4029 1987
## 3446 DK Denmark 38536.3229 1986
## 3447 DK Denmark 36783.9410 1985
## 3448 DK Denmark 35382.2346 1984
## 3449 DK Denmark 33949.3314 1983
## 3450 DK Denmark 33067.5698 1982
## 3451 DK Denmark 31869.0422 1981
## 3452 DK Denmark 32073.6413 1980
## 3453 DK Denmark 32268.5203 1979
## 3454 DK Denmark 31142.9246 1978
## 3455 DK Denmark 30559.4559 1977
## 3456 DK Denmark 30091.9728 1976
## 3457 DK Denmark 28480.3555 1975
## 3458 DK Denmark 28984.7792 1974
## 3459 DK Denmark 29450.5971 1973
## 3460 DK Denmark 28464.1398 1972
## 3461 DK Denmark 27545.0669 1971
## 3462 DK Denmark 26927.9590 1970
## 3463 DK Denmark 26704.6332 1969
## 3464 DK Denmark 25211.6295 1968
## 3465 DK Denmark 24031.1274 1967
## 3466 DK Denmark 22952.0113 1966
## 3467 DK Denmark 22519.8115 1965
## 3468 DK Denmark 21707.1637 1964
## 3469 DK Denmark 20025.0368 1963
## 3470 DK Denmark 20055.6437 1962
## 3471 DK Denmark 19128.4044 1961
## 3472 DK Denmark 18107.3759 1960
## 3473 DM Dominica 6978.3688 2021
## 3474 DM Dominica 6566.7291 2020
## 3475 DM Dominica 7894.3068 2019
## 3476 DM Dominica 7501.5922 2018
## 3477 DM Dominica 7261.4134 2017
## 3478 DM Dominica 7792.7988 2016
## 3479 DM Dominica 7597.2889 2015
## 3480 DM Dominica 7819.8656 2014
## 3481 DM Dominica 7472.5637 2013
## 3482 DM Dominica 7554.9543 2012
## 3483 DM Dominica 7640.3402 2011
## 3484 DM Dominica 7661.2399 2010
## 3485 DM Dominica 7613.1670 2009
## 3486 DM Dominica 7705.3301 2008
## 3487 DM Dominica 7196.3562 2007
## 3488 DM Dominica 6774.0423 2006
## 3489 DM Dominica 6485.1160 2005
## 3490 DM Dominica 6460.5259 2004
## 3491 DM Dominica 6294.7577 2003
## 3492 DM Dominica 5940.9362 2002
## 3493 DM Dominica 6128.6656 2001
## 3494 DM Dominica 6134.4300 2000
## 3495 DM Dominica 5978.8738 1999
## 3496 DM Dominica 5927.6429 1998
## 3497 DM Dominica 5678.9621 1997
## 3498 DM Dominica 5530.7791 1996
## 3499 DM Dominica 5351.2856 1995
## 3500 DM Dominica 5198.3262 1994
## 3501 DM Dominica 5213.1180 1993
## 3502 DM Dominica 5122.4995 1992
## 3503 DM Dominica 5032.6664 1991
## 3504 DM Dominica 4962.5668 1990
## 3505 DM Dominica 4687.5453 1989
## 3506 DM Dominica 4664.2060 1988
## 3507 DM Dominica 4288.1184 1987
## 3508 DM Dominica 3995.3733 1986
## 3509 DM Dominica 3696.9791 1985
## 3510 DM Dominica 3613.6412 1984
## 3511 DM Dominica 3438.3911 1983
## 3512 DM Dominica 3329.0866 1982
## 3513 DM Dominica 3184.2996 1981
## 3514 DM Dominica 2873.0034 1980
## 3515 DM Dominica 2545.9901 1979
## 3516 DM Dominica 3147.0786 1978
## 3517 DM Dominica 2879.5613 1977
## 3518 DM Dominica NA 1976
## 3519 DM Dominica NA 1975
## 3520 DM Dominica NA 1974
## 3521 DM Dominica NA 1973
## 3522 DM Dominica NA 1972
## 3523 DM Dominica NA 1971
## 3524 DM Dominica NA 1970
## 3525 DM Dominica NA 1969
## 3526 DM Dominica NA 1968
## 3527 DM Dominica NA 1967
## 3528 DM Dominica NA 1966
## 3529 DM Dominica NA 1965
## 3530 DM Dominica NA 1964
## 3531 DM Dominica NA 1963
## 3532 DM Dominica NA 1962
## 3533 DM Dominica NA 1961
## 3534 DM Dominica NA 1960
## 3535 DO Dominican Republic 8536.6521 2021
## 3536 DO Dominican Republic 7677.7104 2020
## 3537 DO Dominican Republic 8314.3448 2019
## 3538 DO Dominican Republic 7997.7611 2018
## 3539 DO Dominican Republic 7556.8537 2017
## 3540 DO Dominican Republic 7300.0333 2016
## 3541 DO Dominican Republic 6921.5206 2015
## 3542 DO Dominican Republic 6547.3080 2014
## 3543 DO Dominican Republic 6187.2830 2013
## 3544 DO Dominican Republic 5969.3528 2012
## 3545 DO Dominican Republic 5881.1354 2011
## 3546 DO Dominican Republic 5771.9184 2010
## 3547 DO Dominican Republic 5393.4703 2009
## 3548 DO Dominican Republic 5409.9479 2008
## 3549 DO Dominican Republic 5308.6324 2007
## 3550 DO Dominican Republic 5006.5524 2006
## 3551 DO Dominican Republic 4647.0379 2005
## 3552 DO Dominican Republic 4304.7701 2004
## 3553 DO Dominican Republic 4255.7662 2003
## 3554 DO Dominican Republic 4375.7898 2002
## 3555 DO Dominican Republic 4249.1001 2001
## 3556 DO Dominican Republic 4209.4119 2000
## 3557 DO Dominican Republic 4083.6365 1999
## 3558 DO Dominican Republic 3915.1361 1998
## 3559 DO Dominican Republic 3727.8002 1997
## 3560 DO Dominican Republic 3480.2742 1996
## 3561 DO Dominican Republic 3340.0439 1995
## 3562 DO Dominican Republic 3216.1089 1994
## 3563 DO Dominican Republic 3191.6041 1993
## 3564 DO Dominican Republic 3028.1060 1992
## 3565 DO Dominican Republic 2774.2546 1991
## 3566 DO Dominican Republic 2801.0584 1990
## 3567 DO Dominican Republic 3020.0648 1989
## 3568 DO Dominican Republic 2949.4301 1988
## 3569 DO Dominican Republic 2944.4593 1987
## 3570 DO Dominican Republic 2727.8216 1986
## 3571 DO Dominican Republic 2689.1246 1985
## 3572 DO Dominican Republic 2804.9201 1984
## 3573 DO Dominican Republic 2829.2402 1983
## 3574 DO Dominican Republic 2762.8719 1982
## 3575 DO Dominican Republic 2777.0784 1981
## 3576 DO Dominican Republic 2723.6531 1980
## 3577 DO Dominican Republic 2581.3974 1979
## 3578 DO Dominican Republic 2528.4303 1978
## 3579 DO Dominican Republic 2535.9116 1977
## 3580 DO Dominican Republic 2475.8867 1976
## 3581 DO Dominican Republic 2378.9383 1975
## 3582 DO Dominican Republic 2320.3264 1974
## 3583 DO Dominican Republic 2247.0845 1973
## 3584 DO Dominican Republic 2044.3978 1972
## 3585 DO Dominican Republic 1903.2408 1971
## 3586 DO Dominican Republic 1765.2520 1970
## 3587 DO Dominican Republic 1536.3310 1969
## 3588 DO Dominican Republic 1426.3938 1968
## 3589 DO Dominican Republic 1465.9490 1967
## 3590 DO Dominican Republic 1462.4761 1966
## 3591 DO Dominican Republic 1329.5027 1965
## 3592 DO Dominican Republic 1567.8966 1964
## 3593 DO Dominican Republic 1516.5916 1963
## 3594 DO Dominican Republic 1471.3459 1962
## 3595 DO Dominican Republic 1299.3952 1961
## 3596 DO Dominican Republic 1375.4136 1960
## 3597 DZ Algeria 4112.0760 2014
## 3598 DZ Algeria 4177.8895 2015
## 3599 DZ Algeria 3918.4864 2010
## 3600 DZ Algeria 4042.9236 2013
## 3601 DZ Algeria 4012.3615 2012
## 3602 DZ Algeria 3956.8958 2011
## 3603 DZ Algeria 3760.1554 2006
## 3604 DZ Algeria 3752.0962 2005
## 3605 DZ Algeria 3592.6453 2004
## 3606 DZ Algeria 3490.2232 2003
## 3607 DZ Algeria 3297.6128 2002
## 3608 DZ Algeria 3162.8115 2001
## 3609 DZ Algeria 3111.1762 2000
## 3610 DZ Algeria 3038.2729 1999
## 3611 DZ Algeria 2986.0557 1998
## 3612 DZ Algeria 2884.1202 1997
## 3613 DZ Algeria 3851.2138 2009
## 3614 DZ Algeria 3856.4077 2008
## 3615 DZ Algeria 3828.1485 2007
## 3616 DZ Algeria 3186.4372 1980
## 3617 DZ Algeria 3258.7312 1979
## 3618 DZ Algeria 3123.3766 1978
## 3619 DZ Algeria 2944.3211 1977
## 3620 DZ Algeria 2878.6100 1976
## 3621 DZ Algeria 2732.3244 1975
## 3622 DZ Algeria 2674.9704 1974
## 3623 DZ Algeria 2558.0302 1973
## 3624 DZ Algeria 2532.3928 1972
## 3625 DZ Algeria 2042.6634 1971
## 3626 DZ Algeria 2368.5747 1970
## 3627 DZ Algeria 2238.1427 1969
## 3628 DZ Algeria 2124.2186 1968
## 3629 DZ Algeria 1973.3474 1967
## 3630 DZ Algeria 1854.9538 1966
## 3631 DZ Algeria 2003.1929 1965
## 3632 DZ Algeria 1936.9280 1964
## 3633 DZ Algeria 1877.5130 1963
## 3634 DZ Algeria 1433.1006 1962
## 3635 DZ Algeria 1828.9728 1961
## 3636 DZ Algeria 2170.3127 1960
## 3637 DZ Algeria 3366.9389 1986
## 3638 DZ Algeria 3453.8216 1985
## 3639 DZ Algeria 3432.8064 1984
## 3640 DZ Algeria 2899.1932 1996
## 3641 DZ Algeria 2834.2652 1995
## 3642 DZ Algeria 2783.1550 1994
## 3643 DZ Algeria 2867.1959 1993
## 3644 DZ Algeria 2994.4913 1992
## 3645 DZ Algeria 3011.4999 1991
## 3646 DZ Algeria 3123.9977 1990
## 3647 DZ Algeria 3179.7733 1989
## 3648 DZ Algeria 3128.3375 1988
## 3649 DZ Algeria 3248.8812 1987
## 3650 DZ Algeria 3281.8609 1982
## 3651 DZ Algeria 3182.2599 1981
## 3652 DZ Algeria 3913.6529 2021
## 3653 DZ Algeria 3352.6997 1983
## 3654 DZ Algeria 4115.3955 2019
## 3655 DZ Algeria 4154.2190 2018
## 3656 DZ Algeria 4192.3377 2017
## 3657 DZ Algeria 3834.4390 2020
## 3658 DZ Algeria 4224.0373 2016
## 3659 EC Ecuador 5464.6293 2021
## 3660 EC Ecuador 5315.5165 2020
## 3661 EC Ecuador 5853.8131 2019
## 3662 EC Ecuador 5952.2181 2018
## 3663 EC Ecuador 5981.1326 2017
## 3664 EC Ecuador 5947.0020 2016
## 3665 EC Ecuador 6124.4909 2015
## 3666 EC Ecuador 6218.2392 2014
## 3667 EC Ecuador 6084.4439 2013
## 3668 EC Ecuador 5885.0999 2012
## 3669 EC Ecuador 5654.9281 2011
## 3670 EC Ecuador 5323.7375 2010
## 3671 EC Ecuador 5224.8383 2009
## 3672 EC Ecuador 5280.7136 2008
## 3673 EC Ecuador 5048.1446 2007
## 3674 EC Ecuador 5023.2911 2006
## 3675 EC Ecuador 4892.6913 2005
## 3676 EC Ecuador 4725.2324 2004
## 3677 EC Ecuador 4440.7298 2003
## 3678 EC Ecuador 4397.4230 2002
## 3679 EC Ecuador 4299.2021 2001
## 3680 EC Ecuador 4209.3450 2000
## 3681 EC Ecuador 4243.8722 1999
## 3682 EC Ecuador 4543.9998 1998
## 3683 EC Ecuador 4491.2009 1997
## 3684 EC Ecuador 4396.2213 1996
## 3685 EC Ecuador 4414.9283 1995
## 3686 EC Ecuador 4412.9021 1994
## 3687 EC Ecuador 4327.8633 1993
## 3688 EC Ecuador 4341.2800 1992
## 3689 EC Ecuador 4350.3063 1991
## 3690 EC Ecuador 4269.7829 1990
## 3691 EC Ecuador 4216.7664 1989
## 3692 EC Ecuador 4275.8965 1988
## 3693 EC Ecuador 4136.9336 1987
## 3694 EC Ecuador 4250.2871 1986
## 3695 EC Ecuador 4210.5312 1985
## 3696 EC Ecuador 4153.1079 1984
## 3697 EC Ecuador 4149.5651 1983
## 3698 EC Ecuador 4270.1380 1982
## 3699 EC Ecuador 4353.6688 1981
## 3700 EC Ecuador 4229.8575 1980
## 3701 EC Ecuador 4186.0630 1979
## 3702 EC Ecuador 4142.7351 1978
## 3703 EC Ecuador 4024.5150 1977
## 3704 EC Ecuador 4068.9123 1976
## 3705 EC Ecuador 3893.4524 1975
## 3706 EC Ecuador 3607.0259 1974
## 3707 EC Ecuador 3335.8742 1973
## 3708 EC Ecuador 3011.9183 1972
## 3709 EC Ecuador 2951.5426 1971
## 3710 EC Ecuador 2858.2670 1970
## 3711 EC Ecuador 2753.4183 1969
## 3712 EC Ecuador 2708.6539 1968
## 3713 EC Ecuador 2736.9940 1967
## 3714 EC Ecuador 2693.9102 1966
## 3715 EC Ecuador 2783.2133 1965
## 3716 EC Ecuador 2774.3803 1964
## 3717 EC Ecuador 2658.6534 1963
## 3718 EC Ecuador 2679.4970 1962
## 3719 EC Ecuador 2627.6393 1961
## 3720 EC Ecuador 2571.3523 1960
## 3721 EE Estonia 21421.1459 2021
## 3722 EE Estonia 19767.0776 2020
## 3723 EE Estonia 20408.4362 2019
## 3724 EE Estonia 19677.6768 2018
## 3725 EE Estonia 18962.4103 2017
## 3726 EE Estonia 17945.9450 2016
## 3727 EE Estonia 17402.0376 2015
## 3728 EE Estonia 17096.6446 2014
## 3729 EE Estonia 16553.3833 2013
## 3730 EE Estonia 16257.4722 2012
## 3731 EE Estonia 15692.7888 2011
## 3732 EE Estonia 14585.8387 2010
## 3733 EE Estonia 14205.3949 2009
## 3734 EE Estonia 16607.5681 2008
## 3735 EE Estonia 17459.0983 2007
## 3736 EE Estonia 16155.2074 2006
## 3737 EE Estonia 14631.3873 2005
## 3738 EE Estonia 13282.5455 2004
## 3739 EE Estonia 12362.2483 2003
## 3740 EE Estonia 11417.1680 2002
## 3741 EE Estonia 10625.5793 2001
## 3742 EE Estonia 9960.1390 2000
## 3743 EE Estonia 9091.3332 1999
## 3744 EE Estonia 9157.0648 1998
## 3745 EE Estonia 8692.2964 1997
## 3746 EE Estonia 7601.6690 1996
## 3747 EE Estonia 7137.5308 1995
## 3748 EE Estonia NA 1994
## 3749 EE Estonia NA 1993
## 3750 EE Estonia NA 1992
## 3751 EE Estonia NA 1991
## 3752 EE Estonia NA 1990
## 3753 EE Estonia NA 1989
## 3754 EE Estonia NA 1988
## 3755 EE Estonia NA 1987
## 3756 EE Estonia NA 1986
## 3757 EE Estonia NA 1985
## 3758 EE Estonia NA 1984
## 3759 EE Estonia NA 1983
## 3760 EE Estonia NA 1982
## 3761 EE Estonia NA 1981
## 3762 EE Estonia NA 1980
## 3763 EE Estonia NA 1979
## 3764 EE Estonia NA 1978
## 3765 EE Estonia NA 1977
## 3766 EE Estonia NA 1976
## 3767 EE Estonia NA 1975
## 3768 EE Estonia NA 1974
## 3769 EE Estonia NA 1973
## 3770 EE Estonia NA 1972
## 3771 EE Estonia NA 1971
## 3772 EE Estonia NA 1970
## 3773 EE Estonia NA 1969
## 3774 EE Estonia NA 1968
## 3775 EE Estonia NA 1967
## 3776 EE Estonia NA 1966
## 3777 EE Estonia NA 1965
## 3778 EE Estonia NA 1964
## 3779 EE Estonia NA 1963
## 3780 EE Estonia NA 1962
## 3781 EE Estonia NA 1961
## 3782 EE Estonia NA 1960
## 3783 EG Egypt, Arab Rep. 4085.6249 2021
## 3784 EG Egypt, Arab Rep. 4028.4209 2020
## 3785 EG Egypt, Arab Rep. 3964.9871 2019
## 3786 EG Egypt, Arab Rep. 3831.1998 2018
## 3787 EG Egypt, Arab Rep. 3712.6037 2017
## 3788 EG Egypt, Arab Rep. 3638.8949 2016
## 3789 EG Egypt, Arab Rep. 3562.9327 2015
## 3790 EG Egypt, Arab Rep. 3489.8641 2014
## 3791 EG Egypt, Arab Rep. 3468.4688 2013
## 3792 EG Egypt, Arab Rep. 3472.1483 2012
## 3793 EG Egypt, Arab Rep. 3472.5983 2011
## 3794 EG Egypt, Arab Rep. 3485.2822 2010
## 3795 EG Egypt, Arab Rep. 3381.1154 2009
## 3796 EG Egypt, Arab Rep. 3290.9407 2008
## 3797 EG Egypt, Arab Rep. 3126.2750 2007
## 3798 EG Egypt, Arab Rep. 2970.9448 2006
## 3799 EG Egypt, Arab Rep. 2830.3501 2005
## 3800 EG Egypt, Arab Rep. 2758.5664 2004
## 3801 EG Egypt, Arab Rep. 2699.1011 2003
## 3802 EG Egypt, Arab Rep. 2664.6420 2002
## 3803 EG Egypt, Arab Rep. 2651.8655 2001
## 3804 EG Egypt, Arab Rep. 2610.4765 2000
## 3805 EG Egypt, Arab Rep. 2501.9819 1999
## 3806 EG Egypt, Arab Rep. 2406.0452 1998
## 3807 EG Egypt, Arab Rep. 2324.9166 1997
## 3808 EG Egypt, Arab Rep. 2248.5942 1996
## 3809 EG Egypt, Arab Rep. 2185.3022 1995
## 3810 EG Egypt, Arab Rep. 2130.6757 1994
## 3811 EG Egypt, Arab Rep. 2090.8404 1993
## 3812 EG Egypt, Arab Rep. 2073.9402 1992
## 3813 EG Egypt, Arab Rep. 2028.0919 1991
## 3814 EG Egypt, Arab Rep. 2051.6123 1990
## 3815 EG Egypt, Arab Rep. 1989.2741 1989
## 3816 EG Egypt, Arab Rep. 1945.3086 1988
## 3817 EG Egypt, Arab Rep. 1894.5079 1987
## 3818 EG Egypt, Arab Rep. 1874.6718 1986
## 3819 EG Egypt, Arab Rep. 1838.5757 1985
## 3820 EG Egypt, Arab Rep. 1784.6640 1984
## 3821 EG Egypt, Arab Rep. 1669.3458 1983
## 3822 EG Egypt, Arab Rep. 1629.8972 1982
## 3823 EG Egypt, Arab Rep. 1521.0253 1981
## 3824 EG Egypt, Arab Rep. 1452.5982 1980
## 3825 EG Egypt, Arab Rep. 1352.9479 1979
## 3826 EG Egypt, Arab Rep. 1325.1887 1978
## 3827 EG Egypt, Arab Rep. 1248.5439 1977
## 3828 EG Egypt, Arab Rep. 1171.7697 1976
## 3829 EG Egypt, Arab Rep. 1057.8457 1975
## 3830 EG Egypt, Arab Rep. 992.6995 1974
## 3831 EG Egypt, Arab Rep. 998.9621 1973
## 3832 EG Egypt, Arab Rep. 986.3396 1972
## 3833 EG Egypt, Arab Rep. 978.5268 1971
## 3834 EG Egypt, Arab Rep. 962.1166 1970
## 3835 EG Egypt, Arab Rep. 933.0246 1969
## 3836 EG Egypt, Arab Rep. 908.3707 1968
## 3837 EG Egypt, Arab Rep. 946.9741 1967
## 3838 EG Egypt, Arab Rep. 964.0365 1966
## 3839 EG Egypt, Arab Rep. 941.9867 1965
## 3840 EG Egypt, Arab Rep. 921.7362 1964
## 3841 EG Egypt, Arab Rep. 848.7588 1963
## 3842 EG Egypt, Arab Rep. 788.7199 1962
## 3843 EG Egypt, Arab Rep. 779.9913 1961
## 3844 EG Egypt, Arab Rep. 762.1341 1960
## 3845 ER Eritrea NA 2021
## 3846 ER Eritrea NA 2020
## 3847 ER Eritrea NA 2019
## 3848 ER Eritrea NA 2018
## 3849 ER Eritrea NA 2017
## 3850 ER Eritrea NA 2016
## 3851 ER Eritrea NA 2015
## 3852 ER Eritrea NA 2014
## 3853 ER Eritrea NA 2013
## 3854 ER Eritrea NA 2012
## 3855 ER Eritrea 700.9982 2011
## 3856 ER Eritrea 653.8688 2010
## 3857 ER Eritrea 650.1897 2009
## 3858 ER Eritrea 637.6027 2008
## 3859 ER Eritrea 722.3670 2007
## 3860 ER Eritrea 731.3222 2006
## 3861 ER Eritrea 762.3992 2005
## 3862 ER Eritrea 772.4624 2004
## 3863 ER Eritrea 796.1971 2003
## 3864 ER Eritrea 857.4481 2002
## 3865 ER Eritrea 869.7055 2001
## 3866 ER Eritrea 828.4017 2000
## 3867 ER Eritrea 876.2990 1999
## 3868 ER Eritrea 888.4803 1998
## 3869 ER Eritrea 877.4784 1997
## 3870 ER Eritrea 812.6955 1996
## 3871 ER Eritrea 741.2072 1995
## 3872 ER Eritrea 715.9940 1994
## 3873 ER Eritrea 585.3214 1993
## 3874 ER Eritrea 511.5741 1992
## 3875 ER Eritrea NA 1991
## 3876 ER Eritrea NA 1990
## 3877 ER Eritrea NA 1989
## 3878 ER Eritrea NA 1988
## 3879 ER Eritrea NA 1987
## 3880 ER Eritrea NA 1986
## 3881 ER Eritrea NA 1985
## 3882 ER Eritrea NA 1984
## 3883 ER Eritrea NA 1983
## 3884 ER Eritrea NA 1982
## 3885 ER Eritrea NA 1981
## 3886 ER Eritrea NA 1980
## 3887 ER Eritrea NA 1979
## 3888 ER Eritrea NA 1978
## 3889 ER Eritrea NA 1977
## 3890 ER Eritrea NA 1976
## 3891 ER Eritrea NA 1975
## 3892 ER Eritrea NA 1974
## 3893 ER Eritrea NA 1973
## 3894 ER Eritrea NA 1972
## 3895 ER Eritrea NA 1971
## 3896 ER Eritrea NA 1970
## 3897 ER Eritrea NA 1969
## 3898 ER Eritrea NA 1968
## 3899 ER Eritrea NA 1967
## 3900 ER Eritrea NA 1966
## 3901 ER Eritrea NA 1965
## 3902 ER Eritrea NA 1964
## 3903 ER Eritrea NA 1963
## 3904 ER Eritrea NA 1962
## 3905 ER Eritrea NA 1961
## 3906 ER Eritrea NA 1960
## 3907 ES Spain 26238.7808 2021
## 3908 ES Spain 24939.1873 2020
## 3909 ES Spain 28101.5271 2019
## 3910 ES Spain 27725.8055 2018
## 3911 ES Spain 27224.3980 2017
## 3912 ES Spain 26500.3139 2016
## 3913 ES Spain 25742.3688 2015
## 3914 ES Spain 24772.3413 2014
## 3915 ES Spain 24361.2573 2013
## 3916 ES Spain 24635.1756 2012
## 3917 ES Spain 25402.9611 2011
## 3918 ES Spain 25702.7042 2010
## 3919 ES Spain 25779.2915 2009
## 3920 ES Spain 27025.6812 2008
## 3921 ES Spain 27218.8172 2007
## 3922 ES Spain 26762.6421 2006
## 3923 ES Spain 26146.1644 2005
## 3924 ES Spain 25654.6984 2004
## 3925 ES Spain 25310.7983 2003
## 3926 ES Spain 25026.4346 2002
## 3927 ES Spain 24707.6930 2001
## 3928 ES Spain 23938.2967 2000
## 3929 ES Spain 22847.0199 1999
## 3930 ES Spain 21953.9709 1998
## 3931 ES Spain 21117.3233 1997
## 3932 ES Spain 20448.8796 1996
## 3933 ES Spain 20002.0701 1995
## 3934 ES Spain 19551.4183 1994
## 3935 ES Spain 19187.4502 1993
## 3936 ES Spain 19488.2234 1992
## 3937 ES Spain 19403.6013 1991
## 3938 ES Spain 18970.0735 1990
## 3939 ES Spain 18297.4999 1989
## 3940 ES Spain 17482.3311 1988
## 3941 ES Spain 16670.2098 1987
## 3942 ES Spain 15835.1040 1986
## 3943 ES Spain 15382.0593 1985
## 3944 ES Spain 15087.6497 1984
## 3945 ES Spain 14884.7853 1983
## 3946 ES Spain 14697.3189 1982
## 3947 ES Spain 14603.7949 1981
## 3948 ES Spain 14727.4892 1980
## 3949 ES Spain 14525.3951 1979
## 3950 ES Spain 14647.9292 1978
## 3951 ES Spain 14576.3987 1977
## 3952 ES Spain 14320.6804 1976
## 3953 ES Spain 14009.9711 1975
## 3954 ES Spain 14085.9078 1974
## 3955 ES Spain 13483.0705 1973
## 3956 ES Spain 12647.8061 1972
## 3957 ES Spain 11824.5576 1971
## 3958 ES Spain 11436.1928 1970
## 3959 ES Spain 11088.1617 1969
## 3960 ES Spain 10282.1365 1968
## 3961 ES Spain 9772.7632 1967
## 3962 ES Spain 9482.2161 1966
## 3963 ES Spain 8932.5570 1965
## 3964 ES Spain 8498.6474 1964
## 3965 ES Spain 8150.8314 1963
## 3966 ES Spain 7502.6412 1962
## 3967 ES Spain 6886.5391 1961
## 3968 ES Spain 6215.0363 1960
## 3969 ET Ethiopia 852.0062 2021
## 3970 ET Ethiopia 826.9731 2020
## 3971 ET Ethiopia 799.7951 2019
## 3972 ET Ethiopia 757.3504 2018
## 3973 ET Ethiopia 727.8441 2017
## 3974 ET Ethiopia 682.2394 2016
## 3975 ET Ethiopia 640.5419 2015
## 3976 ET Ethiopia 596.4551 2014
## 3977 ET Ethiopia 556.3263 2013
## 3978 ET Ethiopia 517.5135 2012
## 3979 ET Ethiopia 489.9927 2011
## 3980 ET Ethiopia 453.2988 2010
## 3981 ET Ethiopia 414.1205 2009
## 3982 ET Ethiopia 391.2556 2008
## 3983 ET Ethiopia 362.9693 2007
## 3984 ET Ethiopia 334.7274 2006
## 3985 ET Ethiopia 310.4826 2005
## 3986 ET Ethiopia 285.5457 2004
## 3987 ET Ethiopia 258.6288 2003
## 3988 ET Ethiopia 271.9869 2002
## 3989 ET Ethiopia 275.7222 2001
## 3990 ET Ethiopia 262.0253 2000
## 3991 ET Ethiopia 254.2476 1999
## 3992 ET Ethiopia 248.8657 1998
## 3993 ET Ethiopia 265.4683 1997
## 3994 ET Ethiopia 265.3309 1996
## 3995 ET Ethiopia 243.5984 1995
## 3996 ET Ethiopia 237.2994 1994
## 3997 ET Ethiopia 238.0991 1993
## 3998 ET Ethiopia 218.1018 1992
## 3999 ET Ethiopia 247.5432 1991
## 4000 ET Ethiopia 276.1558 1990
## 4001 ET Ethiopia 278.2122 1989
## 4002 ET Ethiopia 288.6723 1988
## 4003 ET Ethiopia 296.6915 1987
## 4004 ET Ethiopia 269.0439 1986
## 4005 ET Ethiopia 253.2675 1985
## 4006 ET Ethiopia 294.2826 1984
## 4007 ET Ethiopia 312.6908 1983
## 4008 ET Ethiopia 297.8603 1982
## 4009 ET Ethiopia 303.4468 1981
## 4010 ET Ethiopia NA 1980
## 4011 ET Ethiopia NA 1979
## 4012 ET Ethiopia NA 1978
## 4013 ET Ethiopia NA 1977
## 4014 ET Ethiopia NA 1976
## 4015 ET Ethiopia NA 1975
## 4016 ET Ethiopia NA 1974
## 4017 ET Ethiopia NA 1973
## 4018 ET Ethiopia NA 1972
## 4019 ET Ethiopia NA 1971
## 4020 ET Ethiopia NA 1970
## 4021 ET Ethiopia NA 1969
## 4022 ET Ethiopia NA 1968
## 4023 ET Ethiopia NA 1967
## 4024 ET Ethiopia NA 1966
## 4025 ET Ethiopia NA 1965
## 4026 ET Ethiopia NA 1964
## 4027 ET Ethiopia NA 1963
## 4028 ET Ethiopia NA 1962
## 4029 ET Ethiopia NA 1961
## 4030 ET Ethiopia NA 1960
## 4031 EU European Union 31046.0337 2020
## 4032 EU European Union NA 1968
## 4033 EU European Union 33032.9640 2019
## 4034 EU European Union NA 1969
## 4035 EU European Union 32755.3794 2021
## 4036 EU European Union NA 1967
## 4037 EU European Union 32460.5403 2018
## 4038 EU European Union NA 1962
## 4039 EU European Union 31855.0679 2017
## 4040 EU European Union NA 1964
## 4041 EU European Union NA 1963
## 4042 EU European Union 29861.4807 2014
## 4043 EU European Union 29471.8257 2013
## 4044 EU European Union 29552.9600 2012
## 4045 EU European Union 29807.1297 2011
## 4046 EU European Union 29211.4265 2010
## 4047 EU European Union NA 1966
## 4048 EU European Union NA 1965
## 4049 EU European Union 17500.2361 1981
## 4050 EU European Union 17482.6785 1980
## 4051 EU European Union 17204.1978 1979
## 4052 EU European Union 16635.7805 1978
## 4053 EU European Union 31031.1789 2016
## 4054 EU European Union 30485.0288 2015
## 4055 EU European Union 15184.1470 1975
## 4056 EU European Union 15376.7814 1974
## 4057 EU European Union 15006.9608 1973
## 4058 EU European Union 14247.8814 1972
## 4059 EU European Union 13691.6958 1971
## 4060 EU European Union 13282.2725 1970
## 4061 EU European Union 23902.5885 1997
## 4062 EU European Union 28608.6469 2009
## 4063 EU European Union 29979.9053 2008
## 4064 EU European Union 29884.6316 2007
## 4065 EU European Union 29068.1499 2006
## 4066 EU European Union 16217.4926 1977
## 4067 EU European Union 15841.2407 1976
## 4068 EU European Union 27145.2524 2003
## 4069 EU European Union 26996.8549 2002
## 4070 EU European Union 26761.8509 2001
## 4071 EU European Union 26226.7402 2000
## 4072 EU European Union 25272.5354 1999
## 4073 EU European Union 24589.2538 1998
## 4074 EU European Union 18194.6727 1984
## 4075 EU European Union 23319.8573 1996
## 4076 EU European Union 22926.6368 1995
## 4077 EU European Union 22374.3041 1994
## 4078 EU European Union 21850.5957 1993
## 4079 EU European Union NA 1961
## 4080 EU European Union NA 1960
## 4081 EU European Union 21524.0178 1990
## 4082 EU European Union 20889.6590 1989
## 4083 EU European Union 20170.4137 1988
## 4084 EU European Union 19427.2547 1987
## 4085 EU European Union 19005.6424 1986
## 4086 EU European Union 18578.0772 1985
## 4087 EU European Union 21859.1170 1991
## 4088 EU European Union 17792.7989 1983
## 4089 EU European Union 17584.7121 1982
## 4090 EU European Union 27744.5207 2004
## 4091 EU European Union 28178.2628 2005
## 4092 EU European Union 22048.2910 1992
## 4093 F1 Fragile and conflict affected situations 1628.2016 1987
## 4094 F1 Fragile and conflict affected situations 1297.0249 1996
## 4095 F1 Fragile and conflict affected situations 1332.0805 1997
## 4096 F1 Fragile and conflict affected situations 1456.8728 1992
## 4097 F1 Fragile and conflict affected situations 1486.5173 1991
## 4098 F1 Fragile and conflict affected situations 1379.6510 1998
## 4099 F1 Fragile and conflict affected situations 1396.9246 1993
## 4100 F1 Fragile and conflict affected situations 1643.8154 1988
## 4101 F1 Fragile and conflict affected situations 1913.6920 2015
## 4102 F1 Fragile and conflict affected situations 1649.0855 1990
## 4103 F1 Fragile and conflict affected situations 1615.2551 1989
## 4104 F1 Fragile and conflict affected situations 1582.3223 1984
## 4105 F1 Fragile and conflict affected situations 1628.0168 1983
## 4106 F1 Fragile and conflict affected situations 1595.3863 1986
## 4107 F1 Fragile and conflict affected situations 1597.7332 1985
## 4108 F1 Fragile and conflict affected situations 1815.2959 2021
## 4109 F1 Fragile and conflict affected situations 1812.5131 2020
## 4110 F1 Fragile and conflict affected situations 1935.0124 2019
## 4111 F1 Fragile and conflict affected situations 1933.5802 2018
## 4112 F1 Fragile and conflict affected situations 1924.5006 2017
## 4113 F1 Fragile and conflict affected situations 1917.8167 2016
## 4114 F1 Fragile and conflict affected situations 1468.5657 2001
## 4115 F1 Fragile and conflict affected situations 1939.0353 2014
## 4116 F1 Fragile and conflict affected situations 1942.0006 2013
## 4117 F1 Fragile and conflict affected situations 1922.1301 2012
## 4118 F1 Fragile and conflict affected situations 1877.1147 2011
## 4119 F1 Fragile and conflict affected situations 1280.3204 1995
## 4120 F1 Fragile and conflict affected situations 1310.3751 1994
## 4121 F1 Fragile and conflict affected situations 1783.0873 2007
## 4122 F1 Fragile and conflict affected situations 1721.3801 2006
## 4123 F1 Fragile and conflict affected situations 1664.2992 2005
## 4124 F1 Fragile and conflict affected situations 1609.7767 2004
## 4125 F1 Fragile and conflict affected situations 1483.9707 2003
## 4126 F1 Fragile and conflict affected situations 1501.0717 2002
## 4127 F1 Fragile and conflict affected situations 1859.5769 1977
## 4128 F1 Fragile and conflict affected situations 1439.9057 2000
## 4129 F1 Fragile and conflict affected situations 1395.7912 1999
## 4130 F1 Fragile and conflict affected situations NA 1961
## 4131 F1 Fragile and conflict affected situations NA 1960
## 4132 F1 Fragile and conflict affected situations 1637.6216 1972
## 4133 F1 Fragile and conflict affected situations 1921.6761 2010
## 4134 F1 Fragile and conflict affected situations 1839.4548 2009
## 4135 F1 Fragile and conflict affected situations 1746.1440 1982
## 4136 F1 Fragile and conflict affected situations 1805.1941 1981
## 4137 F1 Fragile and conflict affected situations 1922.7516 1980
## 4138 F1 Fragile and conflict affected situations 1853.4487 1979
## 4139 F1 Fragile and conflict affected situations 1794.9867 1978
## 4140 F1 Fragile and conflict affected situations NA 1965
## 4141 F1 Fragile and conflict affected situations 1825.4970 1976
## 4142 F1 Fragile and conflict affected situations 1739.8729 1975
## 4143 F1 Fragile and conflict affected situations 1786.7166 1974
## 4144 F1 Fragile and conflict affected situations 1666.7791 1973
## 4145 F1 Fragile and conflict affected situations 1371.8526 1969
## 4146 F1 Fragile and conflict affected situations 1238.6107 1968
## 4147 F1 Fragile and conflict affected situations NA 1967
## 4148 F1 Fragile and conflict affected situations 1830.0499 2008
## 4149 F1 Fragile and conflict affected situations 1630.5186 1971
## 4150 F1 Fragile and conflict affected situations NA 1964
## 4151 F1 Fragile and conflict affected situations NA 1963
## 4152 F1 Fragile and conflict affected situations NA 1966
## 4153 F1 Fragile and conflict affected situations 1522.7099 1970
## 4154 F1 Fragile and conflict affected situations NA 1962
## 4155 FI Finland 46471.3594 2021
## 4156 FI Finland 45009.6153 2020
## 4157 FI Finland 46135.0777 2019
## 4158 FI Finland 45628.9257 2018
## 4159 FI Finland 45173.6294 2017
## 4160 FI Finland 43878.9667 2016
## 4161 FI Finland 42801.9081 2015
## 4162 FI Finland 42710.9213 2014
## 4163 FI Finland 43044.9971 2013
## 4164 FI Finland 43637.2487 2012
## 4165 FI Finland 44466.8177 2011
## 4166 FI Finland 43563.5722 2010
## 4167 FI Finland 42412.0978 2009
## 4168 FI Finland 46358.6204 2008
## 4169 FI Finland 46212.6410 2007
## 4170 FI Finland 44074.0309 2006
## 4171 FI Finland 42530.6197 2005
## 4172 FI Finland 41522.1751 2004
## 4173 FI Finland 40044.3049 2003
## 4174 FI Finland 39351.3904 2002
## 4175 FI Finland 38784.7726 2001
## 4176 FI Finland 37884.3913 2000
## 4177 FI Finland 35891.0056 1999
## 4178 FI Finland 34464.9909 1998
## 4179 FI Finland 32768.3781 1997
## 4180 FI Finland 30908.3003 1996
## 4181 FI Finland 29912.8980 1995
## 4182 FI Finland 28812.3036 1994
## 4183 FI Finland 27833.7026 1993
## 4184 FI Finland 28155.0896 1992
## 4185 FI Finland 29278.3637 1991
## 4186 FI Finland 31279.9520 1990
## 4187 FI Finland 31209.7581 1989
## 4188 FI Finland 29806.3433 1988
## 4189 FI Finland 28410.8751 1987
## 4190 FI Finland 27508.2000 1986
## 4191 FI Finland 26857.5936 1985
## 4192 FI Finland 26045.5139 1984
## 4193 FI Finland 25363.8552 1983
## 4194 FI Finland 24744.2968 1982
## 4195 FI Finland 24133.2421 1981
## 4196 FI Finland 23921.6145 1980
## 4197 FI Finland 22769.1073 1979
## 4198 FI Finland 21309.7127 1978
## 4199 FI Finland 20764.7166 1977
## 4200 FI Finland 20773.1309 1976
## 4201 FI Finland 20764.3370 1975
## 4202 FI Finland 20486.9386 1974
## 4203 FI Finland 19948.8274 1973
## 4204 FI Finland 18752.7792 1972
## 4205 FI Finland 17510.2266 1971
## 4206 FI Finland 17128.6307 1970
## 4207 FI Finland 16280.1983 1969
## 4208 FI Finland 14846.4872 1968
## 4209 FI Finland 14577.5309 1967
## 4210 FI Finland 14345.5591 1966
## 4211 FI Finland 14065.6737 1965
## 4212 FI Finland 13401.9566 1964
## 4213 FI Finland 12805.8626 1963
## 4214 FI Finland 12486.5232 1962
## 4215 FI Finland 12207.6936 1961
## 4216 FI Finland 11425.2934 1960
## 4217 FJ Fiji 4708.0919 2021
## 4218 FJ Fiji 4943.7696 2020
## 4219 FJ Fiji 5869.0211 2019
## 4220 FJ Fiji 5938.4275 2018
## 4221 FJ Fiji 5759.6586 2017
## 4222 FJ Fiji 5498.6619 2016
## 4223 FJ Fiji 5390.7142 2015
## 4224 FJ Fiji 5171.5276 2014
## 4225 FJ Fiji 4901.8976 2013
## 4226 FJ Fiji 4683.2263 2012
## 4227 FJ Fiji 4626.6833 2011
## 4228 FJ Fiji 4523.8662 2010
## 4229 FJ Fiji 4425.8480 2009
## 4230 FJ Fiji 4532.0132 2008
## 4231 FJ Fiji 4534.8828 2007
## 4232 FJ Fiji 4619.7340 2006
## 4233 FJ Fiji 4570.2859 2005
## 4234 FJ Fiji 4559.2814 2004
## 4235 FJ Fiji 4339.2778 2003
## 4236 FJ Fiji 4300.6413 2002
## 4237 FJ Fiji 4174.1182 2001
## 4238 FJ Fiji 4106.9663 2000
## 4239 FJ Fiji 4202.3926 1999
## 4240 FJ Fiji 3892.2000 1998
## 4241 FJ Fiji 3878.1754 1997
## 4242 FJ Fiji 4007.6120 1996
## 4243 FJ Fiji 3868.2488 1995
## 4244 FJ Fiji 3822.3119 1994
## 4245 FJ Fiji 3688.1130 1993
## 4246 FJ Fiji 3662.0868 1992
## 4247 FJ Fiji 3494.1215 1991
## 4248 FJ Fiji 3624.7108 1990
## 4249 FJ Fiji 3444.7873 1989
## 4250 FJ Fiji 3213.7259 1988
## 4251 FJ Fiji 3188.3644 1987
## 4252 FJ Fiji 3429.1049 1986
## 4253 FJ Fiji 3213.1927 1985
## 4254 FJ Fiji 3422.9056 1984
## 4255 FJ Fiji 3226.8779 1983
## 4256 FJ Fiji 3446.4929 1982
## 4257 FJ Fiji 3762.7635 1981
## 4258 FJ Fiji 3626.3225 1980
## 4259 FJ Fiji 3766.8109 1979
## 4260 FJ Fiji 3423.6897 1978
## 4261 FJ Fiji 3423.3261 1977
## 4262 FJ Fiji 3291.5555 1976
## 4263 FJ Fiji 3264.6496 1975
## 4264 FJ Fiji 3311.8036 1974
## 4265 FJ Fiji 3293.5186 1973
## 4266 FJ Fiji 3012.2670 1972
## 4267 FJ Fiji 2861.6452 1971
## 4268 FJ Fiji 2734.0984 1970
## 4269 FJ Fiji 2477.5929 1969
## 4270 FJ Fiji 2466.9902 1968
## 4271 FJ Fiji 2337.4198 1967
## 4272 FJ Fiji 2112.1907 1966
## 4273 FJ Fiji 2168.8196 1965
## 4274 FJ Fiji 2295.4133 1964
## 4275 FJ Fiji 2260.0743 1963
## 4276 FJ Fiji 2198.6789 1962
## 4277 FJ Fiji 2197.3415 1961
## 4278 FJ Fiji 2196.9262 1960
## 4279 FM Micronesia, Fed. Sts. 2719.6846 2021
## 4280 FM Micronesia, Fed. Sts. 2839.3884 2020
## 4281 FM Micronesia, Fed. Sts. 2921.1456 2019
## 4282 FM Micronesia, Fed. Sts. 2917.2422 2018
## 4283 FM Micronesia, Fed. Sts. 2941.8733 2017
## 4284 FM Micronesia, Fed. Sts. 2897.4176 2016
## 4285 FM Micronesia, Fed. Sts. 2906.6170 2015
## 4286 FM Micronesia, Fed. Sts. 2815.4975 2014
## 4287 FM Micronesia, Fed. Sts. 2923.3597 2013
## 4288 FM Micronesia, Fed. Sts. 3076.1654 2012
## 4289 FM Micronesia, Fed. Sts. 3166.7439 2011
## 4290 FM Micronesia, Fed. Sts. 3084.7539 2010
## 4291 FM Micronesia, Fed. Sts. 3014.9860 2009
## 4292 FM Micronesia, Fed. Sts. 2965.7382 2008
## 4293 FM Micronesia, Fed. Sts. 3012.9471 2007
## 4294 FM Micronesia, Fed. Sts. 3042.1582 2006
## 4295 FM Micronesia, Fed. Sts. 3022.7957 2005
## 4296 FM Micronesia, Fed. Sts. 2948.7235 2004
## 4297 FM Micronesia, Fed. Sts. 3034.5233 2003
## 4298 FM Micronesia, Fed. Sts. 2984.0662 2002
## 4299 FM Micronesia, Fed. Sts. 2963.8722 2001
## 4300 FM Micronesia, Fed. Sts. 2894.6429 2000
## 4301 FM Micronesia, Fed. Sts. 2751.8445 1999
## 4302 FM Micronesia, Fed. Sts. 2703.5720 1998
## 4303 FM Micronesia, Fed. Sts. 2622.1719 1997
## 4304 FM Micronesia, Fed. Sts. 2795.5291 1996
## 4305 FM Micronesia, Fed. Sts. 2908.2538 1995
## 4306 FM Micronesia, Fed. Sts. 2756.2011 1994
## 4307 FM Micronesia, Fed. Sts. 2827.7926 1993
## 4308 FM Micronesia, Fed. Sts. 2679.7871 1992
## 4309 FM Micronesia, Fed. Sts. 2644.5200 1991
## 4310 FM Micronesia, Fed. Sts. 2524.9473 1990
## 4311 FM Micronesia, Fed. Sts. 2491.9098 1989
## 4312 FM Micronesia, Fed. Sts. 2461.4145 1988
## 4313 FM Micronesia, Fed. Sts. 2453.5556 1987
## 4314 FM Micronesia, Fed. Sts. 2481.8635 1986
## 4315 FM Micronesia, Fed. Sts. NA 1985
## 4316 FM Micronesia, Fed. Sts. NA 1984
## 4317 FM Micronesia, Fed. Sts. NA 1983
## 4318 FM Micronesia, Fed. Sts. NA 1982
## 4319 FM Micronesia, Fed. Sts. NA 1981
## 4320 FM Micronesia, Fed. Sts. NA 1980
## 4321 FM Micronesia, Fed. Sts. NA 1979
## 4322 FM Micronesia, Fed. Sts. NA 1978
## 4323 FM Micronesia, Fed. Sts. NA 1977
## 4324 FM Micronesia, Fed. Sts. NA 1976
## 4325 FM Micronesia, Fed. Sts. NA 1975
## 4326 FM Micronesia, Fed. Sts. NA 1974
## 4327 FM Micronesia, Fed. Sts. NA 1973
## 4328 FM Micronesia, Fed. Sts. NA 1972
## 4329 FM Micronesia, Fed. Sts. NA 1971
## 4330 FM Micronesia, Fed. Sts. NA 1970
## 4331 FM Micronesia, Fed. Sts. NA 1969
## 4332 FM Micronesia, Fed. Sts. NA 1968
## 4333 FM Micronesia, Fed. Sts. NA 1967
## 4334 FM Micronesia, Fed. Sts. NA 1966
## 4335 FM Micronesia, Fed. Sts. NA 1965
## 4336 FM Micronesia, Fed. Sts. NA 1964
## 4337 FM Micronesia, Fed. Sts. NA 1963
## 4338 FM Micronesia, Fed. Sts. NA 1962
## 4339 FM Micronesia, Fed. Sts. NA 1961
## 4340 FM Micronesia, Fed. Sts. NA 1960
## 4341 FO Faroe Islands NA 2021
## 4342 FO Faroe Islands NA 2020
## 4343 FO Faroe Islands NA 2019
## 4344 FO Faroe Islands NA 2018
## 4345 FO Faroe Islands NA 2017
## 4346 FO Faroe Islands NA 2016
## 4347 FO Faroe Islands 53310.2620 2015
## 4348 FO Faroe Islands NA 2014
## 4349 FO Faroe Islands NA 2013
## 4350 FO Faroe Islands NA 2012
## 4351 FO Faroe Islands NA 2011
## 4352 FO Faroe Islands NA 2010
## 4353 FO Faroe Islands NA 2009
## 4354 FO Faroe Islands NA 2008
## 4355 FO Faroe Islands NA 2007
## 4356 FO Faroe Islands NA 2006
## 4357 FO Faroe Islands NA 2005
## 4358 FO Faroe Islands NA 2004
## 4359 FO Faroe Islands NA 2003
## 4360 FO Faroe Islands NA 2002
## 4361 FO Faroe Islands NA 2001
## 4362 FO Faroe Islands NA 2000
## 4363 FO Faroe Islands NA 1999
## 4364 FO Faroe Islands NA 1998
## 4365 FO Faroe Islands NA 1997
## 4366 FO Faroe Islands NA 1996
## 4367 FO Faroe Islands NA 1995
## 4368 FO Faroe Islands NA 1994
## 4369 FO Faroe Islands NA 1993
## 4370 FO Faroe Islands NA 1992
## 4371 FO Faroe Islands NA 1991
## 4372 FO Faroe Islands NA 1990
## 4373 FO Faroe Islands NA 1989
## 4374 FO Faroe Islands NA 1988
## 4375 FO Faroe Islands NA 1987
## 4376 FO Faroe Islands NA 1986
## 4377 FO Faroe Islands NA 1985
## 4378 FO Faroe Islands NA 1984
## 4379 FO Faroe Islands NA 1983
## 4380 FO Faroe Islands NA 1982
## 4381 FO Faroe Islands NA 1981
## 4382 FO Faroe Islands NA 1980
## 4383 FO Faroe Islands NA 1979
## 4384 FO Faroe Islands NA 1978
## 4385 FO Faroe Islands NA 1977
## 4386 FO Faroe Islands NA 1976
## 4387 FO Faroe Islands NA 1975
## 4388 FO Faroe Islands NA 1974
## 4389 FO Faroe Islands NA 1973
## 4390 FO Faroe Islands NA 1972
## 4391 FO Faroe Islands NA 1971
## 4392 FO Faroe Islands NA 1970
## 4393 FO Faroe Islands NA 1969
## 4394 FO Faroe Islands NA 1968
## 4395 FO Faroe Islands NA 1967
## 4396 FO Faroe Islands NA 1966
## 4397 FO Faroe Islands NA 1965
## 4398 FO Faroe Islands NA 1964
## 4399 FO Faroe Islands NA 1963
## 4400 FO Faroe Islands NA 1962
## 4401 FO Faroe Islands NA 1961
## 4402 FO Faroe Islands NA 1960
## 4403 FR France 38210.2182 2021
## 4404 FR France 35785.9670 2020
## 4405 FR France 38912.3313 2019
## 4406 FR France 38291.8658 2018
## 4407 FR France 37694.0833 2017
## 4408 FR France 36956.7958 2016
## 4409 FR France 36652.9223 2015
## 4410 FR France 36378.6187 2014
## 4411 FR France 36205.1678 2013
## 4412 FR France 36183.4880 2012
## 4413 FR France 36245.5428 2011
## 4414 FR France 35639.8041 2010
## 4415 FR France 35131.4491 2009
## 4416 FR France 36357.3225 2008
## 4417 FR France 36468.0979 2007
## 4418 FR France 35825.7486 2006
## 4419 FR France 35213.8931 2005
## 4420 FR France 34899.8764 2004
## 4421 FR France 34190.3029 2003
## 4422 FR France 34152.3659 2002
## 4423 FR France 34015.3809 2001
## 4424 FR France 33597.3662 2000
## 4425 FR France 32551.0831 1999
## 4426 FR France 31636.5672 1998
## 4427 FR France 30653.3529 1997
## 4428 FR France 30059.6950 1996
## 4429 FR France 29746.0055 1995
## 4430 FR France 29237.7063 1994
## 4431 FR France 28670.5992 1993
## 4432 FR France 28977.2621 1992
## 4433 FR France 28663.2841 1991
## 4434 FR France 28523.5774 1990
## 4435 FR France 27854.6079 1989
## 4436 FR France 26840.0499 1988
## 4437 FR France 25769.7309 1987
## 4438 FR France 25270.0182 1986
## 4439 FR France 24832.9692 1985
## 4440 FR France 24573.9301 1984
## 4441 FR France 24343.1301 1983
## 4442 FR France 24176.3145 1982
## 4443 FR France 23708.2313 1981
## 4444 FR France 23571.7601 1980
## 4445 FR France 23308.6779 1979
## 4446 FR France 22602.2938 1978
## 4447 FR France 21826.9181 1977
## 4448 FR France 21192.4504 1976
## 4449 FR France 20416.3807 1975
## 4450 FR France 20744.7098 1974
## 4451 FR France 20033.0120 1973
## 4452 FR France 18985.7672 1972
## 4453 FR France 18312.5430 1971
## 4454 FR France 17526.4742 1970
## 4455 FR France 16644.3029 1969
## 4456 FR France 15656.8327 1968
## 4457 FR France 15101.8177 1967
## 4458 FR France 14520.9027 1966
## 4459 FR France 13938.2009 1965
## 4460 FR France 13450.6131 1964
## 4461 FR France 12779.8777 1963
## 4462 FR France 12200.1647 1962
## 4463 FR France 11579.3114 1961
## 4464 FR France 11176.4128 1960
## 4465 GA Gabon 6759.8642 2021
## 4466 GA Gabon 6818.4968 2020
## 4467 GA Gabon 7116.0813 2019
## 4468 GA Gabon 7019.8276 2018
## 4469 GA Gabon 7145.1176 2017
## 4470 GA Gabon 7313.1400 2016
## 4471 GA Gabon 7384.7007 2015
## 4472 GA Gabon 7350.0513 2014
## 4473 GA Gabon 7304.7797 2013
## 4474 GA Gabon 7181.2137 2012
## 4475 GA Gabon 7086.3878 2011
## 4476 GA Gabon 6863.5388 2010
## 4477 GA Gabon 6634.7187 2009
## 4478 GA Gabon 6845.9446 2008
## 4479 GA Gabon 7301.2288 2007
## 4480 GA Gabon 7091.7200 2006
## 4481 GA Gabon 7504.2600 2005
## 4482 GA Gabon 7507.1314 2004
## 4483 GA Gabon 7646.8777 2003
## 4484 GA Gabon 7662.4553 2002
## 4485 GA Gabon 7866.6135 2001
## 4486 GA Gabon 7888.0621 2000
## 4487 GA Gabon 8235.8994 1999
## 4488 GA Gabon 9267.8691 1998
## 4489 GA Gabon 9181.8263 1997
## 4490 GA Gabon 8905.0252 1996
## 4491 GA Gabon 8815.2289 1995
## 4492 GA Gabon 8617.5554 1994
## 4493 GA Gabon 8530.8168 1993
## 4494 GA Gabon 8429.5487 1992
## 4495 GA Gabon 8937.1336 1991
## 4496 GA Gabon 8655.5379 1990
## 4497 GA Gabon 8457.9402 1989
## 4498 GA Gabon 8010.9962 1988
## 4499 GA Gabon 7298.9446 1987
## 4500 GA Gabon 9056.2550 1986
## 4501 GA Gabon 9382.8877 1985
## 4502 GA Gabon 9869.4089 1984
## 4503 GA Gabon 9426.6771 1983
## 4504 GA Gabon 9161.2177 1982
## 4505 GA Gabon 9698.2768 1981
## 4506 GA Gabon 9461.3395 1980
## 4507 GA Gabon 9454.2077 1979
## 4508 GA Gabon 9636.7592 1978
## 4509 GA Gabon 12984.8658 1977
## 4510 GA Gabon 15187.6452 1976
## 4511 GA Gabon 11437.9245 1975
## 4512 GA Gabon 9789.8732 1974
## 4513 GA Gabon 7151.7138 1973
## 4514 GA Gabon 6609.7316 1972
## 4515 GA Gabon 6046.3787 1971
## 4516 GA Gabon 5588.8763 1970
## 4517 GA Gabon 5246.4580 1969
## 4518 GA Gabon 4956.0410 1968
## 4519 GA Gabon 4936.9211 1967
## 4520 GA Gabon 4837.2590 1966
## 4521 GA Gabon 4713.3185 1965
## 4522 GA Gabon 4420.9290 1964
## 4523 GA Gabon 4288.1357 1963
## 4524 GA Gabon 4091.5952 1962
## 4525 GA Gabon 3849.2815 1961
## 4526 GA Gabon 3386.6159 1960
## 4527 GB United Kingdom 46209.1052 2021
## 4528 GB United Kingdom 43166.1552 2020
## 4529 GB United Kingdom 47750.8797 2019
## 4530 GB United Kingdom 47231.3369 2018
## 4531 GB United Kingdom 46746.6419 2017
## 4532 GB United Kingdom 46081.7153 2016
## 4533 GB United Kingdom 45404.5678 2015
## 4534 GB United Kingdom 44596.1897 2014
## 4535 GB United Kingdom 43621.0592 2013
## 4536 GB United Kingdom 43099.5973 2012
## 4537 GB United Kingdom 42771.6411 2011
## 4538 GB United Kingdom 42487.9254 2010
## 4539 GB United Kingdom 41928.6098 2009
## 4540 GB United Kingdom 44120.9295 2008
## 4541 GB United Kingdom 44576.3677 2007
## 4542 GB United Kingdom 43927.8860 2006
## 4543 GB United Kingdom 43137.2552 2005
## 4544 GB United Kingdom 42336.5542 2004
## 4545 GB United Kingdom 41598.2117 2003
## 4546 GB United Kingdom 40563.3373 2002
## 4547 GB United Kingdom 39888.4993 2001
## 4548 GB United Kingdom 39229.2685 2000
## 4549 GB United Kingdom 37975.0999 1999
## 4550 GB United Kingdom 36995.7094 1998
## 4551 GB United Kingdom 35969.2150 1997
## 4552 GB United Kingdom 34374.5202 1996
## 4553 GB United Kingdom 33645.0733 1995
## 4554 GB United Kingdom 32901.2473 1994
## 4555 GB United Kingdom 31763.4894 1993
## 4556 GB United Kingdom 31066.2355 1992
## 4557 GB United Kingdom 31025.9226 1991
## 4558 GB United Kingdom 31469.1613 1990
## 4559 GB United Kingdom 31333.4620 1989
## 4560 GB United Kingdom 30625.7233 1988
## 4561 GB United Kingdom 29029.7048 1987
## 4562 GB United Kingdom 27602.9439 1986
## 4563 GB United Kingdom 26821.9660 1985
## 4564 GB United Kingdom 25812.3621 1984
## 4565 GB United Kingdom 25279.6243 1983
## 4566 GB United Kingdom 24263.8611 1982
## 4567 GB United Kingdom 23780.7654 1981
## 4568 GB United Kingdom 23977.9324 1980
## 4569 GB United Kingdom 24504.3814 1979
## 4570 GB United Kingdom 23640.1072 1978
## 4571 GB United Kingdom 22687.5314 1977
## 4572 GB United Kingdom 22136.0261 1976
## 4573 GB United Kingdom 21504.7354 1975
## 4574 GB United Kingdom 21824.7596 1974
## 4575 GB United Kingdom 22394.9064 1973
## 4576 GB United Kingdom 21064.0294 1972
## 4577 GB United Kingdom 20259.9999 1971
## 4578 GB United Kingdom 19655.9120 1970
## 4579 GB United Kingdom 18561.7283 1969
## 4580 GB United Kingdom 18287.2057 1968
## 4581 GB United Kingdom 17428.1584 1967
## 4582 GB United Kingdom 17047.2525 1966
## 4583 GB United Kingdom 16876.0174 1965
## 4584 GB United Kingdom 16628.5761 1964
## 4585 GB United Kingdom 15859.4491 1963
## 4586 GB United Kingdom 15235.9237 1962
## 4587 GB United Kingdom 15198.1534 1961
## 4588 GB United Kingdom 14914.8808 1960
## 4589 GD Grenada 9121.3761 2021
## 4590 GD Grenada 8699.1114 2020
## 4591 GD Grenada 10133.1322 2019
## 4592 GD Grenada 10115.0641 2018
## 4593 GD Grenada 9742.6037 2017
## 4594 GD Grenada 9380.2322 2016
## 4595 GD Grenada 9096.5387 2015
## 4596 GD Grenada 8601.0810 2014
## 4597 GD Grenada 8066.5527 2013
## 4598 GD Grenada 7934.0414 2012
## 4599 GD Grenada 8076.8232 2011
## 4600 GD Grenada 8057.6865 2010
## 4601 GD Grenada 8132.7807 2009
## 4602 GD Grenada 8735.9640 2008
## 4603 GD Grenada 8676.5075 2007
## 4604 GD Grenada 8194.9508 2006
## 4605 GD Grenada 8558.8287 2005
## 4606 GD Grenada 7578.3094 2004
## 4607 GD Grenada 7652.8510 2003
## 4608 GD Grenada 7015.9627 2002
## 4609 GD Grenada 6808.7005 2001
## 4610 GD Grenada 6976.7168 2000
## 4611 GD Grenada 6678.0852 1999
## 4612 GD Grenada 6271.9956 1998
## 4613 GD Grenada 5637.5455 1997
## 4614 GD Grenada 5398.2753 1996
## 4615 GD Grenada 5205.8239 1995
## 4616 GD Grenada 5145.5603 1994
## 4617 GD Grenada 5117.0943 1993
## 4618 GD Grenada 5276.9712 1992
## 4619 GD Grenada 5360.8388 1991
## 4620 GD Grenada 5294.9325 1990
## 4621 GD Grenada 5058.9431 1989
## 4622 GD Grenada 4815.9343 1988
## 4623 GD Grenada 4616.0645 1987
## 4624 GD Grenada 4199.1263 1986
## 4625 GD Grenada 3926.3187 1985
## 4626 GD Grenada 3760.5027 1984
## 4627 GD Grenada 3723.6548 1983
## 4628 GD Grenada 3704.5538 1982
## 4629 GD Grenada 3656.8468 1981
## 4630 GD Grenada 3665.4261 1980
## 4631 GD Grenada 3702.9764 1979
## 4632 GD Grenada 3486.8212 1978
## 4633 GD Grenada 3269.1118 1977
## 4634 GD Grenada NA 1976
## 4635 GD Grenada NA 1975
## 4636 GD Grenada NA 1974
## 4637 GD Grenada NA 1973
## 4638 GD Grenada NA 1972
## 4639 GD Grenada NA 1971
## 4640 GD Grenada NA 1970
## 4641 GD Grenada NA 1969
## 4642 GD Grenada NA 1968
## 4643 GD Grenada NA 1967
## 4644 GD Grenada NA 1966
## 4645 GD Grenada NA 1965
## 4646 GD Grenada NA 1964
## 4647 GD Grenada NA 1963
## 4648 GD Grenada NA 1962
## 4649 GD Grenada NA 1961
## 4650 GD Grenada NA 1960
## 4651 GE Georgia 4927.0647 2021
## 4652 GE Georgia 4447.6643 2020
## 4653 GE Georgia 4773.4233 2019
## 4654 GE Georgia 4539.0875 2018
## 4655 GE Georgia 4327.7276 2017
## 4656 GE Georgia 4128.3856 2016
## 4657 GE Georgia 4014.1859 2015
## 4658 GE Georgia 3902.5688 2014
## 4659 GE Georgia 3738.7050 2013
## 4660 GE Georgia 3597.2038 2012
## 4661 GE Georgia 3356.9979 2011
## 4662 GE Georgia 3100.7234 2010
## 4663 GE Georgia 2897.1309 2009
## 4664 GE Georgia 2980.3095 2008
## 4665 GE Georgia 2901.1041 2007
## 4666 GE Georgia 2563.5431 2006
## 4667 GE Georgia 2329.5709 2005
## 4668 GE Georgia 2112.2613 2004
## 4669 GE Georgia 1984.2443 2003
## 4670 GE Georgia 1774.6364 2002
## 4671 GE Georgia 1667.5080 2001
## 4672 GE Georgia 1566.5603 2000
## 4673 GE Georgia 1508.6565 1999
## 4674 GE Georgia 1436.7119 1998
## 4675 GE Georgia 1359.3928 1997
## 4676 GE Georgia 1191.1811 1996
## 4677 GE Georgia 1033.0232 1995
## 4678 GE Georgia 969.7129 1994
## 4679 GE Georgia 1065.7356 1993
## 4680 GE Georgia 1519.0353 1992
## 4681 GE Georgia 2778.3050 1991
## 4682 GE Georgia 3546.1580 1990
## 4683 GE Georgia 4160.4559 1989
## 4684 GE Georgia 4494.8089 1988
## 4685 GE Georgia 4300.6113 1987
## 4686 GE Georgia 4281.3740 1986
## 4687 GE Georgia 4704.1473 1985
## 4688 GE Georgia 4522.1021 1984
## 4689 GE Georgia 4326.1063 1983
## 4690 GE Georgia 4184.2901 1982
## 4691 GE Georgia 4137.0626 1981
## 4692 GE Georgia 3962.4216 1980
## 4693 GE Georgia 3821.0984 1979
## 4694 GE Georgia 3585.1027 1978
## 4695 GE Georgia 3356.7196 1977
## 4696 GE Georgia 3161.6343 1976
## 4697 GE Georgia 3001.4968 1975
## 4698 GE Georgia 2815.8907 1974
## 4699 GE Georgia 2610.5077 1973
## 4700 GE Georgia 2473.2644 1972
## 4701 GE Georgia 2429.4740 1971
## 4702 GE Georgia 2395.6936 1970
## 4703 GE Georgia 2158.7671 1969
## 4704 GE Georgia 2079.6901 1968
## 4705 GE Georgia 2009.1073 1967
## 4706 GE Georgia 1909.5634 1966
## 4707 GE Georgia 1796.1713 1965
## 4708 GE Georgia NA 1964
## 4709 GE Georgia NA 1963
## 4710 GE Georgia NA 1962
## 4711 GE Georgia NA 1961
## 4712 GE Georgia NA 1960
## 4713 GH Ghana 2084.6350 2021
## 4714 GH Ghana 2020.6243 2020
## 4715 GH Ghana 2053.5867 2019
## 4716 GH Ghana 1970.2608 2018
## 4717 GH Ghana 1896.3667 2017
## 4718 GH Ghana 1793.1809 2016
## 4719 GH Ghana 1774.0748 2015
## 4720 GH Ghana 1777.0967 2014
## 4721 GH Ghana 1767.8021 2013
## 4722 GH Ghana 1686.0695 2012
## 4723 GH Ghana 1579.6996 2011
## 4724 GH Ghana 1419.1203 2010
## 4725 GH Ghana 1348.3414 2009
## 4726 GH Ghana 1319.1736 2008
## 4727 GH Ghana 1240.1620 2007
## 4728 GH Ghana 1219.5621 2006
## 4729 GH Ghana 1175.8617 2005
## 4730 GH Ghana 1138.6584 2004
## 4731 GH Ghana 1105.4014 2003
## 4732 GH Ghana 1076.9152 2002
## 4733 GH Ghana 1056.0709 2001
## 4734 GH Ghana 1040.6341 2000
## 4735 GH Ghana 1028.3878 1999
## 4736 GH Ghana 1009.4724 1998
## 4737 GH Ghana 988.2819 1997
## 4738 GH Ghana 972.7306 1996
## 4739 GH Ghana 954.4414 1995
## 4740 GH Ghana 941.7819 1994
## 4741 GH Ghana 937.4460 1993
## 4742 GH Ghana 919.9808 1992
## 4743 GH Ghana 911.5963 1991
## 4744 GH Ghana 891.3048 1990
## 4745 GH Ghana 887.8231 1989
## 4746 GH Ghana 869.4706 1988
## 4747 GH Ghana 847.1364 1987
## 4748 GH Ghana 832.1502 1986
## 4749 GH Ghana 814.6129 1985
## 4750 GH Ghana 798.7614 1984
## 4751 GH Ghana 757.9191 1983
## 4752 GH Ghana 818.4245 1982
## 4753 GH Ghana 904.7609 1981
## 4754 GH Ghana 962.3836 1980
## 4755 GH Ghana 980.0977 1979
## 4756 GH Ghana 1025.7984 1978
## 4757 GH Ghana 963.3676 1977
## 4758 GH Ghana 960.0750 1976
## 4759 GH Ghana 1016.4572 1975
## 4760 GH Ghana 1188.9582 1974
## 4761 GH Ghana 1142.6613 1973
## 4762 GH Ghana 1142.3816 1972
## 4763 GH Ghana 1204.9992 1971
## 4764 GH Ghana 1176.4315 1970
## 4765 GH Ghana 1099.2944 1969
## 4766 GH Ghana 1061.7139 1968
## 4767 GH Ghana 1082.3908 1967
## 4768 GH Ghana 1075.4035 1966
## 4769 GH Ghana 1152.5439 1965
## 4770 GH Ghana 1169.4650 1964
## 4771 GH Ghana 1179.3491 1963
## 4772 GH Ghana 1166.0230 1962
## 4773 GH Ghana 1156.5812 1961
## 4774 GH Ghana 1154.1367 1960
## 4775 GI Gibraltar NA 2021
## 4776 GI Gibraltar NA 2020
## 4777 GI Gibraltar NA 2019
## 4778 GI Gibraltar NA 2018
## 4779 GI Gibraltar NA 2017
## 4780 GI Gibraltar NA 2016
## 4781 GI Gibraltar NA 2015
## 4782 GI Gibraltar NA 2014
## 4783 GI Gibraltar NA 2013
## 4784 GI Gibraltar NA 2012
## 4785 GI Gibraltar NA 2011
## 4786 GI Gibraltar NA 2010
## 4787 GI Gibraltar NA 2009
## 4788 GI Gibraltar NA 2008
## 4789 GI Gibraltar NA 2007
## 4790 GI Gibraltar NA 2006
## 4791 GI Gibraltar NA 2005
## 4792 GI Gibraltar NA 2004
## 4793 GI Gibraltar NA 2003
## 4794 GI Gibraltar NA 2002
## 4795 GI Gibraltar NA 2001
## 4796 GI Gibraltar NA 2000
## 4797 GI Gibraltar NA 1999
## 4798 GI Gibraltar NA 1998
## 4799 GI Gibraltar NA 1997
## 4800 GI Gibraltar NA 1996
## 4801 GI Gibraltar NA 1995
## 4802 GI Gibraltar NA 1994
## 4803 GI Gibraltar NA 1993
## 4804 GI Gibraltar NA 1992
## 4805 GI Gibraltar NA 1991
## 4806 GI Gibraltar NA 1990
## 4807 GI Gibraltar NA 1989
## 4808 GI Gibraltar NA 1988
## 4809 GI Gibraltar NA 1987
## 4810 GI Gibraltar NA 1986
## 4811 GI Gibraltar NA 1985
## 4812 GI Gibraltar NA 1984
## 4813 GI Gibraltar NA 1983
## 4814 GI Gibraltar NA 1982
## 4815 GI Gibraltar NA 1981
## 4816 GI Gibraltar NA 1980
## 4817 GI Gibraltar NA 1979
## 4818 GI Gibraltar NA 1978
## 4819 GI Gibraltar NA 1977
## 4820 GI Gibraltar NA 1976
## 4821 GI Gibraltar NA 1975
## 4822 GI Gibraltar NA 1974
## 4823 GI Gibraltar NA 1973
## 4824 GI Gibraltar NA 1972
## 4825 GI Gibraltar NA 1971
## 4826 GI Gibraltar NA 1970
## 4827 GI Gibraltar NA 1969
## 4828 GI Gibraltar NA 1968
## 4829 GI Gibraltar NA 1967
## 4830 GI Gibraltar NA 1966
## 4831 GI Gibraltar NA 1965
## 4832 GI Gibraltar NA 1964
## 4833 GI Gibraltar NA 1963
## 4834 GI Gibraltar NA 1962
## 4835 GI Gibraltar NA 1961
## 4836 GI Gibraltar NA 1960
## 4837 GL Greenland NA 2021
## 4838 GL Greenland 47957.7937 2020
## 4839 GL Greenland 47908.1067 2019
## 4840 GL Greenland 47013.0349 2018
## 4841 GL Greenland 46598.8233 2017
## 4842 GL Greenland 46561.8316 2016
## 4843 GL Greenland 44536.4013 2015
## 4844 GL Greenland 45545.1903 2014
## 4845 GL Greenland 43338.4290 2013
## 4846 GL Greenland 43655.7459 2012
## 4847 GL Greenland 42994.9238 2011
## 4848 GL Greenland 43198.0773 2010
## 4849 GL Greenland 42899.7888 2009
## 4850 GL Greenland 42527.7111 2008
## 4851 GL Greenland 39896.9169 2007
## 4852 GL Greenland 38829.5768 2006
## 4853 GL Greenland 36681.8438 2005
## 4854 GL Greenland 34953.9857 2004
## 4855 GL Greenland 32779.9156 2003
## 4856 GL Greenland 31475.8540 2002
## 4857 GL Greenland 31930.6286 2001
## 4858 GL Greenland 31614.6517 2000
## 4859 GL Greenland 29570.9931 1999
## 4860 GL Greenland 29169.0769 1998
## 4861 GL Greenland 27117.4015 1997
## 4862 GL Greenland 26772.6417 1996
## 4863 GL Greenland 26416.5440 1995
## 4864 GL Greenland 25604.6223 1994
## 4865 GL Greenland 24303.9236 1993
## 4866 GL Greenland 25544.3258 1992
## 4867 GL Greenland 26823.4063 1991
## 4868 GL Greenland 26805.5776 1990
## 4869 GL Greenland 30528.8333 1989
## 4870 GL Greenland 28883.8482 1988
## 4871 GL Greenland 27705.0909 1987
## 4872 GL Greenland 26551.2682 1986
## 4873 GL Greenland 24931.5228 1985
## 4874 GL Greenland 24280.2834 1984
## 4875 GL Greenland 25901.5009 1983
## 4876 GL Greenland 25327.6348 1982
## 4877 GL Greenland 26758.5836 1981
## 4878 GL Greenland 27005.3541 1980
## 4879 GL Greenland 25150.0149 1979
## 4880 GL Greenland 24179.2314 1978
## 4881 GL Greenland 22714.6628 1977
## 4882 GL Greenland 20747.1713 1976
## 4883 GL Greenland 19619.8146 1975
## 4884 GL Greenland 19533.2191 1974
## 4885 GL Greenland 18667.3322 1973
## 4886 GL Greenland 17731.0935 1972
## 4887 GL Greenland 17088.7022 1971
## 4888 GL Greenland 15375.2027 1970
## 4889 GL Greenland NA 1969
## 4890 GL Greenland NA 1968
## 4891 GL Greenland NA 1967
## 4892 GL Greenland NA 1966
## 4893 GL Greenland NA 1965
## 4894 GL Greenland NA 1964
## 4895 GL Greenland NA 1963
## 4896 GL Greenland NA 1962
## 4897 GL Greenland NA 1961
## 4898 GL Greenland NA 1960
## 4899 GM Gambia, The 711.0504 2021
## 4900 GM Gambia, The 692.7492 2020
## 4901 GM Gambia, The 714.5421 2019
## 4902 GM Gambia, The 692.6321 2018
## 4903 GM Gambia, The 665.2132 2017
## 4904 GM Gambia, The 653.7330 2016
## 4905 GM Gambia, The 660.7236 2015
## 4906 GM Gambia, The 654.3509 2014
## 4907 GM Gambia, The 684.0815 2013
## 4908 GM Gambia, The 685.4642 2012
## 4909 GM Gambia, The 671.3696 2011
## 4910 GM Gambia, The 753.1768 2010
## 4911 GM Gambia, The 732.7855 2009
## 4912 GM Gambia, The 707.7285 2008
## 4913 GM Gambia, The 686.1424 2007
## 4914 GM Gambia, The 686.1300 2006
## 4915 GM Gambia, The 711.2819 2005
## 4916 GM Gambia, The 751.3964 2004
## 4917 GM Gambia, The 724.4703 2003
## 4918 GM Gambia, The 699.9417 2002
## 4919 GM Gambia, The 746.9613 2001
## 4920 GM Gambia, The 728.7096 2000
## 4921 GM Gambia, The 712.6728 1999
## 4922 GM Gambia, The 690.9004 1998
## 4923 GM Gambia, The 688.4448 1997
## 4924 GM Gambia, The 676.8257 1996
## 4925 GM Gambia, The 682.9385 1995
## 4926 GM Gambia, The 698.2252 1994
## 4927 GM Gambia, The 719.0706 1993
## 4928 GM Gambia, The 720.7258 1992
## 4929 GM Gambia, The 721.6147 1991
## 4930 GM Gambia, The 727.0236 1990
## 4931 GM Gambia, The 732.6804 1989
## 4932 GM Gambia, The 725.3098 1988
## 4933 GM Gambia, The 729.6757 1987
## 4934 GM Gambia, The 748.0876 1986
## 4935 GM Gambia, The 752.3002 1985
## 4936 GM Gambia, The 789.9234 1984
## 4937 GM Gambia, The 790.7255 1983
## 4938 GM Gambia, The 736.3427 1982
## 4939 GM Gambia, The 765.1821 1981
## 4940 GM Gambia, The 764.2061 1980
## 4941 GM Gambia, The 742.9977 1979
## 4942 GM Gambia, The 778.5348 1978
## 4943 GM Gambia, The 757.4008 1977
## 4944 GM Gambia, The 757.0841 1976
## 4945 GM Gambia, The 728.5204 1975
## 4946 GM Gambia, The 668.9185 1974
## 4947 GM Gambia, The 651.4769 1973
## 4948 GM Gambia, The 614.4853 1972
## 4949 GM Gambia, The 631.3615 1971
## 4950 GM Gambia, The 650.4180 1970
## 4951 GM Gambia, The 630.6040 1969
## 4952 GM Gambia, The 633.3495 1968
## 4953 GM Gambia, The 594.2140 1967
## 4954 GM Gambia, The 610.1521 1966
## 4955 GM Gambia, The NA 1965
## 4956 GM Gambia, The NA 1964
## 4957 GM Gambia, The NA 1963
## 4958 GM Gambia, The NA 1962
## 4959 GM Gambia, The NA 1961
## 4960 GM Gambia, The NA 1960
## 4961 GN Guinea 965.3755 2021
## 4962 GN Guinea 962.1163 2020
## 4963 GN Guinea 945.5074 2019
## 4964 GN Guinea 920.9643 2018
## 4965 GN Guinea 890.7887 2017
## 4966 GN Guinea 830.2462 2016
## 4967 GN Guinea 769.2555 2015
## 4968 GN Guinea 759.5879 2014
## 4969 GN Guinea 749.8701 2013
## 4970 GN Guinea 737.7131 2012
## 4971 GN Guinea 711.9909 2011
## 4972 GN Guinea 689.2567 2010
## 4973 GN Guinea 672.6307 2009
## 4974 GN Guinea 696.0313 2008
## 4975 GN Guinea 683.9001 2007
## 4976 GN Guinea 654.7477 2006
## 4977 GN Guinea 661.1025 2005
## 4978 GN Guinea 655.0855 2004
## 4979 GN Guinea 652.7307 2003
## 4980 GN Guinea 657.2218 2002
## 4981 GN Guinea 637.4932 2001
## 4982 GN Guinea 628.1551 2000
## 4983 GN Guinea 626.9663 1999
## 4984 GN Guinea 618.8469 1998
## 4985 GN Guinea 612.5726 1997
## 4986 GN Guinea 597.8676 1996
## 4987 GN Guinea 587.6179 1995
## 4988 GN Guinea 576.6894 1994
## 4989 GN Guinea 569.4615 1993
## 4990 GN Guinea 556.7379 1992
## 4991 GN Guinea 554.0437 1991
## 4992 GN Guinea 555.4583 1990
## 4993 GN Guinea 548.3893 1989
## 4994 GN Guinea 543.5848 1988
## 4995 GN Guinea 527.2971 1987
## 4996 GN Guinea 526.0399 1986
## 4997 GN Guinea NA 1985
## 4998 GN Guinea NA 1984
## 4999 GN Guinea NA 1983
## 5000 GN Guinea NA 1982
## 5001 GN Guinea NA 1981
## 5002 GN Guinea NA 1980
## 5003 GN Guinea NA 1979
## 5004 GN Guinea NA 1978
## 5005 GN Guinea NA 1977
## 5006 GN Guinea NA 1976
## 5007 GN Guinea NA 1975
## 5008 GN Guinea NA 1974
## 5009 GN Guinea NA 1973
## 5010 GN Guinea NA 1972
## 5011 GN Guinea NA 1971
## 5012 GN Guinea NA 1970
## 5013 GN Guinea NA 1969
## 5014 GN Guinea NA 1968
## 5015 GN Guinea NA 1967
## 5016 GN Guinea NA 1966
## 5017 GN Guinea NA 1965
## 5018 GN Guinea NA 1964
## 5019 GN Guinea NA 1963
## 5020 GN Guinea NA 1962
## 5021 GN Guinea NA 1961
## 5022 GN Guinea NA 1960
## 5023 GQ Equatorial Guinea 6575.6722 2021
## 5024 GQ Equatorial Guinea 6860.3741 2020
## 5025 GQ Equatorial Guinea 7412.5812 2019
## 5026 GQ Equatorial Guinea 8124.1829 2018
## 5027 GQ Equatorial Guinea 8986.9510 2017
## 5028 GQ Equatorial Guinea 9894.0063 2016
## 5029 GQ Equatorial Guinea 11283.3980 2015
## 5030 GQ Equatorial Guinea 12926.5335 2014
## 5031 GQ Equatorial Guinea 13421.5657 2013
## 5032 GQ Equatorial Guinea 14614.1769 2012
## 5033 GQ Equatorial Guinea 14098.6464 2011
## 5034 GQ Equatorial Guinea 13841.3964 2010
## 5035 GQ Equatorial Guinea 15906.4965 2009
## 5036 GQ Equatorial Guinea 16438.6414 2008
## 5037 GQ Equatorial Guinea 14619.7506 2007
## 5038 GQ Equatorial Guinea 13282.9425 2006
## 5039 GQ Equatorial Guinea 12908.0638 2005
## 5040 GQ Equatorial Guinea 11558.6754 2004
## 5041 GQ Equatorial Guinea 8745.2691 2003
## 5042 GQ Equatorial Guinea 8003.9618 2002
## 5043 GQ Equatorial Guinea 6983.4390 2001
## 5044 GQ Equatorial Guinea 4454.0382 2000
## 5045 GQ Equatorial Guinea 3925.9055 1999
## 5046 GQ Equatorial Guinea 3254.2914 1998
## 5047 GQ Equatorial Guinea 2737.2146 1997
## 5048 GQ Equatorial Guinea 1138.7646 1996
## 5049 GQ Equatorial Guinea 709.8652 1995
## 5050 GQ Equatorial Guinea 626.4943 1994
## 5051 GQ Equatorial Guinea 556.0927 1993
## 5052 GQ Equatorial Guinea 518.0430 1992
## 5053 GQ Equatorial Guinea 397.2734 1991
## 5054 GQ Equatorial Guinea 414.4522 1990
## 5055 GQ Equatorial Guinea 434.9105 1989
## 5056 GQ Equatorial Guinea 453.3071 1988
## 5057 GQ Equatorial Guinea 455.4136 1987
## 5058 GQ Equatorial Guinea 452.5544 1986
## 5059 GQ Equatorial Guinea 485.6025 1985
## 5060 GQ Equatorial Guinea 456.7711 1984
## 5061 GQ Equatorial Guinea 486.4505 1983
## 5062 GQ Equatorial Guinea 501.6285 1982
## 5063 GQ Equatorial Guinea 528.4512 1981
## 5064 GQ Equatorial Guinea 528.4901 1980
## 5065 GQ Equatorial Guinea NA 1979
## 5066 GQ Equatorial Guinea NA 1978
## 5067 GQ Equatorial Guinea NA 1977
## 5068 GQ Equatorial Guinea NA 1976
## 5069 GQ Equatorial Guinea NA 1975
## 5070 GQ Equatorial Guinea NA 1974
## 5071 GQ Equatorial Guinea NA 1973
## 5072 GQ Equatorial Guinea NA 1972
## 5073 GQ Equatorial Guinea NA 1971
## 5074 GQ Equatorial Guinea NA 1970
## 5075 GQ Equatorial Guinea NA 1969
## 5076 GQ Equatorial Guinea NA 1968
## 5077 GQ Equatorial Guinea NA 1967
## 5078 GQ Equatorial Guinea NA 1966
## 5079 GQ Equatorial Guinea NA 1965
## 5080 GQ Equatorial Guinea NA 1964
## 5081 GQ Equatorial Guinea NA 1963
## 5082 GQ Equatorial Guinea NA 1962
## 5083 GQ Equatorial Guinea NA 1961
## 5084 GQ Equatorial Guinea NA 1960
## 5085 GR Greece 18831.2875 2021
## 5086 GR Greece 17323.8228 2020
## 5087 GR Greece 19003.8290 2019
## 5088 GR Greece 18647.4957 2018
## 5089 GR Greece 18304.3077 2017
## 5090 GR Greece 18070.7807 2016
## 5091 GR Greece 18083.8779 2015
## 5092 GR Greece 18000.4185 2014
## 5093 GR Greece 17796.2577 2013
## 5094 GR Greece 18123.6711 2012
## 5095 GR Greece 19400.8077 2011
## 5096 GR Greece 21560.3534 2010
## 5097 GR Greece 22839.4465 2009
## 5098 GR Greece 23928.7094 2008
## 5099 GR Greece 24073.0005 2007
## 5100 GR Greece 23369.3530 2006
## 5101 GR Greece 22185.6168 2005
## 5102 GR Greece 22118.2517 2004
## 5103 GR Greece 21104.9243 2003
## 5104 GR Greece 19996.6385 2002
## 5105 GR Greece 19312.4705 2001
## 5106 GR Greece 18642.8829 2000
## 5107 GR Greece 18013.2193 1999
## 5108 GR Greece 17543.3899 1998
## 5109 GR Greece 16979.5500 1997
## 5110 GR Greece 16331.1885 1996
## 5111 GR Greece 15946.8934 1995
## 5112 GR Greece 15692.0813 1994
## 5113 GR Greece 15461.6169 1993
## 5114 GR Greece 15805.7314 1992
## 5115 GR Greece 15816.2175 1991
## 5116 GR Greece 15525.9087 1990
## 5117 GR Greece 15691.0147 1989
## 5118 GR Greece 15195.6767 1988
## 5119 GR Greece 14623.9143 1987
## 5120 GR Greece 15011.9928 1986
## 5121 GR Greece 14984.1615 1985
## 5122 GR Greece 14674.1992 1984
## 5123 GR Greece 14456.8161 1983
## 5124 GR Greece 14699.7145 1982
## 5125 GR Greece 14960.0573 1981
## 5126 GR Greece 15333.0272 1980
## 5127 GR Greece 15380.2290 1979
## 5128 GR Greece 15078.2926 1978
## 5129 GR Greece 14242.9073 1977
## 5130 GR Greece 14017.1882 1976
## 5131 GR Greece 13323.6798 1975
## 5132 GR Greece 12644.2945 1974
## 5133 GR Greece 13564.2326 1973
## 5134 GR Greece 12605.8585 1972
## 5135 GR Greece 11517.8384 1971
## 5136 GR Greece 10726.8084 1970
## 5137 GR Greece 9903.0474 1969
## 5138 GR Greece 8909.0845 1968
## 5139 GR Greece 8364.6631 1967
## 5140 GR Greece 7980.6048 1966
## 5141 GR Greece 7549.4074 1965
## 5142 GR Greece 6847.4691 1964
## 5143 GR Greece 6281.2945 1963
## 5144 GR Greece 5636.9458 1962
## 5145 GR Greece 5650.0178 1961
## 5146 GR Greece 5030.7436 1960
## 5147 GT Guatemala 4371.6157 2021
## 5148 GT Guatemala 4126.2054 2020
## 5149 GT Guatemala 4254.0352 2019
## 5150 GT Guatemala 4160.0711 2018
## 5151 GT Guatemala 4091.2680 2017
## 5152 GT Guatemala 4034.1585 2016
## 5153 GT Guatemala 3994.6369 2015
## 5154 GT Guatemala 3903.0596 2014
## 5155 GT Guatemala 3802.1538 2013
## 5156 GT Guatemala 3731.6758 2012
## 5157 GT Guatemala 3688.8662 2011
## 5158 GT Guatemala 3606.4305 2010
## 5159 GT Guatemala 3570.3028 2009
## 5160 GT Guatemala 3620.8305 2008
## 5161 GT Guatemala 3573.5996 2007
## 5162 GT Guatemala 3427.6783 2006
## 5163 GT Guatemala 3320.1641 2005
## 5164 GT Guatemala 3282.3211 2004
## 5165 GT Guatemala 3250.8411 2003
## 5166 GT Guatemala 3239.5672 2002
## 5167 GT Guatemala 3192.3086 2001
## 5168 GT Guatemala 3195.3943 2000
## 5169 GT Guatemala 3160.0795 1999
## 5170 GT Guatemala 3115.9774 1998
## 5171 GT Guatemala 3038.7135 1997
## 5172 GT Guatemala 2981.1209 1996
## 5173 GT Guatemala 2965.8918 1995
## 5174 GT Guatemala 2896.2234 1994
## 5175 GT Guatemala 2854.1330 1993
## 5176 GT Guatemala 2817.2311 1992
## 5177 GT Guatemala 2758.6788 1991
## 5178 GT Guatemala 2733.8666 1990
## 5179 GT Guatemala 2725.1068 1989
## 5180 GT Guatemala 2695.0918 1988
## 5181 GT Guatemala 2666.9335 1987
## 5182 GT Guatemala 2647.9577 1986
## 5183 GT Guatemala 2718.2571 1985
## 5184 GT Guatemala 2811.2912 1984
## 5185 GT Guatemala 2875.0960 1983
## 5186 GT Guatemala 3032.2337 1982
## 5187 GT Guatemala 3228.3018 1981
## 5188 GT Guatemala 3291.7370 1980
## 5189 GT Guatemala 3252.5906 1979
## 5190 GT Guatemala 3181.2876 1978
## 5191 GT Guatemala 3100.4127 1977
## 5192 GT Guatemala 2941.2770 1976
## 5193 GT Guatemala 2800.9637 1975
## 5194 GT Guatemala 2810.1133 1974
## 5195 GT Guatemala 2702.9543 1973
## 5196 GT Guatemala 2590.8354 1972
## 5197 GT Guatemala 2471.7801 1971
## 5198 GT Guatemala 2398.7233 1970
## 5199 GT Guatemala 2326.8234 1969
## 5200 GT Guatemala 2279.8722 1968
## 5201 GT Guatemala 2152.8780 1967
## 5202 GT Guatemala 2125.3834 1966
## 5203 GT Guatemala 2071.6407 1965
## 5204 GT Guatemala 2042.4552 1964
## 5205 GT Guatemala 2009.3223 1963
## 5206 GT Guatemala 1888.7033 1962
## 5207 GT Guatemala 1878.5456 1961
## 5208 GT Guatemala 1854.7933 1960
## 5209 GU Guam NA 2021
## 5210 GU Guam 31162.6760 2020
## 5211 GU Guam 35666.3162 2019
## 5212 GU Guam 35103.1618 2018
## 5213 GU Guam 35678.2833 2017
## 5214 GU Guam 35652.8048 2016
## 5215 GU Guam 35829.2504 2015
## 5216 GU Guam 35722.1143 2014
## 5217 GU Guam 35222.3885 2013
## 5218 GU Guam 34728.8937 2012
## 5219 GU Guam 34067.1938 2011
## 5220 GU Guam 34094.3488 2010
## 5221 GU Guam 33383.1269 2009
## 5222 GU Guam 33278.0733 2008
## 5223 GU Guam 32653.3079 2007
## 5224 GU Guam 32461.4485 2006
## 5225 GU Guam 33743.7414 2005
## 5226 GU Guam 32622.1337 2004
## 5227 GU Guam 30704.9533 2003
## 5228 GU Guam 30543.8238 2002
## 5229 GU Guam NA 2001
## 5230 GU Guam NA 2000
## 5231 GU Guam NA 1999
## 5232 GU Guam NA 1998
## 5233 GU Guam NA 1997
## 5234 GU Guam NA 1996
## 5235 GU Guam NA 1995
## 5236 GU Guam NA 1994
## 5237 GU Guam NA 1993
## 5238 GU Guam NA 1992
## 5239 GU Guam NA 1991
## 5240 GU Guam NA 1990
## 5241 GU Guam NA 1989
## 5242 GU Guam NA 1988
## 5243 GU Guam NA 1987
## 5244 GU Guam NA 1986
## 5245 GU Guam NA 1985
## 5246 GU Guam NA 1984
## 5247 GU Guam NA 1983
## 5248 GU Guam NA 1982
## 5249 GU Guam NA 1981
## 5250 GU Guam NA 1980
## 5251 GU Guam NA 1979
## 5252 GU Guam NA 1978
## 5253 GU Guam NA 1977
## 5254 GU Guam NA 1976
## 5255 GU Guam NA 1975
## 5256 GU Guam NA 1974
## 5257 GU Guam NA 1973
## 5258 GU Guam NA 1972
## 5259 GU Guam NA 1971
## 5260 GU Guam NA 1970
## 5261 GU Guam NA 1969
## 5262 GU Guam NA 1968
## 5263 GU Guam NA 1967
## 5264 GU Guam NA 1966
## 5265 GU Guam NA 1965
## 5266 GU Guam NA 1964
## 5267 GU Guam NA 1963
## 5268 GU Guam NA 1962
## 5269 GU Guam NA 1961
## 5270 GU Guam NA 1960
## 5271 GW Guinea-Bissau 627.6750 2021
## 5272 GW Guinea-Bissau 619.2892 2020
## 5273 GW Guinea-Bissau 650.0694 2019
## 5274 GW Guinea-Bissau 637.5467 2018
## 5275 GW Guinea-Bissau 645.3591 2017
## 5276 GW Guinea-Bissau 624.9198 2016
## 5277 GW Guinea-Bissau 603.3994 2015
## 5278 GW Guinea-Bissau 583.5661 2014
## 5279 GW Guinea-Bissau 593.4814 2013
## 5280 GW Guinea-Bissau 590.2661 2012
## 5281 GW Guinea-Bissau 616.6835 2011
## 5282 GW Guinea-Bissau 585.6916 2010
## 5283 GW Guinea-Bissau 574.4708 2009
## 5284 GW Guinea-Bissau 569.9528 2008
## 5285 GW Guinea-Bissau 566.1074 2007
## 5286 GW Guinea-Bissau 561.7350 2006
## 5287 GW Guinea-Bissau 562.3849 2005
## 5288 GW Guinea-Bissau 552.2848 2004
## 5289 GW Guinea-Bissau 550.0894 2003
## 5290 GW Guinea-Bissau 559.5562 2002
## 5291 GW Guinea-Bissau 577.7188 2001
## 5292 GW Guinea-Bissau 577.4857 2000
## 5293 GW Guinea-Bissau 559.0069 1999
## 5294 GW Guinea-Bissau 564.2424 1998
## 5295 GW Guinea-Bissau 799.9123 1997
## 5296 GW Guinea-Bissau 765.7436 1996
## 5297 GW Guinea-Bissau 700.0042 1995
## 5298 GW Guinea-Bissau 684.6529 1994
## 5299 GW Guinea-Bissau 677.9988 1993
## 5300 GW Guinea-Bissau 679.0665 1992
## 5301 GW Guinea-Bissau 687.0513 1991
## 5302 GW Guinea-Bissau 668.6306 1990
## 5303 GW Guinea-Bissau 644.3835 1989
## 5304 GW Guinea-Bissau 620.8334 1988
## 5305 GW Guinea-Bissau 606.7255 1987
## 5306 GW Guinea-Bissau 602.9874 1986
## 5307 GW Guinea-Bissau 622.0063 1985
## 5308 GW Guinea-Bissau 611.7783 1984
## 5309 GW Guinea-Bissau 574.9287 1983
## 5310 GW Guinea-Bissau 609.7020 1982
## 5311 GW Guinea-Bissau 597.3609 1981
## 5312 GW Guinea-Bissau 513.3624 1980
## 5313 GW Guinea-Bissau 616.2824 1979
## 5314 GW Guinea-Bissau 606.2591 1978
## 5315 GW Guinea-Bissau 536.1960 1977
## 5316 GW Guinea-Bissau 578.5985 1976
## 5317 GW Guinea-Bissau 554.5318 1975
## 5318 GW Guinea-Bissau 519.8348 1974
## 5319 GW Guinea-Bissau 504.8234 1973
## 5320 GW Guinea-Bissau 508.5939 1972
## 5321 GW Guinea-Bissau 487.5371 1971
## 5322 GW Guinea-Bissau 517.0412 1970
## 5323 GW Guinea-Bissau NA 1969
## 5324 GW Guinea-Bissau NA 1968
## 5325 GW Guinea-Bissau NA 1967
## 5326 GW Guinea-Bissau NA 1966
## 5327 GW Guinea-Bissau NA 1965
## 5328 GW Guinea-Bissau NA 1964
## 5329 GW Guinea-Bissau NA 1963
## 5330 GW Guinea-Bissau NA 1962
## 5331 GW Guinea-Bissau NA 1961
## 5332 GW Guinea-Bissau NA 1960
## 5333 GY Guyana 11040.7120 2021
## 5334 GY Guyana 9250.3017 2020
## 5335 GY Guyana 6478.2877 2019
## 5336 GY Guyana 6178.8897 2018
## 5337 GY Guyana 5945.0687 2017
## 5338 GY Guyana 5759.6917 2016
## 5339 GY Guyana 5576.8259 2015
## 5340 GY Guyana 5568.2182 2014
## 5341 GY Guyana 5505.3900 2013
## 5342 GY Guyana 5338.7127 2012
## 5343 GY Guyana 5088.6070 2011
## 5344 GY Guyana 4847.4315 2010
## 5345 GY Guyana 4681.6483 2009
## 5346 GY Guyana 4512.3853 2008
## 5347 GY Guyana 4443.0726 2007
## 5348 GY Guyana 4145.7848 2006
## 5349 GY Guyana 3944.4447 2005
## 5350 GY Guyana 4025.1907 2004
## 5351 GY Guyana 3966.3961 2003
## 5352 GY Guyana 3993.5241 2002
## 5353 GY Guyana 3946.5893 2001
## 5354 GY Guyana 3850.8178 2000
## 5355 GY Guyana 3888.6573 1999
## 5356 GY Guyana 3756.3032 1998
## 5357 GY Guyana 3799.2983 1997
## 5358 GY Guyana 3564.8541 1996
## 5359 GY Guyana 3299.9951 1995
## 5360 GY Guyana 3151.8561 1994
## 5361 GY Guyana 2922.3793 1993
## 5362 GY Guyana 2721.5374 1992
## 5363 GY Guyana 2539.5775 1991
## 5364 GY Guyana 2398.2929 1990
## 5365 GY Guyana 2466.6388 1989
## 5366 GY Guyana 2576.6991 1988
## 5367 GY Guyana 2651.4656 1987
## 5368 GY Guyana 2603.7818 1986
## 5369 GY Guyana 2607.0100 1985
## 5370 GY Guyana 2530.2248 1984
## 5371 GY Guyana 2651.4225 1983
## 5372 GY Guyana 2836.2815 1982
## 5373 GY Guyana 3265.2070 1981
## 5374 GY Guyana 3223.5937 1980
## 5375 GY Guyana 3184.5561 1979
## 5376 GY Guyana 3269.9261 1978
## 5377 GY Guyana 3363.7226 1977
## 5378 GY Guyana 3493.0175 1976
## 5379 GY Guyana 3478.2162 1975
## 5380 GY Guyana 3240.9984 1974
## 5381 GY Guyana 3041.9262 1973
## 5382 GY Guyana 3037.6553 1972
## 5383 GY Guyana 3178.2785 1971
## 5384 GY Guyana 3120.6073 1970
## 5385 GY Guyana 3032.7560 1969
## 5386 GY Guyana 2874.1541 1968
## 5387 GY Guyana 2888.2835 1967
## 5388 GY Guyana 2816.1088 1966
## 5389 GY Guyana 2728.0067 1965
## 5390 GY Guyana 2522.1522 1964
## 5391 GY Guyana 2320.3535 1963
## 5392 GY Guyana 2716.2297 1962
## 5393 GY Guyana 2764.1044 1961
## 5394 GY Guyana 2720.9119 1960
## 5395 HK Hong Kong SAR, China 44535.9366 2021
## 5396 HK Hong Kong SAR, China 41469.9755 2020
## 5397 HK Hong Kong SAR, China 44192.3785 2019
## 5398 HK Hong Kong SAR, China 45280.2188 2018
## 5399 HK Hong Kong SAR, China 44380.5349 2017
## 5400 HK Hong Kong SAR, China 43087.2864 2016
## 5401 HK Hong Kong SAR, China 42431.8883 2015
## 5402 HK Hong Kong SAR, China 41796.5937 2014
## 5403 HK Hong Kong SAR, China 40959.7332 2013
## 5404 HK Hong Kong SAR, China 39887.5981 2012
## 5405 HK Hong Kong SAR, China 39656.1118 2011
## 5406 HK Hong Kong SAR, China 38089.8121 2010
## 5407 HK Hong Kong SAR, China 35938.4005 2009
## 5408 HK Hong Kong SAR, China 36923.8965 2008
## 5409 HK Hong Kong SAR, China 36371.5093 2007
## 5410 HK Hong Kong SAR, China 34457.8930 2006
## 5411 HK Hong Kong SAR, China 32401.2548 2005
## 5412 HK Hong Kong SAR, China 30304.1988 2004
## 5413 HK Hong Kong SAR, China 28097.0180 2003
## 5414 HK Hong Kong SAR, China 27209.9796 2002
## 5415 HK Hong Kong SAR, China 26885.3714 2001
## 5416 HK Hong Kong SAR, China 26933.1716 2000
## 5417 HK Hong Kong SAR, China 25237.5922 1999
## 5418 HK Hong Kong SAR, China 24856.6830 1998
## 5419 HK Hong Kong SAR, China 26631.7066 1997
## 5420 HK Hong Kong SAR, China 25551.2790 1996
## 5421 HK Hong Kong SAR, China 25619.9043 1995
## 5422 HK Hong Kong SAR, China 25526.3195 1994
## 5423 HK Hong Kong SAR, China 24621.5434 1993
## 5424 HK Hong Kong SAR, China 23585.5727 1992
## 5425 HK Hong Kong SAR, China 22388.5615 1991
## 5426 HK Hong Kong SAR, China 21357.2122 1990
## 5427 HK Hong Kong SAR, China 20635.4756 1989
## 5428 HK Hong Kong SAR, China 20386.1437 1988
## 5429 HK Hong Kong SAR, China 18945.6258 1987
## 5430 HK Hong Kong SAR, China 16876.1787 1986
## 5431 HK Hong Kong SAR, China 15386.5902 1985
## 5432 HK Hong Kong SAR, China 15435.9039 1984
## 5433 HK Hong Kong SAR, China 14174.6314 1983
## 5434 HK Hong Kong SAR, China 13579.9713 1982
## 5435 HK Hong Kong SAR, China 13397.2455 1981
## 5436 HK Hong Kong SAR, China 12553.0511 1980
## 5437 HK Hong Kong SAR, China 11709.1556 1979
## 5438 HK Hong Kong SAR, China 11085.7650 1978
## 5439 HK Hong Kong SAR, China 10427.0693 1977
## 5440 HK Hong Kong SAR, China 9468.4483 1976
## 5441 HK Hong Kong SAR, China 8253.9466 1975
## 5442 HK Hong Kong SAR, China 8370.7568 1974
## 5443 HK Hong Kong SAR, China 8435.7970 1973
## 5444 HK Hong Kong SAR, China 7728.2022 1972
## 5445 HK Hong Kong SAR, China 7122.0169 1971
## 5446 HK Hong Kong SAR, China 6782.6150 1970
## 5447 HK Hong Kong SAR, China 6363.6737 1969
## 5448 HK Hong Kong SAR, China 5807.3260 1968
## 5449 HK Hong Kong SAR, China 5737.0397 1967
## 5450 HK Hong Kong SAR, China 5791.0116 1966
## 5451 HK Hong Kong SAR, China 5739.4994 1965
## 5452 HK Hong Kong SAR, China 5139.7280 1964
## 5453 HK Hong Kong SAR, China 4847.2623 1963
## 5454 HK Hong Kong SAR, China 4333.7943 1962
## 5455 HK Hong Kong SAR, China 3955.9929 1961
## 5456 HK Hong Kong SAR, China NA 1960
## 5457 HN Honduras 2479.9897 2021
## 5458 HN Honduras 2239.0081 2020
## 5459 HN Honduras 2499.4928 2019
## 5460 HN Honduras 2475.1703 2018
## 5461 HN Honduras 2423.5923 2017
## 5462 HN Honduras 2351.0936 2016
## 5463 HN Honduras 2302.2044 2015
## 5464 HN Honduras 2256.0151 2014
## 5465 HN Honduras 2228.1467 2013
## 5466 HN Honduras 2207.2302 2012
## 5467 HN Honduras 2159.7108 2011
## 5468 HN Honduras 2120.7429 2010
## 5469 HN Honduras 2086.2713 2009
## 5470 HN Honduras 2183.7657 2008
## 5471 HN Honduras 2141.3752 2007
## 5472 HN Honduras 2062.6036 2006
## 5473 HN Honduras 1980.9861 2005
## 5474 HN Honduras 1913.1118 2004
## 5475 HN Honduras 1845.6371 2003
## 5476 HN Honduras 1810.4737 2002
## 5477 HN Honduras 1790.7975 2001
## 5478 HN Honduras 1790.3641 2000
## 5479 HN Honduras 1714.9617 1999
## 5480 HN Honduras 1776.7582 1998
## 5481 HN Honduras 1764.7423 1997
## 5482 HN Honduras 1736.2423 1996
## 5483 HN Honduras 1753.8564 1995
## 5484 HN Honduras 1699.2675 1994
## 5485 HN Honduras 1744.2564 1993
## 5486 HN Honduras 1684.6274 1992
## 5487 HN Honduras 1633.6706 1991
## 5488 HN Honduras 1738.6216 1990
## 5489 HN Honduras 1740.7967 1989
## 5490 HN Honduras 1744.4528 1988
## 5491 HN Honduras 1765.4006 1987
## 5492 HN Honduras 1705.0324 1986
## 5493 HN Honduras 1667.5557 1985
## 5494 HN Honduras 1626.7242 1984
## 5495 HN Honduras 1576.8025 1983
## 5496 HN Honduras 1610.8764 1982
## 5497 HN Honduras 1696.0603 1981
## 5498 HN Honduras 1770.5616 1980
## 5499 HN Honduras 1815.0898 1979
## 5500 HN Honduras 1772.6272 1978
## 5501 HN Honduras 1725.3488 1977
## 5502 HN Honduras 1611.9284 1976
## 5503 HN Honduras 1504.0366 1975
## 5504 HN Honduras 1517.9120 1974
## 5505 HN Honduras 1583.5014 1973
## 5506 HN Honduras 1512.2236 1972
## 5507 HN Honduras 1472.7443 1971
## 5508 HN Honduras 1458.6395 1970
## 5509 HN Honduras 1449.8240 1969
## 5510 HN Honduras 1483.5779 1968
## 5511 HN Honduras 1433.3394 1967
## 5512 HN Honduras 1392.6028 1966
## 5513 HN Honduras 1360.3403 1965
## 5514 HN Honduras 1283.6859 1964
## 5515 HN Honduras 1252.5167 1963
## 5516 HN Honduras 1243.4754 1962
## 5517 HN Honduras 1208.9215 1961
## 5518 HN Honduras 1220.5311 1960
## 5519 HR Croatia 12441.5025 2016
## 5520 HR Croatia 14068.0445 2019
## 5521 HR Croatia 13519.5588 2018
## 5522 HR Croatia 13021.6717 2017
## 5523 HR Croatia 14888.3306 2021
## 5524 HR Croatia 12984.6959 2020
## 5525 HR Croatia NA 1994
## 5526 HR Croatia NA 1993
## 5527 HR Croatia NA 1992
## 5528 HR Croatia NA 1991
## 5529 HR Croatia NA 1990
## 5530 HR Croatia NA 1989
## 5531 HR Croatia NA 1988
## 5532 HR Croatia NA 1987
## 5533 HR Croatia NA 1986
## 5534 HR Croatia NA 1985
## 5535 HR Croatia NA 1984
## 5536 HR Croatia NA 1983
## 5537 HR Croatia NA 1982
## 5538 HR Croatia NA 1981
## 5539 HR Croatia NA 1980
## 5540 HR Croatia NA 1979
## 5541 HR Croatia NA 1978
## 5542 HR Croatia NA 1977
## 5543 HR Croatia NA 1976
## 5544 HR Croatia 11933.3774 2015
## 5545 HR Croatia 11543.8763 2014
## 5546 HR Croatia 11536.8602 2013
## 5547 HR Croatia 11546.7017 2012
## 5548 HR Croatia 11779.5300 2011
## 5549 HR Croatia 11748.9448 2010
## 5550 HR Croatia 11870.7940 2009
## 5551 HR Croatia 12789.6358 2008
## 5552 HR Croatia 12550.2339 2007
## 5553 HR Croatia 11959.9232 2006
## 5554 HR Croatia 11399.7753 2005
## 5555 HR Croatia 10942.5724 2004
## 5556 HR Croatia 10509.5497 2003
## 5557 HR Croatia 9962.0449 2002
## 5558 HR Croatia 9428.4107 2001
## 5559 HR Croatia 8805.5004 2000
## 5560 HR Croatia 8473.7105 1999
## 5561 HR Croatia 8511.7819 1998
## 5562 HR Croatia 8322.9639 1997
## 5563 HR Croatia 7803.9220 1996
## 5564 HR Croatia 7263.5709 1995
## 5565 HR Croatia NA 1968
## 5566 HR Croatia NA 1967
## 5567 HR Croatia NA 1966
## 5568 HR Croatia NA 1965
## 5569 HR Croatia NA 1964
## 5570 HR Croatia NA 1963
## 5571 HR Croatia NA 1975
## 5572 HR Croatia NA 1974
## 5573 HR Croatia NA 1973
## 5574 HR Croatia NA 1972
## 5575 HR Croatia NA 1971
## 5576 HR Croatia NA 1970
## 5577 HR Croatia NA 1969
## 5578 HR Croatia NA 1960
## 5579 HR Croatia NA 1962
## 5580 HR Croatia NA 1961
## 5581 HT Haiti 1272.5905 2021
## 5582 HT Haiti 1311.7081 2020
## 5583 HT Haiti 1373.8831 2019
## 5584 HT Haiti 1414.9994 2018
## 5585 HT Haiti 1409.6325 2017
## 5586 HT Haiti 1393.1766 2016
## 5587 HT Haiti 1386.8542 2015
## 5588 HT Haiti 1370.9869 2014
## 5589 HT Haiti 1366.9926 2013
## 5590 HT Haiti 1329.4658 2012
## 5591 HT Haiti 1342.5436 2011
## 5592 HT Haiti 1296.8057 2010
## 5593 HT Haiti 1395.7055 2009
## 5594 HT Haiti 1338.7634 2008
## 5595 HT Haiti 1324.8707 2007
## 5596 HT Haiti 1285.7034 2006
## 5597 HT Haiti 1283.8971 2005
## 5598 HT Haiti 1266.0348 2004
## 5599 HT Haiti 1304.1283 2003
## 5600 HT Haiti 1281.2741 2002
## 5601 HT Haiti 1289.3436 2001
## 5602 HT Haiti 1315.9439 2000
## 5603 HT Haiti 1327.2900 1999
## 5604 HT Haiti 1315.0918 1998
## 5605 HT Haiti 1310.0822 1997
## 5606 HT Haiti 1298.7743 1996
## 5607 HT Haiti 1270.1296 1995
## 5608 HT Haiti 1177.3545 1994
## 5609 HT Haiti 1362.5373 1993
## 5610 HT Haiti 1468.5061 1992
## 5611 HT Haiti 1581.2910 1991
## 5612 HT Haiti 1583.1313 1990
## 5613 HT Haiti 1598.7035 1989
## 5614 HT Haiti 1680.6762 1988
## 5615 HT Haiti 1712.6613 1987
## 5616 HT Haiti 1763.7235 1986
## 5617 HT Haiti 1812.0531 1985
## 5618 HT Haiti 1842.6401 1984
## 5619 HT Haiti 1880.5439 1983
## 5620 HT Haiti 1908.2034 1982
## 5621 HT Haiti 2025.6249 1981
## 5622 HT Haiti 2133.2119 1980
## 5623 HT Haiti 2030.9620 1979
## 5624 HT Haiti 1928.7954 1978
## 5625 HT Haiti 1853.5621 1977
## 5626 HT Haiti 1822.7418 1976
## 5627 HT Haiti 1712.9200 1975
## 5628 HT Haiti 1724.6611 1974
## 5629 HT Haiti 1658.6277 1973
## 5630 HT Haiti 1609.9428 1972
## 5631 HT Haiti 1621.2294 1971
## 5632 HT Haiti 1548.9147 1970
## 5633 HT Haiti 1566.5557 1969
## 5634 HT Haiti 1537.0910 1968
## 5635 HT Haiti 1518.1375 1967
## 5636 HT Haiti 1580.9898 1966
## 5637 HT Haiti 1620.9839 1965
## 5638 HT Haiti 1617.4863 1964
## 5639 HT Haiti 1676.6355 1963
## 5640 HT Haiti 1742.3975 1962
## 5641 HT Haiti 1646.6471 1961
## 5642 HT Haiti 1729.6414 1960
## 5643 HU Hungary 15486.6340 2021
## 5644 HU Hungary 14400.7192 2020
## 5645 HU Hungary 15041.0986 2019
## 5646 HU Hungary 14379.4442 2018
## 5647 HU Hungary 13630.6882 2017
## 5648 HU Hungary 13037.9647 2016
## 5649 HU Hungary 12720.7120 2015
## 5650 HU Hungary 12237.3117 2014
## 5651 HU Hungary 11709.8014 2013
## 5652 HU Hungary 11470.4034 2012
## 5653 HU Hungary 11556.6726 2011
## 5654 HU Hungary 11313.5229 2010
## 5655 HU Hungary 11167.0294 2009
## 5656 HU Hungary 11937.0491 2008
## 5657 HU Hungary 11797.4290 2007
## 5658 HU Hungary 11746.6312 2006
## 5659 HU Hungary 11282.9299 2005
## 5660 HU Hungary 10796.7619 2004
## 5661 HU Hungary 10259.8419 2003
## 5662 HU Hungary 9829.0275 2002
## 5663 HU Hungary 9357.4174 2001
## 5664 HU Hungary 8970.5112 2000
## 5665 HU Hungary 8563.6565 1999
## 5666 HU Hungary 8284.9988 1998
## 5667 HU Hungary 7955.4799 1997
## 5668 HU Hungary 7697.5259 1996
## 5669 HU Hungary 7677.9877 1995
## 5670 HU Hungary 7554.7755 1994
## 5671 HU Hungary 7328.4603 1993
## 5672 HU Hungary 7362.5242 1992
## 5673 HU Hungary 7592.2846 1991
## 5674 HU Hungary NA 1990
## 5675 HU Hungary NA 1989
## 5676 HU Hungary NA 1988
## 5677 HU Hungary NA 1987
## 5678 HU Hungary NA 1986
## 5679 HU Hungary NA 1985
## 5680 HU Hungary NA 1984
## 5681 HU Hungary NA 1983
## 5682 HU Hungary NA 1982
## 5683 HU Hungary NA 1981
## 5684 HU Hungary NA 1980
## 5685 HU Hungary NA 1979
## 5686 HU Hungary NA 1978
## 5687 HU Hungary NA 1977
## 5688 HU Hungary NA 1976
## 5689 HU Hungary NA 1975
## 5690 HU Hungary NA 1974
## 5691 HU Hungary NA 1973
## 5692 HU Hungary NA 1972
## 5693 HU Hungary NA 1971
## 5694 HU Hungary NA 1970
## 5695 HU Hungary NA 1969
## 5696 HU Hungary NA 1968
## 5697 HU Hungary NA 1967
## 5698 HU Hungary NA 1966
## 5699 HU Hungary NA 1965
## 5700 HU Hungary NA 1964
## 5701 HU Hungary NA 1963
## 5702 HU Hungary NA 1962
## 5703 HU Hungary NA 1961
## 5704 HU Hungary NA 1960
## 5705 ID Indonesia 3855.7971 2021
## 5706 ID Indonesia 3757.1216 2020
## 5707 ID Indonesia 3877.4246 2019
## 5708 ID Indonesia 3732.8671 2018
## 5709 ID Indonesia 3589.7155 2017
## 5710 ID Indonesia 3456.9281 2016
## 5711 ID Indonesia 3331.6951 2015
## 5712 ID Indonesia 3217.3175 2014
## 5713 ID Indonesia 3104.3480 2013
## 5714 ID Indonesia 2980.6101 2012
## 5715 ID Indonesia 2849.3550 2011
## 5716 ID Indonesia 2720.1916 2010
## 5717 ID Indonesia 2595.2988 2009
## 5718 ID Indonesia 2513.6716 2008
## 5719 ID Indonesia 2402.6675 2007
## 5720 ID Indonesia 2289.4220 2006
## 5721 ID Indonesia 2199.0939 2005
## 5722 ID Indonesia 2108.6418 2004
## 5723 ID Indonesia 2034.7615 2003
## 5724 ID Indonesia 1968.3011 2002
## 5725 ID Indonesia 1909.2919 2001
## 5726 ID Indonesia 1867.5488 2000
## 5727 ID Indonesia 1804.7052 1999
## 5728 ID Indonesia 1815.6981 1998
## 5729 ID Indonesia 2119.9181 1997
## 5730 ID Indonesia 2054.3858 1996
## 5731 ID Indonesia 1934.1234 1995
## 5732 ID Indonesia 1815.0182 1994
## 5733 ID Indonesia 1714.8776 1993
## 5734 ID Indonesia 1636.9549 1992
## 5735 ID Indonesia 1563.2950 1991
## 5736 ID Indonesia 1489.7429 1990
## 5737 ID Indonesia 1414.3514 1989
## 5738 ID Indonesia 1336.4202 1988
## 5739 ID Indonesia 1289.3365 1987
## 5740 ID Indonesia 1252.2138 1986
## 5741 ID Indonesia 1208.2510 1985
## 5742 ID Indonesia 1204.4597 1984
## 5743 ID Indonesia 1152.3984 1983
## 5744 ID Indonesia 1129.1815 1982
## 5745 ID Indonesia 1130.1923 1981
## 5746 ID Indonesia 1072.4502 1980
## 5747 ID Indonesia 998.2301 1979
## 5748 ID Indonesia 954.1291 1978
## 5749 ID Indonesia 914.5380 1977
## 5750 ID Indonesia 865.6041 1976
## 5751 ID Indonesia 828.7021 1975
## 5752 ID Indonesia 804.7672 1974
## 5753 ID Indonesia 769.9479 1973
## 5754 ID Indonesia 730.9584 1972
## 5755 ID Indonesia 701.0726 1971
## 5756 ID Indonesia 672.6767 1970
## 5757 ID Indonesia 642.4104 1969
## 5758 ID Indonesia 617.8495 1968
## 5759 ID Indonesia 572.3816 1967
## 5760 ID Indonesia 580.1523 1966
## 5761 ID Indonesia 579.9246 1965
## 5762 ID Indonesia 589.4169 1964
## 5763 ID Indonesia 584.7892 1963
## 5764 ID Indonesia 614.3141 1962
## 5765 ID Indonesia 619.4049 1961
## 5766 ID Indonesia 601.4469 1960
## 5767 IE Ireland 88588.4841 2021
## 5768 IE Ireland 78732.5533 2020
## 5769 IE Ireland 75143.0185 2019
## 5770 IE Ireland 72607.6319 2018
## 5771 IE Ireland 67424.2286 2017
## 5772 IE Ireland 62568.6266 2016
## 5773 IE Ireland 62012.4849 2015
## 5774 IE Ireland 50010.4342 2014
## 5775 IE Ireland 46339.4693 2013
## 5776 IE Ireland 46001.2733 2012
## 5777 IE Ireland 46220.8132 2011
## 5778 IE Ireland 45932.0137 2010
## 5779 IE Ireland 45386.4052 2009
## 5780 IE Ireland 48313.9671 2008
## 5781 IE Ireland 51625.2761 2007
## 5782 IE Ireland 50462.2653 2006
## 5783 IE Ireland 49381.7756 2005
## 5784 IE Ireland 47731.4846 2004
## 5785 IE Ireland 45523.0558 2003
## 5786 IE Ireland 44918.8073 2002
## 5787 IE Ireland 43138.6171 2001
## 5788 IE Ireland 41623.0575 2000
## 5789 IE Ireland 38557.4495 1999
## 5790 IE Ireland 35282.0031 1998
## 5791 IE Ireland 32781.2302 1997
## 5792 IE Ireland 29826.2922 1996
## 5793 IE Ireland 27998.8192 1995
## 5794 IE Ireland 25669.6172 1994
## 5795 IE Ireland 24368.4003 1993
## 5796 IE Ireland 23848.3651 1992
## 5797 IE Ireland 23234.8246 1991
## 5798 IE Ireland 22926.3960 1990
## 5799 IE Ireland 21154.6893 1989
## 5800 IE Ireland 19913.2872 1988
## 5801 IE Ireland 18845.0770 1987
## 5802 IE Ireland 18007.3326 1986
## 5803 IE Ireland 18093.0145 1985
## 5804 IE Ireland 17579.5623 1984
## 5805 IE Ireland 16950.7439 1983
## 5806 IE Ireland 17113.1487 1982
## 5807 IE Ireland 16890.0280 1981
## 5808 IE Ireland 16539.0205 1980
## 5809 IE Ireland 16230.6587 1979
## 5810 IE Ireland 15957.9512 1978
## 5811 IE Ireland 15100.7290 1977
## 5812 IE Ireland 14145.1249 1976
## 5813 IE Ireland 14162.6723 1975
## 5814 IE Ireland 13626.8060 1974
## 5815 IE Ireland 13288.3252 1973
## 5816 IE Ireland 12894.3731 1972
## 5817 IE Ireland 12289.8526 1971
## 5818 IE Ireland 12017.4828 1970
## 5819 IE Ireland NA 1969
## 5820 IE Ireland NA 1968
## 5821 IE Ireland NA 1967
## 5822 IE Ireland NA 1966
## 5823 IE Ireland NA 1965
## 5824 IE Ireland NA 1964
## 5825 IE Ireland NA 1963
## 5826 IE Ireland NA 1962
## 5827 IE Ireland NA 1961
## 5828 IE Ireland NA 1960
## 5829 IL Israel 39913.0985 2021
## 5830 IL Israel 37488.4550 2020
## 5831 IL Israel 38995.2305 2019
## 5832 IL Israel 38301.4537 2018
## 5833 IL Israel 37550.7277 2017
## 5834 IL Israel 36680.3221 2016
## 5835 IL Israel 35808.4364 2015
## 5836 IL Israel 35710.8863 2014
## 5837 IL Israel 34960.9434 2013
## 5838 IL Israel 33995.4277 2012
## 5839 IL Israel 33678.1315 2011
## 5840 IL Israel 32504.7134 2010
## 5841 IL Israel 31323.3120 2009
## 5842 IL Israel 31718.4891 2008
## 5843 IL Israel 31207.6020 2007
## 5844 IL Israel 29939.9372 2006
## 5845 IL Israel 28809.6425 2005
## 5846 IL Israel 28151.2719 2004
## 5847 IL Israel 27310.9659 2003
## 5848 IL Israel 27492.5620 2002
## 5849 IL Israel 28106.9451 2001
## 5850 IL Israel 28747.9291 2000
## 5851 IL Israel 27107.2211 1999
## 5852 IL Israel 26847.7314 1998
## 5853 IL Israel 26362.1535 1997
## 5854 IL Israel 26008.2786 1996
## 5855 IL Israel 25179.9699 1995
## 5856 IL Israel NA 1994
## 5857 IL Israel NA 1993
## 5858 IL Israel NA 1992
## 5859 IL Israel NA 1991
## 5860 IL Israel NA 1990
## 5861 IL Israel NA 1989
## 5862 IL Israel NA 1988
## 5863 IL Israel NA 1987
## 5864 IL Israel NA 1986
## 5865 IL Israel NA 1985
## 5866 IL Israel NA 1984
## 5867 IL Israel NA 1983
## 5868 IL Israel NA 1982
## 5869 IL Israel NA 1981
## 5870 IL Israel NA 1980
## 5871 IL Israel NA 1979
## 5872 IL Israel NA 1978
## 5873 IL Israel NA 1977
## 5874 IL Israel NA 1976
## 5875 IL Israel NA 1975
## 5876 IL Israel NA 1974
## 5877 IL Israel NA 1973
## 5878 IL Israel NA 1972
## 5879 IL Israel NA 1971
## 5880 IL Israel NA 1970
## 5881 IL Israel NA 1969
## 5882 IL Israel NA 1968
## 5883 IL Israel NA 1967
## 5884 IL Israel NA 1966
## 5885 IL Israel NA 1965
## 5886 IL Israel NA 1964
## 5887 IL Israel NA 1963
## 5888 IL Israel NA 1962
## 5889 IL Israel NA 1961
## 5890 IL Israel NA 1960
## 5891 IM Isle of Man NA 2021
## 5892 IM Isle of Man NA 2020
## 5893 IM Isle of Man 96105.3032 2019
## 5894 IM Isle of Man 96449.3396 2018
## 5895 IM Isle of Man 94883.2885 2017
## 5896 IM Isle of Man 90975.3085 2016
## 5897 IM Isle of Man 85126.9705 2015
## 5898 IM Isle of Man 85194.6244 2014
## 5899 IM Isle of Man 80538.4642 2013
## 5900 IM Isle of Man 76833.1981 2012
## 5901 IM Isle of Man 71304.0148 2011
## 5902 IM Isle of Man 69933.0832 2010
## 5903 IM Isle of Man 68015.8807 2009
## 5904 IM Isle of Man 67306.1069 2008
## 5905 IM Isle of Man 65025.6392 2007
## 5906 IM Isle of Man 61324.6777 2006
## 5907 IM Isle of Man 57642.3418 2005
## 5908 IM Isle of Man 54963.4873 2004
## 5909 IM Isle of Man 52668.5910 2003
## 5910 IM Isle of Man 50042.6314 2002
## 5911 IM Isle of Man 47491.6299 2001
## 5912 IM Isle of Man 45506.4691 2000
## 5913 IM Isle of Man 43753.9735 1999
## 5914 IM Isle of Man 39026.2905 1998
## 5915 IM Isle of Man 34889.5618 1997
## 5916 IM Isle of Man 32552.9157 1996
## 5917 IM Isle of Man 30540.2347 1995
## 5918 IM Isle of Man 29473.5969 1994
## 5919 IM Isle of Man 28431.6451 1993
## 5920 IM Isle of Man 27776.8741 1992
## 5921 IM Isle of Man 27686.1852 1991
## 5922 IM Isle of Man 27495.3900 1990
## 5923 IM Isle of Man 26782.4960 1989
## 5924 IM Isle of Man 25559.6465 1988
## 5925 IM Isle of Man 23354.8226 1987
## 5926 IM Isle of Man 21667.5896 1986
## 5927 IM Isle of Man 18453.1555 1985
## 5928 IM Isle of Man 18510.0812 1984
## 5929 IM Isle of Man NA 1983
## 5930 IM Isle of Man NA 1982
## 5931 IM Isle of Man NA 1981
## 5932 IM Isle of Man NA 1980
## 5933 IM Isle of Man NA 1979
## 5934 IM Isle of Man NA 1978
## 5935 IM Isle of Man NA 1977
## 5936 IM Isle of Man NA 1976
## 5937 IM Isle of Man NA 1975
## 5938 IM Isle of Man NA 1974
## 5939 IM Isle of Man NA 1973
## 5940 IM Isle of Man NA 1972
## 5941 IM Isle of Man NA 1971
## 5942 IM Isle of Man NA 1970
## 5943 IM Isle of Man NA 1969
## 5944 IM Isle of Man NA 1968
## 5945 IM Isle of Man NA 1967
## 5946 IM Isle of Man NA 1966
## 5947 IM Isle of Man NA 1965
## 5948 IM Isle of Man NA 1964
## 5949 IM Isle of Man NA 1963
## 5950 IM Isle of Man NA 1962
## 5951 IM Isle of Man NA 1961
## 5952 IM Isle of Man NA 1960
## 5953 IN India 1961.4210 2021
## 5954 IN India 1817.8158 2020
## 5955 IN India 1965.5393 2019
## 5956 IN India 1914.0124 2018
## 5957 IN India 1816.7309 2017
## 5958 IN India 1719.3181 2016
## 5959 IN India 1605.6054 2015
## 5960 IN India 1503.4215 2014
## 5961 IN India 1415.8287 2013
## 5962 IN India 1346.6759 2012
## 5963 IN India 1292.8212 2011
## 5964 IN India 1244.3660 2010
## 5965 IN India 1162.4988 2009
## 5966 IN India 1093.0766 2008
## 5967 IN India 1075.9941 2007
## 5968 IN India 1014.6276 2006
## 5969 IN India 953.5680 2005
## 5970 IN India 897.6282 2004
## 5971 IN India 845.2748 2003
## 5972 IN India 796.7248 2002
## 5973 IN India 780.6062 2001
## 5974 IN India 757.6687 2000
## 5975 IN India 742.6590 1999
## 5976 IN India 694.7353 1998
## 5977 IN India 666.4202 1997
## 5978 IN India 652.5661 1996
## 5979 IN India 618.3678 1995
## 5980 IN India 585.9646 1994
## 5981 IN India 560.1619 1993
## 5982 IN India 545.3995 1992
## 5983 IN India 527.5145 1991
## 5984 IN India 532.7546 1990
## 5985 IN India 515.4106 1989
## 5986 IN India 496.8561 1988
## 5987 IN India 463.0558 1987
## 5988 IN India 455.2282 1986
## 5989 IN India 444.2327 1985
## 5990 IN India 431.7030 1984
## 5991 IN India 425.4725 1983
## 5992 IN India 405.8766 1982
## 5993 IN India 401.4846 1981
## 5994 IN India 387.6409 1980
## 5995 IN India 371.6631 1979
## 5996 IN India 401.3125 1978
## 5997 IN India 388.4075 1977
## 5998 IN India 370.5288 1976
## 5999 IN India 372.9646 1975
## 6000 IN India 349.7257 1974
## 6001 IN India 353.7833 1973
## 6002 IN India 350.5610 1972
## 6003 IN India 360.7175 1971
## 6004 IN India 362.9911 1970
## 6005 IN India 352.8832 1969
## 6006 IN India 338.4326 1968
## 6007 IN India 334.3330 1967
## 6008 IN India 316.6193 1966
## 6009 IN India 323.4641 1965
## 6010 IN India 339.2037 1964
## 6011 IN India 322.2841 1963
## 6012 IN India 310.3767 1962
## 6013 IN India 307.7279 1961
## 6014 IN India 302.6718 1960
## 6015 IQ Iraq 4465.7562 2021
## 6016 IQ Iraq 4448.1837 2020
## 6017 IQ Iraq 5132.7011 2019
## 6018 IQ Iraq 4975.3810 2018
## 6019 IQ Iraq 4961.4045 2017
## 6020 IQ Iraq 5183.4090 2016
## 6021 IQ Iraq 4688.3180 2015
## 6022 IQ Iraq 4627.8348 2014
## 6023 IQ Iraq 4793.5394 2013
## 6024 IQ Iraq 4630.7365 2012
## 6025 IQ Iraq 4218.3824 2011
## 6026 IQ Iraq 4052.0626 2010
## 6027 IQ Iraq 3909.2916 2009
## 6028 IQ Iraq 3859.7582 2008
## 6029 IQ Iraq 3626.9459 2007
## 6030 IQ Iraq 3619.8859 2006
## 6031 IQ Iraq 3493.3447 2005
## 6032 IQ Iraq 3515.3468 2004
## 6033 IQ Iraq 2351.7127 2003
## 6034 IQ Iraq 3818.8454 2002
## 6035 IQ Iraq 4284.2599 2001
## 6036 IQ Iraq 4337.4172 2000
## 6037 IQ Iraq 3822.8337 1999
## 6038 IQ Iraq 3352.3078 1998
## 6039 IQ Iraq 2564.0567 1997
## 6040 IQ Iraq 2181.7028 1996
## 6041 IQ Iraq 2026.9367 1995
## 6042 IQ Iraq 2046.8220 1994
## 6043 IQ Iraq 2031.6033 1993
## 6044 IQ Iraq 1606.0967 1992
## 6045 IQ Iraq 1246.0601 1991
## 6046 IQ Iraq 3559.3958 1990
## 6047 IQ Iraq 2311.6739 1989
## 6048 IQ Iraq 2441.0423 1988
## 6049 IQ Iraq 2494.8585 1987
## 6050 IQ Iraq 2332.2944 1986
## 6051 IQ Iraq 2279.4251 1985
## 6052 IQ Iraq 2300.8062 1984
## 6053 IQ Iraq 2394.5673 1983
## 6054 IQ Iraq 2827.8357 1982
## 6055 IQ Iraq 2809.5522 1981
## 6056 IQ Iraq 2911.1778 1980
## 6057 IQ Iraq 2402.9243 1979
## 6058 IQ Iraq 2049.6262 1978
## 6059 IQ Iraq 1806.9721 1977
## 6060 IQ Iraq 1831.0814 1976
## 6061 IQ Iraq 1614.0569 1975
## 6062 IQ Iraq 1482.0868 1974
## 6063 IQ Iraq 1318.5113 1973
## 6064 IQ Iraq 1304.5560 1972
## 6065 IQ Iraq 1299.7395 1971
## 6066 IQ Iraq 1275.4670 1970
## 6067 IQ Iraq 1262.3307 1969
## 6068 IQ Iraq 1265.5606 1968
## 6069 IQ Iraq NA 1967
## 6070 IQ Iraq NA 1966
## 6071 IQ Iraq NA 1965
## 6072 IQ Iraq NA 1964
## 6073 IQ Iraq NA 1963
## 6074 IQ Iraq NA 1962
## 6075 IQ Iraq NA 1961
## 6076 IQ Iraq NA 1960
## 6077 IR Iran, Islamic Rep. NA 2021
## 6078 IR Iran, Islamic Rep. 5333.0468 2020
## 6079 IR Iran, Islamic Rep. 5308.9199 2019
## 6080 IR Iran, Islamic Rep. 5454.2978 2018
## 6081 IR Iran, Islamic Rep. 5657.9701 2017
## 6082 IR Iran, Islamic Rep. 5582.8929 2016
## 6083 IR Iran, Islamic Rep. 5200.6808 2015
## 6084 IR Iran, Islamic Rep. 5345.7619 2014
## 6085 IR Iran, Islamic Rep. 5157.4390 2013
## 6086 IR Iran, Islamic Rep. 5302.4615 2012
## 6087 IR Iran, Islamic Rep. 5575.6823 2011
## 6088 IR Iran, Islamic Rep. 5496.2153 2010
## 6089 IR Iran, Islamic Rep. 5254.6868 2009
## 6090 IR Iran, Islamic Rep. 5260.2910 2008
## 6091 IR Iran, Islamic Rep. 5304.8047 2007
## 6092 IR Iran, Islamic Rep. 4959.1250 2006
## 6093 IR Iran, Islamic Rep. 4776.6324 2005
## 6094 IR Iran, Islamic Rep. 4683.4273 2004
## 6095 IR Iran, Islamic Rep. 4543.3451 2003
## 6096 IR Iran, Islamic Rep. 4234.1401 2002
## 6097 IR Iran, Islamic Rep. 3966.9104 2001
## 6098 IR Iran, Islamic Rep. 3922.9801 2000
## 6099 IR Iran, Islamic Rep. 3753.3704 1999
## 6100 IR Iran, Islamic Rep. 3727.3642 1998
## 6101 IR Iran, Islamic Rep. 3699.7361 1997
## 6102 IR Iran, Islamic Rep. 3699.7454 1996
## 6103 IR Iran, Islamic Rep. 3527.0761 1995
## 6104 IR Iran, Islamic Rep. 3492.8114 1994
## 6105 IR Iran, Islamic Rep. 3604.7255 1993
## 6106 IR Iran, Islamic Rep. 3717.2602 1992
## 6107 IR Iran, Islamic Rep. 3667.2927 1991
## 6108 IR Iran, Islamic Rep. 3329.3427 1990
## 6109 IR Iran, Islamic Rep. 3013.4466 1989
## 6110 IR Iran, Islamic Rep. 2932.6665 1988
## 6111 IR Iran, Islamic Rep. 3237.4683 1987
## 6112 IR Iran, Islamic Rep. 3370.3431 1986
## 6113 IR Iran, Islamic Rep. 3886.8462 1985
## 6114 IR Iran, Islamic Rep. 3972.8642 1984
## 6115 IR Iran, Islamic Rep. 4458.3349 1983
## 6116 IR Iran, Islamic Rep. 4182.8169 1982
## 6117 IR Iran, Islamic Rep. 3536.9540 1981
## 6118 IR Iran, Islamic Rep. 3900.9984 1980
## 6119 IR Iran, Islamic Rep. 5164.5636 1979
## 6120 IR Iran, Islamic Rep. 6078.5546 1978
## 6121 IR Iran, Islamic Rep. 7206.0896 1977
## 6122 IR Iran, Islamic Rep. 7646.5411 1976
## 6123 IR Iran, Islamic Rep. 6664.2317 1975
## 6124 IR Iran, Islamic Rep. 6884.4567 1974
## 6125 IR Iran, Islamic Rep. 6692.4212 1973
## 6126 IR Iran, Islamic Rep. 6400.8765 1972
## 6127 IR Iran, Islamic Rep. 5741.8658 1971
## 6128 IR Iran, Islamic Rep. 5185.9089 1970
## 6129 IR Iran, Islamic Rep. 4801.1459 1969
## 6130 IR Iran, Islamic Rep. 4268.8354 1968
## 6131 IR Iran, Islamic Rep. 3832.7082 1967
## 6132 IR Iran, Islamic Rep. 3538.2671 1966
## 6133 IR Iran, Islamic Rep. 3258.4008 1965
## 6134 IR Iran, Islamic Rep. 2858.2137 1964
## 6135 IR Iran, Islamic Rep. 2704.7339 1963
## 6136 IR Iran, Islamic Rep. 2593.4866 1962
## 6137 IR Iran, Islamic Rep. 2466.5733 1961
## 6138 IR Iran, Islamic Rep. 2292.8891 1960
## 6139 IS Iceland 54291.8701 2021
## 6140 IS Iceland 53188.0398 2020
## 6141 IS Iceland 57818.8595 2019
## 6142 IS Iceland 57699.4589 2018
## 6143 IS Iceland 56501.4577 2017
## 6144 IS Iceland 55513.6423 2016
## 6145 IS Iceland 52951.6815 2015
## 6146 IS Iceland 51233.2440 2014
## 6147 IS Iceland 50946.8163 2013
## 6148 IS Iceland 49191.5744 2012
## 6149 IS Iceland 48933.5457 2011
## 6150 IS Iceland 48193.7014 2010
## 6151 IS Iceland 49527.3988 2009
## 6152 IS Iceland 53821.4708 2008
## 6153 IS Iceland 53646.3690 2007
## 6154 IS Iceland 50731.6907 2006
## 6155 IS Iceland 48850.7659 2005
## 6156 IS Iceland 46766.0169 2004
## 6157 IS Iceland 43763.7756 2003
## 6158 IS Iceland 43143.4606 2002
## 6159 IS Iceland 43288.0763 2001
## 6160 IS Iceland 42174.6651 2000
## 6161 IS Iceland 40725.8860 1999
## 6162 IS Iceland 39622.6070 1998
## 6163 IS Iceland 37302.6717 1997
## 6164 IS Iceland 35557.3100 1996
## 6165 IS Iceland 34188.3821 1995
## 6166 IS Iceland NA 1994
## 6167 IS Iceland NA 1993
## 6168 IS Iceland NA 1992
## 6169 IS Iceland NA 1991
## 6170 IS Iceland NA 1990
## 6171 IS Iceland NA 1989
## 6172 IS Iceland NA 1988
## 6173 IS Iceland NA 1987
## 6174 IS Iceland NA 1986
## 6175 IS Iceland NA 1985
## 6176 IS Iceland NA 1984
## 6177 IS Iceland NA 1983
## 6178 IS Iceland NA 1982
## 6179 IS Iceland NA 1981
## 6180 IS Iceland NA 1980
## 6181 IS Iceland NA 1979
## 6182 IS Iceland NA 1978
## 6183 IS Iceland NA 1977
## 6184 IS Iceland NA 1976
## 6185 IS Iceland NA 1975
## 6186 IS Iceland NA 1974
## 6187 IS Iceland NA 1973
## 6188 IS Iceland NA 1972
## 6189 IS Iceland NA 1971
## 6190 IS Iceland NA 1970
## 6191 IS Iceland NA 1969
## 6192 IS Iceland NA 1968
## 6193 IS Iceland NA 1967
## 6194 IS Iceland NA 1966
## 6195 IS Iceland NA 1965
## 6196 IS Iceland NA 1964
## 6197 IS Iceland NA 1963
## 6198 IS Iceland NA 1962
## 6199 IS Iceland NA 1961
## 6200 IS Iceland NA 1960
## 6201 IT Italy 31511.7949 2021
## 6202 IT Italy 29358.1294 2020
## 6203 IT Italy 32119.7444 2019
## 6204 IT Italy 31593.4803 2018
## 6205 IT Italy 31244.2271 2017
## 6206 IT Italy 30685.6459 2016
## 6207 IT Italy 30242.3861 2015
## 6208 IT Italy 29979.9187 2014
## 6209 IT Italy 30257.6274 2013
## 6210 IT Italy 31184.5584 2012
## 6211 IT Italy 32229.4568 2011
## 6212 IT Italy 32058.1740 2010
## 6213 IT Italy 31615.2708 2009
## 6214 IT Italy 33530.3601 2008
## 6215 IT Italy 34081.0903 2007
## 6216 IT Italy 33751.7000 2006
## 6217 IT Italy 33257.7698 2005
## 6218 IT Italy 33150.4762 2004
## 6219 IT Italy 32897.3908 2003
## 6220 IT Italy 32998.2032 2002
## 6221 IT Italy 32963.6706 2001
## 6222 IT Italy 32350.9044 2000
## 6223 IT Italy 31184.6164 1999
## 6224 IT Italy 30690.9117 1998
## 6225 IT Italy 30153.7752 1997
## 6226 IT Italy 29627.4869 1996
## 6227 IT Italy 29265.0890 1995
## 6228 IT Italy 28444.4103 1994
## 6229 IT Italy 27851.1214 1993
## 6230 IT Italy 28107.8590 1992
## 6231 IT Italy 27894.2428 1991
## 6232 IT Italy 27490.6320 1990
## 6233 IT Italy 26977.9327 1989
## 6234 IT Italy 26113.3555 1988
## 6235 IT Italy 25074.2673 1987
## 6236 IT Italy 24301.1434 1986
## 6237 IT Italy 23626.7493 1985
## 6238 IT Italy 22990.2903 1984
## 6239 IT Italy 22276.8124 1983
## 6240 IT Italy 22027.3545 1982
## 6241 IT Italy 21952.8849 1981
## 6242 IT Italy 21795.2545 1980
## 6243 IT Italy 21115.9195 1979
## 6244 IT Italy 19986.0626 1978
## 6245 IT Italy 19427.9111 1977
## 6246 IT Italy 19023.5042 1976
## 6247 IT Italy 17846.9746 1975
## 6248 IT Italy 18337.1606 1974
## 6249 IT Italy 17495.2850 1973
## 6250 IT Italy 16442.6580 1972
## 6251 IT Italy 15947.7221 1971
## 6252 IT Italy 15736.1836 1970
## 6253 IT Italy 15027.8575 1969
## 6254 IT Italy 14244.5255 1968
## 6255 IT Italy 13454.2758 1967
## 6256 IT Italy 12644.3214 1966
## 6257 IT Italy 12023.4127 1965
## 6258 IT Italy 11741.3794 1964
## 6259 IT Italy 11516.1768 1963
## 6260 IT Italy 10984.3107 1962
## 6261 IT Italy 10412.9048 1961
## 6262 IT Italy 9687.6470 1960
## 6263 JG Channel Islands NA 2001
## 6264 JG Channel Islands NA 2002
## 6265 JG Channel Islands NA 1997
## 6266 JG Channel Islands NA 2000
## 6267 JG Channel Islands NA 1999
## 6268 JG Channel Islands NA 1998
## 6269 JG Channel Islands NA 1993
## 6270 JG Channel Islands NA 1992
## 6271 JG Channel Islands NA 1991
## 6272 JG Channel Islands NA 1990
## 6273 JG Channel Islands NA 1989
## 6274 JG Channel Islands NA 1988
## 6275 JG Channel Islands NA 1987
## 6276 JG Channel Islands NA 1986
## 6277 JG Channel Islands NA 1985
## 6278 JG Channel Islands NA 1984
## 6279 JG Channel Islands NA 1996
## 6280 JG Channel Islands NA 1995
## 6281 JG Channel Islands NA 1994
## 6282 JG Channel Islands NA 1980
## 6283 JG Channel Islands NA 1979
## 6284 JG Channel Islands NA 1978
## 6285 JG Channel Islands NA 1977
## 6286 JG Channel Islands NA 1976
## 6287 JG Channel Islands NA 1975
## 6288 JG Channel Islands NA 1974
## 6289 JG Channel Islands NA 1973
## 6290 JG Channel Islands NA 1972
## 6291 JG Channel Islands NA 1971
## 6292 JG Channel Islands NA 1970
## 6293 JG Channel Islands NA 1969
## 6294 JG Channel Islands NA 1968
## 6295 JG Channel Islands NA 1967
## 6296 JG Channel Islands NA 1966
## 6297 JG Channel Islands NA 1965
## 6298 JG Channel Islands NA 1964
## 6299 JG Channel Islands NA 1963
## 6300 JG Channel Islands NA 1962
## 6301 JG Channel Islands NA 1961
## 6302 JG Channel Islands NA 1960
## 6303 JG Channel Islands NA 2014
## 6304 JG Channel Islands NA 2013
## 6305 JG Channel Islands NA 2012
## 6306 JG Channel Islands NA 1983
## 6307 JG Channel Islands NA 1982
## 6308 JG Channel Islands NA 1981
## 6309 JG Channel Islands NA 2021
## 6310 JG Channel Islands NA 2020
## 6311 JG Channel Islands NA 2019
## 6312 JG Channel Islands NA 2018
## 6313 JG Channel Islands NA 2017
## 6314 JG Channel Islands NA 2016
## 6315 JG Channel Islands NA 2015
## 6316 JG Channel Islands NA 2010
## 6317 JG Channel Islands NA 2009
## 6318 JG Channel Islands NA 2008
## 6319 JG Channel Islands NA 2011
## 6320 JG Channel Islands NA 2006
## 6321 JG Channel Islands NA 2005
## 6322 JG Channel Islands NA 2004
## 6323 JG Channel Islands NA 2007
## 6324 JG Channel Islands NA 2003
## 6325 JM Jamaica 4728.1547 2021
## 6326 JM Jamaica 4539.0019 2020
## 6327 JM Jamaica 5065.3749 2019
## 6328 JM Jamaica 5043.5408 2018
## 6329 JM Jamaica 4973.7242 2017
## 6330 JM Jamaica 4949.3695 2016
## 6331 JM Jamaica 4907.9274 2015
## 6332 JM Jamaica 4889.9863 2014
## 6333 JM Jamaica 4884.3920 2013
## 6334 JM Jamaica 4887.5870 2012
## 6335 JM Jamaica 4945.9488 2011
## 6336 JM Jamaica 4888.5791 2010
## 6337 JM Jamaica 4986.8165 2009
## 6338 JM Jamaica 5239.5328 2008
## 6339 JM Jamaica 5308.4403 2007
## 6340 JM Jamaica 5259.7481 2006
## 6341 JM Jamaica 5138.4474 2005
## 6342 JM Jamaica 5120.9294 2004
## 6343 JM Jamaica 5083.0882 2003
## 6344 JM Jamaica 4933.5343 2002
## 6345 JM Jamaica 4869.7257 2001
## 6346 JM Jamaica 4841.3157 2000
## 6347 JM Jamaica 4839.2878 1999
## 6348 JM Jamaica 4832.8088 1998
## 6349 JM Jamaica 4996.1299 1997
## 6350 JM Jamaica 5103.7046 1996
## 6351 JM Jamaica 5159.7820 1995
## 6352 JM Jamaica 5090.8676 1994
## 6353 JM Jamaica 5070.8343 1993
## 6354 JM Jamaica 4678.7281 1992
## 6355 JM Jamaica 4629.8455 1991
## 6356 JM Jamaica 4451.6351 1990
## 6357 JM Jamaica 4301.3976 1989
## 6358 JM Jamaica 4037.0953 1988
## 6359 JM Jamaica 3905.6905 1987
## 6360 JM Jamaica 3647.8654 1986
## 6361 JM Jamaica 3615.1914 1985
## 6362 JM Jamaica 3771.9037 1984
## 6363 JM Jamaica 3889.3932 1983
## 6364 JM Jamaica 3880.8908 1982
## 6365 JM Jamaica 3866.4942 1981
## 6366 JM Jamaica 3826.4259 1980
## 6367 JM Jamaica 4115.5146 1979
## 6368 JM Jamaica 4212.7039 1978
## 6369 JM Jamaica 4265.7679 1977
## 6370 JM Jamaica 4433.7629 1976
## 6371 JM Jamaica 4815.9530 1975
## 6372 JM Jamaica 4900.0935 1974
## 6373 JM Jamaica 5197.9912 1973
## 6374 JM Jamaica 5590.3075 1972
## 6375 JM Jamaica 4813.8451 1971
## 6376 JM Jamaica 4770.1075 1970
## 6377 JM Jamaica 4316.3616 1969
## 6378 JM Jamaica 4141.7029 1968
## 6379 JM Jamaica 3965.6964 1967
## 6380 JM Jamaica 3945.1294 1966
## 6381 JM Jamaica NA 1965
## 6382 JM Jamaica NA 1964
## 6383 JM Jamaica NA 1963
## 6384 JM Jamaica NA 1962
## 6385 JM Jamaica NA 1961
## 6386 JM Jamaica NA 1960
## 6387 JO Jordan 4091.5742 2021
## 6388 JO Jordan 4028.9630 2020
## 6389 JO Jordan 4133.5498 2019
## 6390 JO Jordan 4109.7524 2018
## 6391 JO Jordan 4105.7210 2017
## 6392 JO Jordan 4119.2521 2016
## 6393 JO Jordan 4164.1088 2015
## 6394 JO Jordan 4221.0895 2014
## 6395 JO Jordan 4274.5479 2013
## 6396 JO Jordan 4386.7451 2012
## 6397 JO Jordan 4521.4081 2011
## 6398 JO Jordan 4644.1694 2010
## 6399 JO Jordan 4781.6051 2009
## 6400 JO Jordan 4786.7485 2008
## 6401 JO Jordan 4678.8351 2007
## 6402 JO Jordan 4515.5911 2006
## 6403 JO Jordan 4341.1887 2005
## 6404 JO Jordan 4147.5374 2004
## 6405 JO Jordan 3923.0338 2003
## 6406 JO Jordan 3848.8236 2002
## 6407 JO Jordan 3708.2526 2001
## 6408 JO Jordan 3587.8267 2000
## 6409 JO Jordan 3503.7685 1999
## 6410 JO Jordan 3449.0697 1998
## 6411 JO Jordan 3414.1222 1997
## 6412 JO Jordan 3385.5652 1996
## 6413 JO Jordan 3420.4252 1995
## 6414 JO Jordan 3351.0536 1994
## 6415 JO Jordan 3350.9916 1993
## 6416 JO Jordan 3387.6082 1992
## 6417 JO Jordan 3133.5850 1991
## 6418 JO Jordan 3252.2835 1990
## 6419 JO Jordan 3421.0725 1989
## 6420 JO Jordan 4000.2639 1988
## 6421 JO Jordan 4099.6661 1987
## 6422 JO Jordan 4161.3900 1986
## 6423 JO Jordan 4101.0051 1985
## 6424 JO Jordan 4390.0978 1984
## 6425 JO Jordan 4387.5692 1983
## 6426 JO Jordan 4676.0190 1982
## 6427 JO Jordan 4543.9207 1981
## 6428 JO Jordan 4019.4323 1980
## 6429 JO Jordan 3732.6271 1979
## 6430 JO Jordan 3179.8407 1978
## 6431 JO Jordan 2847.3300 1977
## 6432 JO Jordan 2698.7217 1976
## 6433 JO Jordan NA 1975
## 6434 JO Jordan NA 1974
## 6435 JO Jordan NA 1973
## 6436 JO Jordan NA 1972
## 6437 JO Jordan NA 1971
## 6438 JO Jordan NA 1970
## 6439 JO Jordan NA 1969
## 6440 JO Jordan NA 1968
## 6441 JO Jordan NA 1967
## 6442 JO Jordan NA 1966
## 6443 JO Jordan NA 1965
## 6444 JO Jordan NA 1964
## 6445 JO Jordan NA 1963
## 6446 JO Jordan NA 1962
## 6447 JO Jordan NA 1961
## 6448 JO Jordan NA 1960
## 6449 JP Japan 35278.4205 2021
## 6450 JP Japan 34556.4399 2020
## 6451 JP Japan 36081.0653 2019
## 6452 JP Japan 36117.2277 2018
## 6453 JP Japan 35861.9729 2017
## 6454 JP Japan 35242.1994 2016
## 6455 JP Japan 34960.6394 2015
## 6456 JP Japan 34386.9059 2014
## 6457 JP Japan 34239.8862 2013
## 6458 JP Japan 33518.4449 2012
## 6459 JP Japan 33011.1342 2011
## 6460 JP Japan 32942.2021 2010
## 6461 JP Japan 31651.0838 2009
## 6462 JP Japan 33557.6454 2008
## 6463 JP Japan 33990.0360 2007
## 6464 JP Japan 33531.5186 2006
## 6465 JP Japan 33098.5475 2005
## 6466 JP Japan 32515.1158 2004
## 6467 JP Japan 31830.2176 2003
## 6468 JP Japan 31416.1242 2002
## 6469 JP Japan 31476.0521 2001
## 6470 JP Japan 31430.6311 2000
## 6471 JP Japan 30636.2661 1999
## 6472 JP Japan 30795.0889 1998
## 6473 JP Japan 31276.1931 1997
## 6474 JP Japan 31046.1702 1996
## 6475 JP Japan 30171.1638 1995
## 6476 JP Japan 29466.7552 1994
## 6477 JP Japan 29232.4398 1993
## 6478 JP Japan 29462.6540 1992
## 6479 JP Japan 29308.2741 1991
## 6480 JP Japan 28422.2131 1990
## 6481 JP Japan 27199.9400 1989
## 6482 JP Japan 26026.8649 1988
## 6483 JP Japan 24503.0846 1987
## 6484 JP Japan 23527.7125 1986
## 6485 JP Japan 22898.9942 1985
## 6486 JP Japan 21912.1519 1984
## 6487 JP Japan 21122.9648 1983
## 6488 JP Japan 20525.2959 1982
## 6489 JP Japan 20011.8293 1981
## 6490 JP Japan 19334.3747 1980
## 6491 JP Japan 18953.3339 1979
## 6492 JP Japan 18120.7284 1978
## 6493 JP Japan 17370.6165 1977
## 6494 JP Japan 16801.9250 1976
## 6495 JP Japan 16333.6748 1975
## 6496 JP Japan 16046.7847 1974
## 6497 JP Japan 16463.2792 1973
## 6498 JP Japan 15455.1369 1972
## 6499 JP Japan 14456.8212 1971
## 6500 JP Japan 14114.3158 1970
## 6501 JP Japan 13935.6863 1969
## 6502 JP Japan 12537.8809 1968
## 6503 JP Japan 11232.9061 1967
## 6504 JP Japan 10217.4142 1966
## 6505 JP Japan 9319.7066 1965
## 6506 JP Japan 8902.4956 1964
## 6507 JP Japan 8055.0414 1963
## 6508 JP Japan 7501.4454 1962
## 6509 JP Japan 6952.1096 1961
## 6510 JP Japan 6260.6760 1960
## 6511 KE Kenya 1643.5691 2021
## 6512 KE Kenya 1563.1787 2020
## 6513 KE Kenya 1602.7884 2019
## 6514 KE Kenya 1559.8591 2018
## 6515 KE Kenya 1510.9081 2017
## 6516 KE Kenya 1489.7588 2016
## 6517 KE Kenya 1464.5540 2015
## 6518 KE Kenya 1430.4452 2014
## 6519 KE Kenya 1397.3787 2013
## 6520 KE Kenya 1381.9687 2012
## 6521 KE Kenya 1357.2536 2011
## 6522 KE Kenya 1326.3858 2010
## 6523 KE Kenya 1261.3485 2009
## 6524 KE Kenya 1255.0251 2008
## 6525 KE Kenya 1287.2498 2007
## 6526 KE Kenya 1238.5370 2006
## 6527 KE Kenya 1195.7738 2005
## 6528 KE Kenya 1160.4385 2004
## 6529 KE Kenya 1134.5349 2003
## 6530 KE Kenya 1132.4865 2002
## 6531 KE Kenya 1157.2956 2001
## 6532 KE Kenya 1145.9846 2000
## 6533 KE Kenya 1170.8674 1999
## 6534 KE Kenya 1176.5758 1998
## 6535 KE Kenya 1171.4251 1997
## 6536 KE Kenya 1199.5812 1996
## 6537 KE Kenya 1185.8785 1995
## 6538 KE Kenya 1170.2971 1994
## 6539 KE Kenya 1175.8021 1993
## 6540 KE Kenya 1209.1433 1992
## 6541 KE Kenya 1258.8705 1991
## 6542 KE Kenya 1282.7183 1990
## 6543 KE Kenya 1273.4876 1989
## 6544 KE Kenya 1259.3385 1988
## 6545 KE Kenya 1228.5713 1987
## 6546 KE Kenya 1202.4312 1986
## 6547 KE Kenya 1163.9825 1985
## 6548 KE Kenya 1158.5776 1984
## 6549 KE Kenya 1182.7388 1983
## 6550 KE Kenya 1213.2317 1982
## 6551 KE Kenya 1242.3275 1981
## 6552 KE Kenya 1244.3078 1980
## 6553 KE Kenya 1224.6169 1979
## 6554 KE Kenya 1182.2928 1978
## 6555 KE Kenya 1148.6450 1977
## 6556 KE Kenya 1089.8312 1976
## 6557 KE Kenya 1107.7436 1975
## 6558 KE Kenya 1139.9186 1974
## 6559 KE Kenya 1136.8101 1973
## 6560 KE Kenya 1113.7002 1972
## 6561 KE Kenya 986.3760 1971
## 6562 KE Kenya 836.7620 1970
## 6563 KE Kenya 909.0470 1969
## 6564 KE Kenya 871.6486 1968
## 6565 KE Kenya 835.1358 1967
## 6566 KE Kenya 835.5380 1966
## 6567 KE Kenya 752.8260 1965
## 6568 KE Kenya 762.6027 1964
## 6569 KE Kenya 750.4724 1963
## 6570 KE Kenya 712.3702 1962
## 6571 KE Kenya 671.7410 1961
## 6572 KE Kenya 751.4767 1960
## 6573 KG Kyrgyz Republic 1122.9701 2021
## 6574 KG Kyrgyz Republic 1102.6644 2020
## 6575 KG Kyrgyz Republic 1226.8245 2019
## 6576 KG Kyrgyz Republic 1197.6107 2018
## 6577 KG Kyrgyz Republic 1177.4387 2017
## 6578 KG Kyrgyz Republic 1146.1032 2016
## 6579 KG Kyrgyz Republic 1121.0828 2015
## 6580 KG Kyrgyz Republic 1101.7053 2014
## 6581 KG Kyrgyz Republic 1080.5482 2013
## 6582 KG Kyrgyz Republic 993.7374 2012
## 6583 KG Kyrgyz Republic 1011.3155 2011
## 6584 KG Kyrgyz Republic 966.1507 2010
## 6585 KG Kyrgyz Republic 982.3772 2009
## 6586 KG Kyrgyz Republic 966.4154 2008
## 6587 KG Kyrgyz Republic 900.0255 2007
## 6588 KG Kyrgyz Republic 837.1338 2006
## 6589 KG Kyrgyz Republic 820.7160 2005
## 6590 KG Kyrgyz Republic 831.4843 2004
## 6591 KG Kyrgyz Republic 786.3518 2003
## 6592 KG Kyrgyz Republic 742.4437 2002
## 6593 KG Kyrgyz Republic 749.4198 2001
## 6594 KG Kyrgyz Republic 718.3373 2000
## 6595 KG Kyrgyz Republic 689.4175 1999
## 6596 KG Kyrgyz Republic 675.0605 1998
## 6597 KG Kyrgyz Republic 671.2531 1997
## 6598 KG Kyrgyz Republic 619.6729 1996
## 6599 KG Kyrgyz Republic 587.3052 1995
## 6600 KG Kyrgyz Republic 627.2168 1994
## 6601 KG Kyrgyz Republic 784.5784 1993
## 6602 KG Kyrgyz Republic 928.3156 1992
## 6603 KG Kyrgyz Republic 1089.9085 1991
## 6604 KG Kyrgyz Republic 1203.4821 1990
## 6605 KG Kyrgyz Republic 1160.6762 1989
## 6606 KG Kyrgyz Republic 1153.0252 1988
## 6607 KG Kyrgyz Republic 1036.7103 1987
## 6608 KG Kyrgyz Republic 1022.8667 1986
## 6609 KG Kyrgyz Republic NA 1985
## 6610 KG Kyrgyz Republic NA 1984
## 6611 KG Kyrgyz Republic NA 1983
## 6612 KG Kyrgyz Republic NA 1982
## 6613 KG Kyrgyz Republic NA 1981
## 6614 KG Kyrgyz Republic NA 1980
## 6615 KG Kyrgyz Republic NA 1979
## 6616 KG Kyrgyz Republic NA 1978
## 6617 KG Kyrgyz Republic NA 1977
## 6618 KG Kyrgyz Republic NA 1976
## 6619 KG Kyrgyz Republic NA 1975
## 6620 KG Kyrgyz Republic NA 1974
## 6621 KG Kyrgyz Republic NA 1973
## 6622 KG Kyrgyz Republic NA 1972
## 6623 KG Kyrgyz Republic NA 1971
## 6624 KG Kyrgyz Republic NA 1970
## 6625 KG Kyrgyz Republic NA 1969
## 6626 KG Kyrgyz Republic NA 1968
## 6627 KG Kyrgyz Republic NA 1967
## 6628 KG Kyrgyz Republic NA 1966
## 6629 KG Kyrgyz Republic NA 1965
## 6630 KG Kyrgyz Republic NA 1964
## 6631 KG Kyrgyz Republic NA 1963
## 6632 KG Kyrgyz Republic NA 1962
## 6633 KG Kyrgyz Republic NA 1961
## 6634 KG Kyrgyz Republic NA 1960
## 6635 KH Cambodia NA 1980
## 6636 KH Cambodia NA 1979
## 6637 KH Cambodia NA 1978
## 6638 KH Cambodia NA 1977
## 6639 KH Cambodia 388.2880 1995
## 6640 KH Cambodia 364.8811 1994
## 6641 KH Cambodia 579.1964 1993
## 6642 KH Cambodia NA 1992
## 6643 KH Cambodia NA 1991
## 6644 KH Cambodia NA 1990
## 6645 KH Cambodia NA 1989
## 6646 KH Cambodia NA 1988
## 6647 KH Cambodia NA 1987
## 6648 KH Cambodia NA 1986
## 6649 KH Cambodia NA 1985
## 6650 KH Cambodia NA 1984
## 6651 KH Cambodia NA 1983
## 6652 KH Cambodia NA 1982
## 6653 KH Cambodia NA 1981
## 6654 KH Cambodia 1399.7778 2021
## 6655 KH Cambodia 1377.1451 2020
## 6656 KH Cambodia 1441.1792 2019
## 6657 KH Cambodia 1365.8291 2018
## 6658 KH Cambodia NA 1976
## 6659 KH Cambodia NA 1975
## 6660 KH Cambodia NA 1974
## 6661 KH Cambodia NA 1973
## 6662 KH Cambodia NA 1972
## 6663 KH Cambodia NA 1971
## 6664 KH Cambodia NA 1970
## 6665 KH Cambodia NA 1969
## 6666 KH Cambodia NA 1968
## 6667 KH Cambodia NA 1967
## 6668 KH Cambodia NA 1966
## 6669 KH Cambodia NA 1965
## 6670 KH Cambodia NA 1964
## 6671 KH Cambodia NA 1963
## 6672 KH Cambodia NA 1962
## 6673 KH Cambodia NA 1961
## 6674 KH Cambodia NA 1960
## 6675 KH Cambodia 486.5413 2000
## 6676 KH Cambodia 452.3382 1999
## 6677 KH Cambodia 411.2389 1998
## 6678 KH Cambodia 403.3448 1997
## 6679 KH Cambodia 398.9533 1996
## 6680 KH Cambodia 854.9558 2009
## 6681 KH Cambodia 867.1215 2008
## 6682 KH Cambodia 824.8494 2007
## 6683 KH Cambodia 759.6476 2006
## 6684 KH Cambodia 696.3394 2005
## 6685 KH Cambodia 1289.9858 2017
## 6686 KH Cambodia 1224.2204 2016
## 6687 KH Cambodia 1162.9050 2015
## 6688 KH Cambodia 1104.7500 2014
## 6689 KH Cambodia 1048.1325 2013
## 6690 KH Cambodia 992.5498 2012
## 6691 KH Cambodia 940.1118 2011
## 6692 KH Cambodia 892.1004 2010
## 6693 KH Cambodia 515.5754 2001
## 6694 KH Cambodia 624.6039 2004
## 6695 KH Cambodia 575.3292 2003
## 6696 KH Cambodia 539.3939 2002
## 6697 KI Kiribati NA 2021
## 6698 KI Kiribati 1473.8880 2020
## 6699 KI Kiribati 1505.1552 2019
## 6700 KI Kiribati 1536.3918 2018
## 6701 KI Kiribati 1481.0131 2017
## 6702 KI Kiribati 1506.0717 2016
## 6703 KI Kiribati 1535.1628 2015
## 6704 KI Kiribati 1416.9879 2014
## 6705 KI Kiribati 1452.6135 2013
## 6706 KI Kiribati 1414.6117 2012
## 6707 KI Kiribati 1366.3681 2011
## 6708 KI Kiribati 1366.2480 2010
## 6709 KI Kiribati 1409.1347 2009
## 6710 KI Kiribati 1428.5993 2008
## 6711 KI Kiribati 1492.8082 2007
## 6712 KI Kiribati 1496.9987 2006
## 6713 KI Kiribati 1530.5409 2005
## 6714 KI Kiribati 1487.6743 2004
## 6715 KI Kiribati 1540.5393 2003
## 6716 KI Kiribati 1536.7393 2002
## 6717 KI Kiribati 1505.9113 2001
## 6718 KI Kiribati 1554.4447 2000
## 6719 KI Kiribati 1488.3280 1999
## 6720 KI Kiribati 1537.7344 1998
## 6721 KI Kiribati 1467.7598 1997
## 6722 KI Kiribati 1467.1914 1996
## 6723 KI Kiribati 1464.7925 1995
## 6724 KI Kiribati 1484.8152 1994
## 6725 KI Kiribati 1478.0991 1993
## 6726 KI Kiribati 1483.8583 1992
## 6727 KI Kiribati 1492.4131 1991
## 6728 KI Kiribati 1519.1715 1990
## 6729 KI Kiribati 1565.9167 1989
## 6730 KI Kiribati 1661.7097 1988
## 6731 KI Kiribati 1563.7866 1987
## 6732 KI Kiribati 1767.3313 1986
## 6733 KI Kiribati 1824.2510 1985
## 6734 KI Kiribati 1998.7974 1984
## 6735 KI Kiribati 1937.7054 1983
## 6736 KI Kiribati 1980.5690 1982
## 6737 KI Kiribati 1878.0567 1981
## 6738 KI Kiribati 1968.6319 1980
## 6739 KI Kiribati 2391.2115 1979
## 6740 KI Kiribati 2744.7145 1978
## 6741 KI Kiribati 2756.8008 1977
## 6742 KI Kiribati 2933.3680 1976
## 6743 KI Kiribati 4064.3192 1975
## 6744 KI Kiribati 3913.5107 1974
## 6745 KI Kiribati 2732.3731 1973
## 6746 KI Kiribati 2293.3710 1972
## 6747 KI Kiribati 2077.5405 1971
## 6748 KI Kiribati 2161.0309 1970
## 6749 KI Kiribati NA 1969
## 6750 KI Kiribati NA 1968
## 6751 KI Kiribati NA 1967
## 6752 KI Kiribati NA 1966
## 6753 KI Kiribati NA 1965
## 6754 KI Kiribati NA 1964
## 6755 KI Kiribati NA 1963
## 6756 KI Kiribati NA 1962
## 6757 KI Kiribati NA 1961
## 6758 KI Kiribati NA 1960
## 6759 KM Comoros 1184.8265 2006
## 6760 KM Comoros 1186.4482 2002
## 6761 KM Comoros 1182.2081 2005
## 6762 KM Comoros 1177.2964 2004
## 6763 KM Comoros 1182.8843 2003
## 6764 KM Comoros 1166.0182 2007
## 6765 KM Comoros 1245.4062 1993
## 6766 KM Comoros 1244.5638 1992
## 6767 KM Comoros 1180.7723 1991
## 6768 KM Comoros 1285.3384 1990
## 6769 KM Comoros 1259.6720 1989
## 6770 KM Comoros 1187.8264 2001
## 6771 KM Comoros 1189.7190 2000
## 6772 KM Comoros 1100.6977 1999
## 6773 KM Comoros 1108.1425 1998
## 6774 KM Comoros 1123.3771 1997
## 6775 KM Comoros 1109.3164 1996
## 6776 KM Comoros 1155.1110 1995
## 6777 KM Comoros 1146.4887 1994
## 6778 KM Comoros 1288.1395 1980
## 6779 KM Comoros NA 1979
## 6780 KM Comoros NA 1978
## 6781 KM Comoros NA 1977
## 6782 KM Comoros NA 1976
## 6783 KM Comoros NA 1975
## 6784 KM Comoros NA 1974
## 6785 KM Comoros NA 1973
## 6786 KM Comoros NA 1972
## 6787 KM Comoros NA 1971
## 6788 KM Comoros NA 1970
## 6789 KM Comoros NA 1969
## 6790 KM Comoros NA 1968
## 6791 KM Comoros NA 1967
## 6792 KM Comoros NA 1966
## 6793 KM Comoros NA 1965
## 6794 KM Comoros NA 1964
## 6795 KM Comoros NA 1963
## 6796 KM Comoros NA 1962
## 6797 KM Comoros NA 1961
## 6798 KM Comoros NA 1960
## 6799 KM Comoros 1362.0276 1986
## 6800 KM Comoros 1376.2949 1985
## 6801 KM Comoros 1384.1077 1984
## 6802 KM Comoros 1366.5159 1983
## 6803 KM Comoros 1340.1220 1982
## 6804 KM Comoros 1296.7028 1981
## 6805 KM Comoros 1255.2382 2021
## 6806 KM Comoros 1253.0445 2020
## 6807 KM Comoros 1284.3523 2019
## 6808 KM Comoros 1290.2869 2018
## 6809 KM Comoros 1273.1344 2017
## 6810 KM Comoros 1340.1978 1988
## 6811 KM Comoros 1344.3388 1987
## 6812 KM Comoros 1257.6825 2014
## 6813 KM Comoros 1261.4331 2013
## 6814 KM Comoros 1236.9389 2012
## 6815 KM Comoros 1228.2846 2011
## 6816 KM Comoros 1208.2845 2010
## 6817 KM Comoros 1192.7394 2009
## 6818 KM Comoros 1183.4668 2008
## 6819 KM Comoros 1254.5372 2016
## 6820 KM Comoros 1242.5856 2015
## 6821 KN St. Kitts and Nevis 17112.2076 2021
## 6822 KN St. Kitts and Nevis 17404.4136 2020
## 6823 KN St. Kitts and Nevis 20472.3844 2019
## 6824 KN St. Kitts and Nevis 19681.4914 2018
## 6825 KN St. Kitts and Nevis 19317.7874 2017
## 6826 KN St. Kitts and Nevis 19288.0577 2016
## 6827 KN St. Kitts and Nevis 18717.4288 2015
## 6828 KN St. Kitts and Nevis 18740.9030 2014
## 6829 KN St. Kitts and Nevis 17574.3069 2013
## 6830 KN St. Kitts and Nevis 16774.6987 2012
## 6831 KN St. Kitts and Nevis 17011.5776 2011
## 6832 KN St. Kitts and Nevis 16888.1393 2010
## 6833 KN St. Kitts and Nevis 17023.8704 2009
## 6834 KN St. Kitts and Nevis 17773.2447 2008
## 6835 KN St. Kitts and Nevis 16123.0952 2007
## 6836 KN St. Kitts and Nevis 16174.4661 2006
## 6837 KN St. Kitts and Nevis 15841.4530 2005
## 6838 KN St. Kitts and Nevis 14601.2463 2004
## 6839 KN St. Kitts and Nevis 14216.3111 2003
## 6840 KN St. Kitts and Nevis 14988.7432 2002
## 6841 KN St. Kitts and Nevis 14974.1469 2001
## 6842 KN St. Kitts and Nevis 14394.2467 2000
## 6843 KN St. Kitts and Nevis 13218.8247 1999
## 6844 KN St. Kitts and Nevis 12924.0919 1998
## 6845 KN St. Kitts and Nevis 13098.8251 1997
## 6846 KN St. Kitts and Nevis 12373.2190 1996
## 6847 KN St. Kitts and Nevis 11799.9228 1995
## 6848 KN St. Kitts and Nevis 11320.6557 1994
## 6849 KN St. Kitts and Nevis 10875.3310 1993
## 6850 KN St. Kitts and Nevis 10295.3185 1992
## 6851 KN St. Kitts and Nevis 9949.6082 1991
## 6852 KN St. Kitts and Nevis 10169.1341 1990
## 6853 KN St. Kitts and Nevis 9673.6386 1989
## 6854 KN St. Kitts and Nevis 9108.1104 1988
## 6855 KN St. Kitts and Nevis 8255.9242 1987
## 6856 KN St. Kitts and Nevis 7666.5592 1986
## 6857 KN St. Kitts and Nevis 6850.4835 1985
## 6858 KN St. Kitts and Nevis 6262.4418 1984
## 6859 KN St. Kitts and Nevis 5714.6579 1983
## 6860 KN St. Kitts and Nevis 5613.8030 1982
## 6861 KN St. Kitts and Nevis 5553.3321 1981
## 6862 KN St. Kitts and Nevis 5438.6081 1980
## 6863 KN St. Kitts and Nevis 4986.3390 1979
## 6864 KN St. Kitts and Nevis 4607.6283 1978
## 6865 KN St. Kitts and Nevis 4409.9346 1977
## 6866 KN St. Kitts and Nevis NA 1976
## 6867 KN St. Kitts and Nevis NA 1975
## 6868 KN St. Kitts and Nevis NA 1974
## 6869 KN St. Kitts and Nevis NA 1973
## 6870 KN St. Kitts and Nevis NA 1972
## 6871 KN St. Kitts and Nevis NA 1971
## 6872 KN St. Kitts and Nevis NA 1970
## 6873 KN St. Kitts and Nevis NA 1969
## 6874 KN St. Kitts and Nevis NA 1968
## 6875 KN St. Kitts and Nevis NA 1967
## 6876 KN St. Kitts and Nevis NA 1966
## 6877 KN St. Kitts and Nevis NA 1965
## 6878 KN St. Kitts and Nevis NA 1964
## 6879 KN St. Kitts and Nevis NA 1963
## 6880 KN St. Kitts and Nevis NA 1962
## 6881 KN St. Kitts and Nevis NA 1961
## 6882 KN St. Kitts and Nevis NA 1960
## 6883 KP Korea, Dem. People's Rep. NA 2021
## 6884 KP Korea, Dem. People's Rep. NA 2020
## 6885 KP Korea, Dem. People's Rep. NA 2019
## 6886 KP Korea, Dem. People's Rep. NA 2018
## 6887 KP Korea, Dem. People's Rep. NA 2017
## 6888 KP Korea, Dem. People's Rep. NA 2016
## 6889 KP Korea, Dem. People's Rep. NA 2015
## 6890 KP Korea, Dem. People's Rep. NA 2014
## 6891 KP Korea, Dem. People's Rep. NA 2013
## 6892 KP Korea, Dem. People's Rep. NA 2012
## 6893 KP Korea, Dem. People's Rep. NA 2011
## 6894 KP Korea, Dem. People's Rep. NA 2010
## 6895 KP Korea, Dem. People's Rep. NA 2009
## 6896 KP Korea, Dem. People's Rep. NA 2008
## 6897 KP Korea, Dem. People's Rep. NA 2007
## 6898 KP Korea, Dem. People's Rep. NA 2006
## 6899 KP Korea, Dem. People's Rep. NA 2005
## 6900 KP Korea, Dem. People's Rep. NA 2004
## 6901 KP Korea, Dem. People's Rep. NA 2003
## 6902 KP Korea, Dem. People's Rep. NA 2002
## 6903 KP Korea, Dem. People's Rep. NA 2001
## 6904 KP Korea, Dem. People's Rep. NA 2000
## 6905 KP Korea, Dem. People's Rep. NA 1999
## 6906 KP Korea, Dem. People's Rep. NA 1998
## 6907 KP Korea, Dem. People's Rep. NA 1997
## 6908 KP Korea, Dem. People's Rep. NA 1996
## 6909 KP Korea, Dem. People's Rep. NA 1995
## 6910 KP Korea, Dem. People's Rep. NA 1994
## 6911 KP Korea, Dem. People's Rep. NA 1993
## 6912 KP Korea, Dem. People's Rep. NA 1992
## 6913 KP Korea, Dem. People's Rep. NA 1991
## 6914 KP Korea, Dem. People's Rep. NA 1990
## 6915 KP Korea, Dem. People's Rep. NA 1989
## 6916 KP Korea, Dem. People's Rep. NA 1988
## 6917 KP Korea, Dem. People's Rep. NA 1987
## 6918 KP Korea, Dem. People's Rep. NA 1986
## 6919 KP Korea, Dem. People's Rep. NA 1985
## 6920 KP Korea, Dem. People's Rep. NA 1984
## 6921 KP Korea, Dem. People's Rep. NA 1983
## 6922 KP Korea, Dem. People's Rep. NA 1982
## 6923 KP Korea, Dem. People's Rep. NA 1981
## 6924 KP Korea, Dem. People's Rep. NA 1980
## 6925 KP Korea, Dem. People's Rep. NA 1979
## 6926 KP Korea, Dem. People's Rep. NA 1978
## 6927 KP Korea, Dem. People's Rep. NA 1977
## 6928 KP Korea, Dem. People's Rep. NA 1976
## 6929 KP Korea, Dem. People's Rep. NA 1975
## 6930 KP Korea, Dem. People's Rep. NA 1974
## 6931 KP Korea, Dem. People's Rep. NA 1973
## 6932 KP Korea, Dem. People's Rep. NA 1972
## 6933 KP Korea, Dem. People's Rep. NA 1971
## 6934 KP Korea, Dem. People's Rep. NA 1970
## 6935 KP Korea, Dem. People's Rep. NA 1969
## 6936 KP Korea, Dem. People's Rep. NA 1968
## 6937 KP Korea, Dem. People's Rep. NA 1967
## 6938 KP Korea, Dem. People's Rep. NA 1966
## 6939 KP Korea, Dem. People's Rep. NA 1965
## 6940 KP Korea, Dem. People's Rep. NA 1964
## 6941 KP Korea, Dem. People's Rep. NA 1963
## 6942 KP Korea, Dem. People's Rep. NA 1962
## 6943 KP Korea, Dem. People's Rep. NA 1961
## 6944 KP Korea, Dem. People's Rep. NA 1960
## 6945 KR Korea, Rep. 32644.6714 2021
## 6946 KR Korea, Rep. 31327.4094 2020
## 6947 KR Korea, Rep. 31640.2146 2019
## 6948 KR Korea, Rep. 31053.6379 2018
## 6949 KR Korea, Rep. 30307.3952 2017
## 6950 KR Korea, Rep. 29461.7840 2016
## 6951 KR Korea, Rep. 28732.2311 2015
## 6952 KR Korea, Rep. 28094.9177 2014
## 6953 KR Korea, Rep. 27394.6503 2013
## 6954 KR Korea, Rep. 26675.4402 2012
## 6955 KR Korea, Rep. 26186.8975 2011
## 6956 KR Korea, Rep. 25451.0042 2010
## 6957 KR Korea, Rep. 23948.4722 2009
## 6958 KR Korea, Rep. 23882.7305 2008
## 6959 KR Korea, Rep. 23360.9057 2007
## 6960 KR Korea, Rep. 22192.1851 2006
## 6961 KR Korea, Rep. 21193.3575 2005
## 6962 KR Korea, Rep. 20361.0693 2004
## 6963 KR Korea, Rep. 19431.9711 2003
## 6964 KR Korea, Rep. 18936.9517 2002
## 6965 KR Korea, Rep. 17680.8455 2001
## 6966 KR Korea, Rep. 16992.4791 2000
## 6967 KR Korea, Rep. 15711.5640 1999
## 6968 KR Korea, Rep. 14195.8131 1998
## 6969 KR Korea, Rep. 15071.7564 1997
## 6970 KR Korea, Rep. 14329.5393 1996
## 6971 KR Korea, Rep. 13408.6814 1995
## 6972 KR Korea, Rep. 12356.2783 1994
## 6973 KR Korea, Rep. 11422.5147 1993
## 6974 KR Korea, Rep. 10796.6047 1992
## 6975 KR Korea, Rep. 10272.6207 1991
## 6976 KR Korea, Rep. 9365.3950 1990
## 6977 KR Korea, Rep. 8607.8658 1989
## 6978 KR Korea, Rep. 8119.1680 1988
## 6979 KR Korea, Rep. 7321.3928 1987
## 6980 KR Korea, Rep. 6559.2907 1986
## 6981 KR Korea, Rep. 5950.8004 1985
## 6982 KR Korea, Rep. 5572.8326 1984
## 6983 KR Korea, Rep. 5103.5230 1983
## 6984 KR Korea, Rep. 4568.2591 1982
## 6985 KR Korea, Rep. 4282.3434 1981
## 6986 KR Korea, Rep. 4055.7908 1980
## 6987 KR Korea, Rep. 4188.4223 1979
## 6988 KR Korea, Rep. 3913.1239 1978
## 6989 KR Korea, Rep. 3580.8192 1977
## 6990 KR Korea, Rep. 3237.6830 1976
## 6991 KR Korea, Rep. 2905.6238 1975
## 6992 KR Korea, Rep. 2740.0886 1974
## 6993 KR Korea, Rep. 2545.3162 1973
## 6994 KR Korea, Rep. 2254.7980 1972
## 6995 KR Korea, Rep. 2142.9007 1971
## 6996 KR Korea, Rep. 1977.0710 1970
## 6997 KR Korea, Rep. 1836.1459 1969
## 6998 KR Korea, Rep. 1639.4530 1968
## 6999 KR Korea, Rep. 1482.7265 1967
## 7000 KR Korea, Rep. 1391.4202 1966
## 7001 KR Korea, Rep. 1274.0415 1965
## 7002 KR Korea, Rep. 1217.7263 1964
## 7003 KR Korea, Rep. 1141.8207 1963
## 7004 KR Korea, Rep. 1076.9208 1962
## 7005 KR Korea, Rep. 1066.6105 1961
## 7006 KR Korea, Rep. 1027.4685 1960
## 7007 KW Kuwait NA 2021
## 7008 KW Kuwait 24429.2205 2020
## 7009 KW Kuwait 27207.1318 2019
## 7010 KW Kuwait 27819.4480 2018
## 7011 KW Kuwait 27702.1879 2017
## 7012 KW Kuwait 29801.2380 2016
## 7013 KW Kuwait 29869.5528 2015
## 7014 KW Kuwait 30857.1604 2014
## 7015 KW Kuwait 32136.1332 2013
## 7016 KW Kuwait 33455.2390 2012
## 7017 KW Kuwait 33166.9196 2011
## 7018 KW Kuwait 32035.3785 2010
## 7019 KW Kuwait 34800.3088 2009
## 7020 KW Kuwait 39777.2869 2008
## 7021 KW Kuwait 41170.6708 2007
## 7022 KW Kuwait 40976.6769 2006
## 7023 KW Kuwait 39849.5969 2005
## 7024 KW Kuwait 37168.5540 2004
## 7025 KW Kuwait 34322.2468 2003
## 7026 KW Kuwait 29590.9721 2002
## 7027 KW Kuwait 29185.6140 2001
## 7028 KW Kuwait 29951.5666 2000
## 7029 KW Kuwait 29978.8255 1999
## 7030 KW Kuwait 32534.0128 1998
## 7031 KW Kuwait 33602.6468 1997
## 7032 KW Kuwait 34472.6275 1996
## 7033 KW Kuwait 34712.3110 1995
## 7034 KW Kuwait NA 1994
## 7035 KW Kuwait NA 1993
## 7036 KW Kuwait NA 1992
## 7037 KW Kuwait NA 1991
## 7038 KW Kuwait NA 1990
## 7039 KW Kuwait NA 1989
## 7040 KW Kuwait NA 1988
## 7041 KW Kuwait NA 1987
## 7042 KW Kuwait NA 1986
## 7043 KW Kuwait NA 1985
## 7044 KW Kuwait NA 1984
## 7045 KW Kuwait NA 1983
## 7046 KW Kuwait NA 1982
## 7047 KW Kuwait NA 1981
## 7048 KW Kuwait NA 1980
## 7049 KW Kuwait NA 1979
## 7050 KW Kuwait NA 1978
## 7051 KW Kuwait NA 1977
## 7052 KW Kuwait NA 1976
## 7053 KW Kuwait NA 1975
## 7054 KW Kuwait NA 1974
## 7055 KW Kuwait NA 1973
## 7056 KW Kuwait NA 1972
## 7057 KW Kuwait NA 1971
## 7058 KW Kuwait NA 1970
## 7059 KW Kuwait NA 1969
## 7060 KW Kuwait NA 1968
## 7061 KW Kuwait NA 1967
## 7062 KW Kuwait NA 1966
## 7063 KW Kuwait NA 1965
## 7064 KW Kuwait NA 1964
## 7065 KW Kuwait NA 1963
## 7066 KW Kuwait NA 1962
## 7067 KW Kuwait NA 1961
## 7068 KW Kuwait NA 1960
## 7069 KY Cayman Islands 79133.8002 2017
## 7070 KY Cayman Islands 76284.1943 2015
## 7071 KY Cayman Islands 75246.8262 2014
## 7072 KY Cayman Islands 74420.1192 2013
## 7073 KY Cayman Islands 77694.6107 2016
## 7074 KY Cayman Islands 91434.5367 2007
## 7075 KY Cayman Islands 91341.2941 2006
## 7076 KY Cayman Islands NA 2005
## 7077 KY Cayman Islands NA 2004
## 7078 KY Cayman Islands NA 2003
## 7079 KY Cayman Islands NA 2002
## 7080 KY Cayman Islands NA 2001
## 7081 KY Cayman Islands NA 2000
## 7082 KY Cayman Islands 74688.8864 2012
## 7083 KY Cayman Islands 75165.9870 2011
## 7084 KY Cayman Islands 75877.1675 2010
## 7085 KY Cayman Islands 79899.9647 2009
## 7086 KY Cayman Islands 88476.1416 2008
## 7087 KY Cayman Islands NA 2021
## 7088 KY Cayman Islands 77959.1105 2020
## 7089 KY Cayman Islands 83639.8336 2019
## 7090 KY Cayman Islands 81494.8887 2018
## 7091 KY Cayman Islands NA 1978
## 7092 KY Cayman Islands NA 1977
## 7093 KY Cayman Islands NA 1976
## 7094 KY Cayman Islands NA 1975
## 7095 KY Cayman Islands NA 1974
## 7096 KY Cayman Islands NA 1973
## 7097 KY Cayman Islands NA 1972
## 7098 KY Cayman Islands NA 1971
## 7099 KY Cayman Islands NA 1970
## 7100 KY Cayman Islands NA 1969
## 7101 KY Cayman Islands NA 1968
## 7102 KY Cayman Islands NA 1967
## 7103 KY Cayman Islands NA 1966
## 7104 KY Cayman Islands NA 1965
## 7105 KY Cayman Islands NA 1964
## 7106 KY Cayman Islands NA 1963
## 7107 KY Cayman Islands NA 1962
## 7108 KY Cayman Islands NA 1961
## 7109 KY Cayman Islands NA 1960
## 7110 KY Cayman Islands NA 1999
## 7111 KY Cayman Islands NA 1998
## 7112 KY Cayman Islands NA 1997
## 7113 KY Cayman Islands NA 1996
## 7114 KY Cayman Islands NA 1995
## 7115 KY Cayman Islands NA 1994
## 7116 KY Cayman Islands NA 1993
## 7117 KY Cayman Islands NA 1992
## 7118 KY Cayman Islands NA 1991
## 7119 KY Cayman Islands NA 1990
## 7120 KY Cayman Islands NA 1989
## 7121 KY Cayman Islands NA 1988
## 7122 KY Cayman Islands NA 1987
## 7123 KY Cayman Islands NA 1986
## 7124 KY Cayman Islands NA 1985
## 7125 KY Cayman Islands NA 1984
## 7126 KY Cayman Islands NA 1983
## 7127 KY Cayman Islands NA 1982
## 7128 KY Cayman Islands NA 1981
## 7129 KY Cayman Islands NA 1980
## 7130 KY Cayman Islands NA 1979
## 7131 KZ Kazakhstan 11264.9126 2021
## 7132 KZ Kazakhstan 10974.2463 2020
## 7133 KZ Kazakhstan 11402.7601 2019
## 7134 KZ Kazakhstan 11053.3621 2018
## 7135 KZ Kazakhstan 10758.5209 2017
## 7136 KZ Kazakhstan 10476.3476 2016
## 7137 KZ Kazakhstan 10510.7719 2015
## 7138 KZ Kazakhstan 10539.0447 2014
## 7139 KZ Kazakhstan 10264.2981 2013
## 7140 KZ Kazakhstan 9823.6939 2012
## 7141 KZ Kazakhstan 9506.7341 2011
## 7142 KZ Kazakhstan 8979.3323 2010
## 7143 KZ Kazakhstan 8487.5448 2009
## 7144 KZ Kazakhstan 8554.8236 2008
## 7145 KZ Kazakhstan 8438.1046 2007
## 7146 KZ Kazakhstan 7837.6291 2006
## 7147 KZ Kazakhstan 7155.3437 2005
## 7148 KZ Kazakhstan 6580.8850 2004
## 7149 KZ Kazakhstan 6046.3280 2003
## 7150 KZ Kazakhstan 5550.5056 2002
## 7151 KZ Kazakhstan 5055.3139 2001
## 7152 KZ Kazakhstan 4446.4525 2000
## 7153 KZ Kazakhstan 4037.4538 1999
## 7154 KZ Kazakhstan 3893.9387 1998
## 7155 KZ Kazakhstan 3901.3390 1997
## 7156 KZ Kazakhstan 3776.0839 1996
## 7157 KZ Kazakhstan 3700.7545 1995
## 7158 KZ Kazakhstan 3949.0467 1994
## 7159 KZ Kazakhstan 4453.5648 1993
## 7160 KZ Kazakhstan 4887.3758 1992
## 7161 KZ Kazakhstan 5156.9461 1991
## 7162 KZ Kazakhstan 5831.0804 1990
## 7163 KZ Kazakhstan NA 1989
## 7164 KZ Kazakhstan NA 1988
## 7165 KZ Kazakhstan NA 1987
## 7166 KZ Kazakhstan NA 1986
## 7167 KZ Kazakhstan NA 1985
## 7168 KZ Kazakhstan NA 1984
## 7169 KZ Kazakhstan NA 1983
## 7170 KZ Kazakhstan NA 1982
## 7171 KZ Kazakhstan NA 1981
## 7172 KZ Kazakhstan NA 1980
## 7173 KZ Kazakhstan NA 1979
## 7174 KZ Kazakhstan NA 1978
## 7175 KZ Kazakhstan NA 1977
## 7176 KZ Kazakhstan NA 1976
## 7177 KZ Kazakhstan NA 1975
## 7178 KZ Kazakhstan NA 1974
## 7179 KZ Kazakhstan NA 1973
## 7180 KZ Kazakhstan NA 1972
## 7181 KZ Kazakhstan NA 1971
## 7182 KZ Kazakhstan NA 1970
## 7183 KZ Kazakhstan NA 1969
## 7184 KZ Kazakhstan NA 1968
## 7185 KZ Kazakhstan NA 1967
## 7186 KZ Kazakhstan NA 1966
## 7187 KZ Kazakhstan NA 1965
## 7188 KZ Kazakhstan NA 1964
## 7189 KZ Kazakhstan NA 1963
## 7190 KZ Kazakhstan NA 1962
## 7191 KZ Kazakhstan NA 1961
## 7192 KZ Kazakhstan NA 1960
## 7193 LA Lao PDR 2582.1699 2021
## 7194 LA Lao PDR 2554.4255 2020
## 7195 LA Lao PDR 2579.2537 2019
## 7196 LA Lao PDR 2483.1616 2018
## 7197 LA Lao PDR 2373.5974 2017
## 7198 LA Lao PDR 2255.3119 2016
## 7199 LA Lao PDR 2140.0443 2015
## 7200 LA Lao PDR 2025.4722 2014
## 7201 LA Lao PDR 1910.5311 2013
## 7202 LA Lao PDR 1795.1376 2012
## 7203 LA Lao PDR 1687.1474 2011
## 7204 LA Lao PDR 1586.2029 2010
## 7205 LA Lao PDR 1485.4766 2009
## 7206 LA Lao PDR 1405.1235 2008
## 7207 LA Lao PDR 1325.4416 2007
## 7208 LA Lao PDR 1252.6939 2006
## 7209 LA Lao PDR 1172.2173 2005
## 7210 LA Lao PDR 1111.7245 2004
## 7211 LA Lao PDR 1061.3064 2003
## 7212 LA Lao PDR 1015.7901 2002
## 7213 LA Lao PDR 973.8598 2001
## 7214 LA Lao PDR 935.7513 2000
## 7215 LA Lao PDR 899.3912 1999
## 7216 LA Lao PDR 852.9355 1998
## 7217 LA Lao PDR 835.7031 1997
## 7218 LA Lao PDR 797.6200 1996
## 7219 LA Lao PDR 762.0556 1995
## 7220 LA Lao PDR 728.6273 1994
## 7221 LA Lao PDR 690.5618 1993
## 7222 LA Lao PDR 669.3389 1992
## 7223 LA Lao PDR 651.6210 1991
## 7224 LA Lao PDR 642.4946 1990
## 7225 LA Lao PDR 619.5281 1989
## 7226 LA Lao PDR 558.4642 1988
## 7227 LA Lao PDR 586.7442 1987
## 7228 LA Lao PDR 612.6957 1986
## 7229 LA Lao PDR 600.9989 1985
## 7230 LA Lao PDR 588.1993 1984
## 7231 LA Lao PDR NA 1983
## 7232 LA Lao PDR NA 1982
## 7233 LA Lao PDR NA 1981
## 7234 LA Lao PDR NA 1980
## 7235 LA Lao PDR NA 1979
## 7236 LA Lao PDR NA 1978
## 7237 LA Lao PDR NA 1977
## 7238 LA Lao PDR NA 1976
## 7239 LA Lao PDR NA 1975
## 7240 LA Lao PDR NA 1974
## 7241 LA Lao PDR NA 1973
## 7242 LA Lao PDR NA 1972
## 7243 LA Lao PDR NA 1971
## 7244 LA Lao PDR NA 1970
## 7245 LA Lao PDR NA 1969
## 7246 LA Lao PDR NA 1968
## 7247 LA Lao PDR NA 1967
## 7248 LA Lao PDR NA 1966
## 7249 LA Lao PDR NA 1965
## 7250 LA Lao PDR NA 1964
## 7251 LA Lao PDR NA 1963
## 7252 LA Lao PDR NA 1962
## 7253 LA Lao PDR NA 1961
## 7254 LA Lao PDR NA 1960
## 7255 LB Lebanon 4576.6087 2021
## 7256 LB Lebanon 5072.4558 2020
## 7257 LB Lebanon 6815.9090 2019
## 7258 LB Lebanon 7318.2875 2018
## 7259 LB Lebanon 7502.6545 2017
## 7260 LB Lebanon 7551.8904 2016
## 7261 LB Lebanon 7643.0087 2015
## 7262 LB Lebanon 7937.9015 2014
## 7263 LB Lebanon 8201.3854 2013
## 7264 LB Lebanon 8434.4966 2012
## 7265 LB Lebanon 8754.1066 2011
## 7266 LB Lebanon 9115.0595 2010
## 7267 LB Lebanon 8687.4333 2009
## 7268 LB Lebanon 7960.8919 2008
## 7269 LB Lebanon 7294.9578 2007
## 7270 LB Lebanon 6684.2414 2006
## 7271 LB Lebanon 6667.6988 2005
## 7272 LB Lebanon 6677.1639 2004
## 7273 LB Lebanon 6517.2480 2003
## 7274 LB Lebanon 6624.7462 2002
## 7275 LB Lebanon 6712.3591 2001
## 7276 LB Lebanon 6713.4948 2000
## 7277 LB Lebanon 6792.5459 1999
## 7278 LB Lebanon 6928.7268 1998
## 7279 LB Lebanon 6747.8255 1997
## 7280 LB Lebanon 6765.7101 1996
## 7281 LB Lebanon 6221.3528 1995
## 7282 LB Lebanon 6059.1439 1994
## 7283 LB Lebanon 5876.3344 1993
## 7284 LB Lebanon 5598.3751 1992
## 7285 LB Lebanon 5062.1552 1991
## 7286 LB Lebanon 3530.6504 1990
## 7287 LB Lebanon 2868.6845 1989
## 7288 LB Lebanon 5062.3093 1988
## 7289 LB Lebanon NA 1987
## 7290 LB Lebanon NA 1986
## 7291 LB Lebanon NA 1985
## 7292 LB Lebanon NA 1984
## 7293 LB Lebanon NA 1983
## 7294 LB Lebanon NA 1982
## 7295 LB Lebanon NA 1981
## 7296 LB Lebanon NA 1980
## 7297 LB Lebanon NA 1979
## 7298 LB Lebanon NA 1978
## 7299 LB Lebanon NA 1977
## 7300 LB Lebanon NA 1976
## 7301 LB Lebanon NA 1975
## 7302 LB Lebanon NA 1974
## 7303 LB Lebanon NA 1973
## 7304 LB Lebanon NA 1972
## 7305 LB Lebanon NA 1971
## 7306 LB Lebanon NA 1970
## 7307 LB Lebanon NA 1969
## 7308 LB Lebanon NA 1968
## 7309 LB Lebanon NA 1967
## 7310 LB Lebanon NA 1966
## 7311 LB Lebanon NA 1965
## 7312 LB Lebanon NA 1964
## 7313 LB Lebanon NA 1963
## 7314 LB Lebanon NA 1962
## 7315 LB Lebanon NA 1961
## 7316 LB Lebanon NA 1960
## 7317 LC St. Lucia 9183.6709 2021
## 7318 LC St. Lucia 8651.3493 2020
## 7319 LC St. Lucia 10914.5027 2019
## 7320 LC St. Lucia 10975.8265 2018
## 7321 LC St. Lucia 10718.8600 2017
## 7322 LC St. Lucia 10409.5373 2016
## 7323 LC St. Lucia 10093.6180 2015
## 7324 LC St. Lucia 10280.1226 2014
## 7325 LC St. Lucia 10148.0989 2013
## 7326 LC St. Lucia 10531.2885 2012
## 7327 LC St. Lucia 10619.4653 2011
## 7328 LC St. Lucia 10151.0465 2010
## 7329 LC St. Lucia 10099.2300 2009
## 7330 LC St. Lucia 10528.4702 2008
## 7331 LC St. Lucia 10173.5996 2007
## 7332 LC St. Lucia 10141.4431 2006
## 7333 LC St. Lucia 9664.9377 2005
## 7334 LC St. Lucia 9799.9326 2004
## 7335 LC St. Lucia 9209.4559 2003
## 7336 LC St. Lucia 8895.8353 2002
## 7337 LC St. Lucia 8926.5950 2001
## 7338 LC St. Lucia 9326.8713 2000
## 7339 LC St. Lucia 9427.5269 1999
## 7340 LC St. Lucia 9300.2158 1998
## 7341 LC St. Lucia 8872.0699 1997
## 7342 LC St. Lucia 9059.1181 1996
## 7343 LC St. Lucia 8919.6966 1995
## 7344 LC St. Lucia 8874.6603 1994
## 7345 LC St. Lucia 8837.2375 1993
## 7346 LC St. Lucia 8887.8908 1992
## 7347 LC St. Lucia 8336.4304 1991
## 7348 LC St. Lucia 8424.4954 1990
## 7349 LC St. Lucia 7792.2636 1989
## 7350 LC St. Lucia 7280.0173 1988
## 7351 LC St. Lucia 6513.5105 1987
## 7352 LC St. Lucia 6385.6705 1986
## 7353 LC St. Lucia 5679.1395 1985
## 7354 LC St. Lucia 5326.7660 1984
## 7355 LC St. Lucia 5035.8488 1983
## 7356 LC St. Lucia 4860.4402 1982
## 7357 LC St. Lucia 4822.9755 1981
## 7358 LC St. Lucia 4598.5722 1980
## 7359 LC St. Lucia 4771.0294 1979
## 7360 LC St. Lucia 4667.0069 1978
## 7361 LC St. Lucia 4295.0502 1977
## 7362 LC St. Lucia NA 1976
## 7363 LC St. Lucia NA 1975
## 7364 LC St. Lucia NA 1974
## 7365 LC St. Lucia NA 1973
## 7366 LC St. Lucia NA 1972
## 7367 LC St. Lucia NA 1971
## 7368 LC St. Lucia NA 1970
## 7369 LC St. Lucia NA 1969
## 7370 LC St. Lucia NA 1968
## 7371 LC St. Lucia NA 1967
## 7372 LC St. Lucia NA 1966
## 7373 LC St. Lucia NA 1965
## 7374 LC St. Lucia NA 1964
## 7375 LC St. Lucia NA 1963
## 7376 LC St. Lucia NA 1962
## 7377 LC St. Lucia NA 1961
## 7378 LC St. Lucia NA 1960
## 7379 LI Liechtenstein NA 2021
## 7380 LI Liechtenstein NA 2020
## 7381 LI Liechtenstein NA 2019
## 7382 LI Liechtenstein NA 2018
## 7383 LI Liechtenstein NA 2017
## 7384 LI Liechtenstein NA 2016
## 7385 LI Liechtenstein 167313.2663 2015
## 7386 LI Liechtenstein NA 2014
## 7387 LI Liechtenstein NA 2013
## 7388 LI Liechtenstein NA 2012
## 7389 LI Liechtenstein NA 2011
## 7390 LI Liechtenstein NA 2010
## 7391 LI Liechtenstein NA 2009
## 7392 LI Liechtenstein NA 2008
## 7393 LI Liechtenstein NA 2007
## 7394 LI Liechtenstein NA 2006
## 7395 LI Liechtenstein NA 2005
## 7396 LI Liechtenstein NA 2004
## 7397 LI Liechtenstein NA 2003
## 7398 LI Liechtenstein NA 2002
## 7399 LI Liechtenstein NA 2001
## 7400 LI Liechtenstein NA 2000
## 7401 LI Liechtenstein NA 1999
## 7402 LI Liechtenstein NA 1998
## 7403 LI Liechtenstein NA 1997
## 7404 LI Liechtenstein NA 1996
## 7405 LI Liechtenstein NA 1995
## 7406 LI Liechtenstein NA 1994
## 7407 LI Liechtenstein NA 1993
## 7408 LI Liechtenstein NA 1992
## 7409 LI Liechtenstein NA 1991
## 7410 LI Liechtenstein NA 1990
## 7411 LI Liechtenstein NA 1989
## 7412 LI Liechtenstein NA 1988
## 7413 LI Liechtenstein NA 1987
## 7414 LI Liechtenstein NA 1986
## 7415 LI Liechtenstein NA 1985
## 7416 LI Liechtenstein NA 1984
## 7417 LI Liechtenstein NA 1983
## 7418 LI Liechtenstein NA 1982
## 7419 LI Liechtenstein NA 1981
## 7420 LI Liechtenstein NA 1980
## 7421 LI Liechtenstein NA 1979
## 7422 LI Liechtenstein NA 1978
## 7423 LI Liechtenstein NA 1977
## 7424 LI Liechtenstein NA 1976
## 7425 LI Liechtenstein NA 1975
## 7426 LI Liechtenstein NA 1974
## 7427 LI Liechtenstein NA 1973
## 7428 LI Liechtenstein NA 1972
## 7429 LI Liechtenstein NA 1971
## 7430 LI Liechtenstein NA 1970
## 7431 LI Liechtenstein NA 1969
## 7432 LI Liechtenstein NA 1968
## 7433 LI Liechtenstein NA 1967
## 7434 LI Liechtenstein NA 1966
## 7435 LI Liechtenstein NA 1965
## 7436 LI Liechtenstein NA 1964
## 7437 LI Liechtenstein NA 1963
## 7438 LI Liechtenstein NA 1962
## 7439 LI Liechtenstein NA 1961
## 7440 LI Liechtenstein NA 1960
## 7441 LK Sri Lanka 4156.9681 2021
## 7442 LK Sri Lanka 4053.7262 2020
## 7443 LK Sri Lanka 4228.1492 2019
## 7444 LK Sri Lanka 4157.2839 2018
## 7445 LK Sri Lanka 4067.9931 2017
## 7446 LK Sri Lanka 3972.1026 2016
## 7447 LK Sri Lanka 3843.7807 2015
## 7448 LK Sri Lanka 3694.3004 2014
## 7449 LK Sri Lanka 3552.6986 2013
## 7450 LK Sri Lanka 3462.9367 2012
## 7451 LK Sri Lanka 3176.9203 2011
## 7452 LK Sri Lanka 2950.3907 2010
## 7453 LK Sri Lanka 2750.2019 2009
## 7454 LK Sri Lanka 2674.7463 2008
## 7455 LK Sri Lanka 2542.5936 2007
## 7456 LK Sri Lanka 2398.4324 2006
## 7457 LK Sri Lanka 2244.8213 2005
## 7458 LK Sri Lanka 2130.1390 2004
## 7459 LK Sri Lanka 2037.2820 2003
## 7460 LK Sri Lanka 1939.3462 2002
## 7461 LK Sri Lanka 1880.2589 2001
## 7462 LK Sri Lanka 1923.4135 2000
## 7463 LK Sri Lanka 1825.6545 1999
## 7464 LK Sri Lanka 1759.6846 1998
## 7465 LK Sri Lanka 1689.2432 1997
## 7466 LK Sri Lanka 1596.5092 1996
## 7467 LK Sri Lanka 1548.5492 1995
## 7468 LK Sri Lanka 1479.8596 1994
## 7469 LK Sri Lanka 1414.6465 1993
## 7470 LK Sri Lanka 1337.3621 1992
## 7471 LK Sri Lanka 1295.6884 1991
## 7472 LK Sri Lanka 1253.7193 1990
## 7473 LK Sri Lanka 1193.3935 1989
## 7474 LK Sri Lanka 1182.3684 1988
## 7475 LK Sri Lanka 1170.0755 1987
## 7476 LK Sri Lanka 1166.7067 1986
## 7477 LK Sri Lanka 1134.0858 1985
## 7478 LK Sri Lanka 1095.5139 1984
## 7479 LK Sri Lanka 1057.2017 1983
## 7480 LK Sri Lanka 1023.1839 1982
## 7481 LK Sri Lanka 997.1861 1981
## 7482 LK Sri Lanka 958.2852 1980
## 7483 LK Sri Lanka 920.4772 1979
## 7484 LK Sri Lanka 880.2699 1978
## 7485 LK Sri Lanka 848.3521 1977
## 7486 LK Sri Lanka 822.1925 1976
## 7487 LK Sri Lanka 810.5660 1975
## 7488 LK Sri Lanka 778.0989 1974
## 7489 LK Sri Lanka 763.4122 1973
## 7490 LK Sri Lanka 726.7867 1972
## 7491 LK Sri Lanka 744.3462 1971
## 7492 LK Sri Lanka 750.1673 1970
## 7493 LK Sri Lanka 738.3941 1969
## 7494 LK Sri Lanka 701.4215 1968
## 7495 LK Sri Lanka 678.8833 1967
## 7496 LK Sri Lanka 653.3376 1966
## 7497 LK Sri Lanka 637.1934 1965
## 7498 LK Sri Lanka 636.3681 1964
## 7499 LK Sri Lanka 627.0334 1963
## 7500 LK Sri Lanka 626.1352 1962
## 7501 LK Sri Lanka 617.4554 1961
## 7502 LK Sri Lanka NA 1960
## 7503 LR Liberia 625.4920 2021
## 7504 LR Liberia 616.0054 2020
## 7505 LR Liberia 650.4134 2019
## 7506 LR Liberia 683.2513 2018
## 7507 LR Liberia 692.2030 2017
## 7508 LR Liberia 692.6189 2016
## 7509 LR Liberia 721.5811 2015
## 7510 LR Liberia 740.3760 2014
## 7511 LR Liberia 754.4585 2013
## 7512 LR Liberia 713.0673 2012
## 7513 LR Liberia 679.7146 2011
## 7514 LR Liberia 648.5527 2010
## 7515 LR Liberia 633.6107 2009
## 7516 LR Liberia 626.1106 2008
## 7517 LR Liberia 608.9904 2007
## 7518 LR Liberia 578.1373 2006
## 7519 LR Liberia 553.5676 2005
## 7520 LR Liberia 539.6262 2004
## 7521 LR Liberia 535.8640 2003
## 7522 LR Liberia 780.3815 2002
## 7523 LR Liberia 770.1062 2001
## 7524 LR Liberia 775.9638 2000
## 7525 LR Liberia NA 1999
## 7526 LR Liberia NA 1998
## 7527 LR Liberia NA 1997
## 7528 LR Liberia NA 1996
## 7529 LR Liberia NA 1995
## 7530 LR Liberia NA 1994
## 7531 LR Liberia NA 1993
## 7532 LR Liberia NA 1992
## 7533 LR Liberia NA 1991
## 7534 LR Liberia NA 1990
## 7535 LR Liberia NA 1989
## 7536 LR Liberia NA 1988
## 7537 LR Liberia NA 1987
## 7538 LR Liberia NA 1986
## 7539 LR Liberia NA 1985
## 7540 LR Liberia NA 1984
## 7541 LR Liberia NA 1983
## 7542 LR Liberia NA 1982
## 7543 LR Liberia NA 1981
## 7544 LR Liberia NA 1980
## 7545 LR Liberia NA 1979
## 7546 LR Liberia NA 1978
## 7547 LR Liberia NA 1977
## 7548 LR Liberia NA 1976
## 7549 LR Liberia NA 1975
## 7550 LR Liberia NA 1974
## 7551 LR Liberia NA 1973
## 7552 LR Liberia NA 1972
## 7553 LR Liberia NA 1971
## 7554 LR Liberia NA 1970
## 7555 LR Liberia NA 1969
## 7556 LR Liberia NA 1968
## 7557 LR Liberia NA 1967
## 7558 LR Liberia NA 1966
## 7559 LR Liberia NA 1965
## 7560 LR Liberia NA 1964
## 7561 LR Liberia NA 1963
## 7562 LR Liberia NA 1962
## 7563 LR Liberia NA 1961
## 7564 LR Liberia NA 1960
## 7565 LS Lesotho 1035.8002 2021
## 7566 LS Lesotho 1033.4321 2020
## 7567 LS Lesotho 1126.8438 2019
## 7568 LS Lesotho 1109.2559 2018
## 7569 LS Lesotho 1132.0093 2017
## 7570 LS Lesotho 1178.0185 2016
## 7571 LS Lesotho 1146.0647 2015
## 7572 LS Lesotho 1119.7717 2014
## 7573 LS Lesotho 1109.0371 2013
## 7574 LS Lesotho 1096.8285 2012
## 7575 LS Lesotho 1037.2485 2011
## 7576 LS Lesotho 995.5814 2010
## 7577 LS Lesotho 948.3595 2009
## 7578 LS Lesotho 961.8700 2008
## 7579 LS Lesotho 911.6284 2007
## 7580 LS Lesotho 873.6626 2006
## 7581 LS Lesotho 835.6098 2005
## 7582 LS Lesotho 803.6559 2004
## 7583 LS Lesotho 785.4254 2003
## 7584 LS Lesotho 746.9263 2002
## 7585 LS Lesotho 739.4073 2001
## 7586 LS Lesotho 715.0085 2000
## 7587 LS Lesotho 692.7872 1999
## 7588 LS Lesotho 697.1707 1998
## 7589 LS Lesotho 696.8945 1997
## 7590 LS Lesotho 683.7348 1996
## 7591 LS Lesotho 659.6680 1995
## 7592 LS Lesotho 651.4401 1994
## 7593 LS Lesotho 627.8675 1993
## 7594 LS Lesotho 620.1755 1992
## 7595 LS Lesotho 593.0668 1991
## 7596 LS Lesotho 567.0600 1990
## 7597 LS Lesotho 546.6666 1989
## 7598 LS Lesotho 527.9907 1988
## 7599 LS Lesotho 496.7073 1987
## 7600 LS Lesotho 504.0681 1986
## 7601 LS Lesotho 492.7280 1985
## 7602 LS Lesotho 491.9423 1984
## 7603 LS Lesotho 478.0007 1983
## 7604 LS Lesotho 481.0650 1982
## 7605 LS Lesotho 473.0904 1981
## 7606 LS Lesotho 482.9900 1980
## 7607 LS Lesotho 510.9509 1979
## 7608 LS Lesotho 511.2825 1978
## 7609 LS Lesotho 445.0333 1977
## 7610 LS Lesotho 376.0703 1976
## 7611 LS Lesotho 348.1986 1975
## 7612 LS Lesotho 413.3445 1974
## 7613 LS Lesotho 381.8202 1973
## 7614 LS Lesotho 309.2918 1972
## 7615 LS Lesotho 317.1285 1971
## 7616 LS Lesotho 308.6465 1970
## 7617 LS Lesotho 308.9827 1969
## 7618 LS Lesotho 311.1495 1968
## 7619 LS Lesotho 319.2424 1967
## 7620 LS Lesotho 294.0933 1966
## 7621 LS Lesotho 301.5311 1965
## 7622 LS Lesotho 301.2313 1964
## 7623 LS Lesotho 283.8283 1963
## 7624 LS Lesotho 261.5889 1962
## 7625 LS Lesotho 231.1330 1961
## 7626 LS Lesotho 231.1370 1960
## 7627 LT Lithuania 18072.2884 2021
## 7628 LT Lithuania 17213.8143 2020
## 7629 LT Lithuania 17241.2553 2019
## 7630 LT Lithuania 16443.5853 2018
## 7631 LT Lithuania 15661.9963 2017
## 7632 LT Lithuania 14810.2518 2016
## 7633 LT Lithuania 14263.9646 2015
## 7634 LT Lithuania 13850.0001 2014
## 7635 LT Lithuania 13262.3345 2013
## 7636 LT Lithuania 12678.6927 2012
## 7637 LT Lithuania 12046.7214 2011
## 7638 LT Lithuania 11106.9502 2010
## 7639 LT Lithuania 10699.7895 2009
## 7640 LT Lithuania 12425.3981 2008
## 7641 LT Lithuania 11984.9233 2007
## 7642 LT Lithuania 10659.4002 2006
## 7643 LT Lithuania 9766.4876 2005
## 7644 LT Lithuania 8919.0817 2004
## 7645 LT Lithuania 8275.8034 2003
## 7646 LT Lithuania 7424.3948 2002
## 7647 LT Lithuania 6899.2368 2001
## 7648 LT Lithuania 6423.4207 2000
## 7649 LT Lithuania 6151.0830 1999
## 7650 LT Lithuania 6178.1238 1998
## 7651 LT Lithuania 5706.8953 1997
## 7652 LT Lithuania 5230.2602 1996
## 7653 LT Lithuania 4936.0202 1995
## 7654 LT Lithuania NA 1994
## 7655 LT Lithuania NA 1993
## 7656 LT Lithuania NA 1992
## 7657 LT Lithuania NA 1991
## 7658 LT Lithuania NA 1990
## 7659 LT Lithuania NA 1989
## 7660 LT Lithuania NA 1988
## 7661 LT Lithuania NA 1987
## 7662 LT Lithuania NA 1986
## 7663 LT Lithuania NA 1985
## 7664 LT Lithuania NA 1984
## 7665 LT Lithuania NA 1983
## 7666 LT Lithuania NA 1982
## 7667 LT Lithuania NA 1981
## 7668 LT Lithuania NA 1980
## 7669 LT Lithuania NA 1979
## 7670 LT Lithuania NA 1978
## 7671 LT Lithuania NA 1977
## 7672 LT Lithuania NA 1976
## 7673 LT Lithuania NA 1975
## 7674 LT Lithuania NA 1974
## 7675 LT Lithuania NA 1973
## 7676 LT Lithuania NA 1972
## 7677 LT Lithuania NA 1971
## 7678 LT Lithuania NA 1970
## 7679 LT Lithuania NA 1969
## 7680 LT Lithuania NA 1968
## 7681 LT Lithuania NA 1967
## 7682 LT Lithuania NA 1966
## 7683 LT Lithuania NA 1965
## 7684 LT Lithuania NA 1964
## 7685 LT Lithuania NA 1963
## 7686 LT Lithuania NA 1962
## 7687 LT Lithuania NA 1961
## 7688 LT Lithuania NA 1960
## 7689 LU Luxembourg 110584.3305 2021
## 7690 LU Luxembourg 104879.2562 2020
## 7691 LU Luxembourg 108570.0277 2019
## 7692 LU Luxembourg 107201.8399 2018
## status lastupdated iso3c region capital
## 1 2022-09-16 ARB Aggregates
## 2 2022-09-16 ARB Aggregates
## 3 2022-09-16 ARB Aggregates
## 4 2022-09-16 ARB Aggregates
## 5 2022-09-16 ARB Aggregates
## 6 2022-09-16 ARB Aggregates
## 7 2022-09-16 ARB Aggregates
## 8 2022-09-16 ARB Aggregates
## 9 2022-09-16 ARB Aggregates
## 10 2022-09-16 ARB Aggregates
## 11 2022-09-16 ARB Aggregates
## 12 2022-09-16 ARB Aggregates
## 13 2022-09-16 ARB Aggregates
## 14 2022-09-16 ARB Aggregates
## 15 2022-09-16 ARB Aggregates
## 16 2022-09-16 ARB Aggregates
## 17 2022-09-16 ARB Aggregates
## 18 2022-09-16 ARB Aggregates
## 19 2022-09-16 ARB Aggregates
## 20 2022-09-16 ARB Aggregates
## 21 2022-09-16 ARB Aggregates
## 22 2022-09-16 ARB Aggregates
## 23 2022-09-16 ARB Aggregates
## 24 2022-09-16 ARB Aggregates
## 25 2022-09-16 ARB Aggregates
## 26 2022-09-16 ARB Aggregates
## 27 2022-09-16 ARB Aggregates
## 28 2022-09-16 ARB Aggregates
## 29 2022-09-16 ARB Aggregates
## 30 2022-09-16 ARB Aggregates
## 31 2022-09-16 ARB Aggregates
## 32 2022-09-16 ARB Aggregates
## 33 2022-09-16 ARB Aggregates
## 34 2022-09-16 ARB Aggregates
## 35 2022-09-16 ARB Aggregates
## 36 2022-09-16 ARB Aggregates
## 37 2022-09-16 ARB Aggregates
## 38 2022-09-16 ARB Aggregates
## 39 2022-09-16 ARB Aggregates
## 40 2022-09-16 ARB Aggregates
## 41 2022-09-16 ARB Aggregates
## 42 2022-09-16 ARB Aggregates
## 43 2022-09-16 ARB Aggregates
## 44 2022-09-16 ARB Aggregates
## 45 2022-09-16 ARB Aggregates
## 46 2022-09-16 ARB Aggregates
## 47 2022-09-16 ARB Aggregates
## 48 2022-09-16 ARB Aggregates
## 49 2022-09-16 ARB Aggregates
## 50 2022-09-16 ARB Aggregates
## 51 2022-09-16 ARB Aggregates
## 52 2022-09-16 ARB Aggregates
## 53 2022-09-16 ARB Aggregates
## 54 2022-09-16 ARB Aggregates
## 55 2022-09-16 ARB Aggregates
## 56 2022-09-16 ARB Aggregates
## 57 2022-09-16 ARB Aggregates
## 58 2022-09-16 ARB Aggregates
## 59 2022-09-16 ARB Aggregates
## 60 2022-09-16 ARB Aggregates
## 61 2022-09-16 ARB Aggregates
## 62 2022-09-16 ARB Aggregates
## 63 2022-09-16 WLD Aggregates
## 64 2022-09-16 WLD Aggregates
## 65 2022-09-16 WLD Aggregates
## 66 2022-09-16 WLD Aggregates
## 67 2022-09-16 WLD Aggregates
## 68 2022-09-16 WLD Aggregates
## 69 2022-09-16 WLD Aggregates
## 70 2022-09-16 WLD Aggregates
## 71 2022-09-16 WLD Aggregates
## 72 2022-09-16 WLD Aggregates
## 73 2022-09-16 WLD Aggregates
## 74 2022-09-16 WLD Aggregates
## 75 2022-09-16 WLD Aggregates
## 76 2022-09-16 WLD Aggregates
## 77 2022-09-16 WLD Aggregates
## 78 2022-09-16 WLD Aggregates
## 79 2022-09-16 WLD Aggregates
## 80 2022-09-16 WLD Aggregates
## 81 2022-09-16 WLD Aggregates
## 82 2022-09-16 WLD Aggregates
## 83 2022-09-16 WLD Aggregates
## 84 2022-09-16 WLD Aggregates
## 85 2022-09-16 WLD Aggregates
## 86 2022-09-16 WLD Aggregates
## 87 2022-09-16 WLD Aggregates
## 88 2022-09-16 WLD Aggregates
## 89 2022-09-16 WLD Aggregates
## 90 2022-09-16 WLD Aggregates
## 91 2022-09-16 WLD Aggregates
## 92 2022-09-16 WLD Aggregates
## 93 2022-09-16 WLD Aggregates
## 94 2022-09-16 WLD Aggregates
## 95 2022-09-16 WLD Aggregates
## 96 2022-09-16 WLD Aggregates
## 97 2022-09-16 WLD Aggregates
## 98 2022-09-16 WLD Aggregates
## 99 2022-09-16 WLD Aggregates
## 100 2022-09-16 WLD Aggregates
## 101 2022-09-16 WLD Aggregates
## 102 2022-09-16 WLD Aggregates
## 103 2022-09-16 WLD Aggregates
## 104 2022-09-16 WLD Aggregates
## 105 2022-09-16 WLD Aggregates
## 106 2022-09-16 WLD Aggregates
## 107 2022-09-16 WLD Aggregates
## 108 2022-09-16 WLD Aggregates
## 109 2022-09-16 WLD Aggregates
## 110 2022-09-16 WLD Aggregates
## 111 2022-09-16 WLD Aggregates
## 112 2022-09-16 WLD Aggregates
## 113 2022-09-16 WLD Aggregates
## 114 2022-09-16 WLD Aggregates
## 115 2022-09-16 WLD Aggregates
## 116 2022-09-16 WLD Aggregates
## 117 2022-09-16 WLD Aggregates
## 118 2022-09-16 WLD Aggregates
## 119 2022-09-16 WLD Aggregates
## 120 2022-09-16 WLD Aggregates
## 121 2022-09-16 WLD Aggregates
## 122 2022-09-16 WLD Aggregates
## 123 2022-09-16 WLD Aggregates
## 124 2022-09-16 WLD Aggregates
## 125 2022-09-16 EAP Aggregates
## 126 2022-09-16 EAP Aggregates
## 127 2022-09-16 EAP Aggregates
## 128 2022-09-16 EAP Aggregates
## 129 2022-09-16 EAP Aggregates
## 130 2022-09-16 EAP Aggregates
## 131 2022-09-16 EAP Aggregates
## 132 2022-09-16 EAP Aggregates
## 133 2022-09-16 EAP Aggregates
## 134 2022-09-16 EAP Aggregates
## 135 2022-09-16 EAP Aggregates
## 136 2022-09-16 EAP Aggregates
## 137 2022-09-16 EAP Aggregates
## 138 2022-09-16 EAP Aggregates
## 139 2022-09-16 EAP Aggregates
## 140 2022-09-16 EAP Aggregates
## 141 2022-09-16 EAP Aggregates
## 142 2022-09-16 EAP Aggregates
## 143 2022-09-16 EAP Aggregates
## 144 2022-09-16 EAP Aggregates
## 145 2022-09-16 EAP Aggregates
## 146 2022-09-16 EAP Aggregates
## 147 2022-09-16 EAP Aggregates
## 148 2022-09-16 EAP Aggregates
## 149 2022-09-16 EAP Aggregates
## 150 2022-09-16 EAP Aggregates
## 151 2022-09-16 EAP Aggregates
## 152 2022-09-16 EAP Aggregates
## 153 2022-09-16 EAP Aggregates
## 154 2022-09-16 EAP Aggregates
## 155 2022-09-16 EAP Aggregates
## 156 2022-09-16 EAP Aggregates
## 157 2022-09-16 EAP Aggregates
## 158 2022-09-16 EAP Aggregates
## 159 2022-09-16 EAP Aggregates
## 160 2022-09-16 EAP Aggregates
## 161 2022-09-16 EAP Aggregates
## 162 2022-09-16 EAP Aggregates
## 163 2022-09-16 EAP Aggregates
## 164 2022-09-16 EAP Aggregates
## 165 2022-09-16 EAP Aggregates
## 166 2022-09-16 EAP Aggregates
## 167 2022-09-16 EAP Aggregates
## 168 2022-09-16 EAP Aggregates
## 169 2022-09-16 EAP Aggregates
## 170 2022-09-16 EAP Aggregates
## 171 2022-09-16 EAP Aggregates
## 172 2022-09-16 EAP Aggregates
## 173 2022-09-16 EAP Aggregates
## 174 2022-09-16 EAP Aggregates
## 175 2022-09-16 EAP Aggregates
## 176 2022-09-16 EAP Aggregates
## 177 2022-09-16 EAP Aggregates
## 178 2022-09-16 EAP Aggregates
## 179 2022-09-16 EAP Aggregates
## 180 2022-09-16 EAP Aggregates
## 181 2022-09-16 EAP Aggregates
## 182 2022-09-16 EAP Aggregates
## 183 2022-09-16 EAP Aggregates
## 184 2022-09-16 EAP Aggregates
## 185 2022-09-16 EAP Aggregates
## 186 2022-09-16 EAP Aggregates
## 187 2022-09-16 ECA Aggregates
## 188 2022-09-16 ECA Aggregates
## 189 2022-09-16 ECA Aggregates
## 190 2022-09-16 ECA Aggregates
## 191 2022-09-16 ECA Aggregates
## 192 2022-09-16 ECA Aggregates
## 193 2022-09-16 ECA Aggregates
## 194 2022-09-16 ECA Aggregates
## 195 2022-09-16 ECA Aggregates
## 196 2022-09-16 ECA Aggregates
## 197 2022-09-16 ECA Aggregates
## 198 2022-09-16 ECA Aggregates
## 199 2022-09-16 ECA Aggregates
## 200 2022-09-16 ECA Aggregates
## 201 2022-09-16 ECA Aggregates
## 202 2022-09-16 ECA Aggregates
## 203 2022-09-16 ECA Aggregates
## 204 2022-09-16 ECA Aggregates
## 205 2022-09-16 ECA Aggregates
## 206 2022-09-16 ECA Aggregates
## 207 2022-09-16 ECA Aggregates
## 208 2022-09-16 ECA Aggregates
## 209 2022-09-16 ECA Aggregates
## 210 2022-09-16 ECA Aggregates
## 211 2022-09-16 ECA Aggregates
## 212 2022-09-16 ECA Aggregates
## 213 2022-09-16 ECA Aggregates
## 214 2022-09-16 ECA Aggregates
## 215 2022-09-16 ECA Aggregates
## 216 2022-09-16 ECA Aggregates
## 217 2022-09-16 ECA Aggregates
## 218 2022-09-16 ECA Aggregates
## 219 2022-09-16 ECA Aggregates
## 220 2022-09-16 ECA Aggregates
## 221 2022-09-16 ECA Aggregates
## 222 2022-09-16 ECA Aggregates
## 223 2022-09-16 ECA Aggregates
## 224 2022-09-16 ECA Aggregates
## 225 2022-09-16 ECA Aggregates
## 226 2022-09-16 ECA Aggregates
## 227 2022-09-16 ECA Aggregates
## 228 2022-09-16 ECA Aggregates
## 229 2022-09-16 ECA Aggregates
## 230 2022-09-16 ECA Aggregates
## 231 2022-09-16 ECA Aggregates
## 232 2022-09-16 ECA Aggregates
## 233 2022-09-16 ECA Aggregates
## 234 2022-09-16 ECA Aggregates
## 235 2022-09-16 ECA Aggregates
## 236 2022-09-16 ECA Aggregates
## 237 2022-09-16 ECA Aggregates
## 238 2022-09-16 ECA Aggregates
## 239 2022-09-16 ECA Aggregates
## 240 2022-09-16 ECA Aggregates
## 241 2022-09-16 ECA Aggregates
## 242 2022-09-16 ECA Aggregates
## 243 2022-09-16 ECA Aggregates
## 244 2022-09-16 ECA Aggregates
## 245 2022-09-16 ECA Aggregates
## 246 2022-09-16 ECA Aggregates
## 247 2022-09-16 ECA Aggregates
## 248 2022-09-16 ECA Aggregates
## 249 2022-09-16 SAS Aggregates
## 250 2022-09-16 SAS Aggregates
## 251 2022-09-16 SAS Aggregates
## 252 2022-09-16 SAS Aggregates
## 253 2022-09-16 SAS Aggregates
## 254 2022-09-16 SAS Aggregates
## 255 2022-09-16 SAS Aggregates
## 256 2022-09-16 SAS Aggregates
## 257 2022-09-16 SAS Aggregates
## 258 2022-09-16 SAS Aggregates
## 259 2022-09-16 SAS Aggregates
## 260 2022-09-16 SAS Aggregates
## 261 2022-09-16 SAS Aggregates
## 262 2022-09-16 SAS Aggregates
## 263 2022-09-16 SAS Aggregates
## 264 2022-09-16 SAS Aggregates
## 265 2022-09-16 SAS Aggregates
## 266 2022-09-16 SAS Aggregates
## 267 2022-09-16 SAS Aggregates
## 268 2022-09-16 SAS Aggregates
## 269 2022-09-16 SAS Aggregates
## 270 2022-09-16 SAS Aggregates
## 271 2022-09-16 SAS Aggregates
## 272 2022-09-16 SAS Aggregates
## 273 2022-09-16 SAS Aggregates
## 274 2022-09-16 SAS Aggregates
## 275 2022-09-16 SAS Aggregates
## 276 2022-09-16 SAS Aggregates
## 277 2022-09-16 SAS Aggregates
## 278 2022-09-16 SAS Aggregates
## 279 2022-09-16 SAS Aggregates
## 280 2022-09-16 SAS Aggregates
## 281 2022-09-16 SAS Aggregates
## 282 2022-09-16 SAS Aggregates
## 283 2022-09-16 SAS Aggregates
## 284 2022-09-16 SAS Aggregates
## 285 2022-09-16 SAS Aggregates
## 286 2022-09-16 SAS Aggregates
## 287 2022-09-16 SAS Aggregates
## 288 2022-09-16 SAS Aggregates
## 289 2022-09-16 SAS Aggregates
## 290 2022-09-16 SAS Aggregates
## 291 2022-09-16 SAS Aggregates
## 292 2022-09-16 SAS Aggregates
## 293 2022-09-16 SAS Aggregates
## 294 2022-09-16 SAS Aggregates
## 295 2022-09-16 SAS Aggregates
## 296 2022-09-16 SAS Aggregates
## 297 2022-09-16 SAS Aggregates
## 298 2022-09-16 SAS Aggregates
## 299 2022-09-16 SAS Aggregates
## 300 2022-09-16 SAS Aggregates
## 301 2022-09-16 SAS Aggregates
## 302 2022-09-16 SAS Aggregates
## 303 2022-09-16 SAS Aggregates
## 304 2022-09-16 SAS Aggregates
## 305 2022-09-16 SAS Aggregates
## 306 2022-09-16 SAS Aggregates
## 307 2022-09-16 SAS Aggregates
## 308 2022-09-16 SAS Aggregates
## 309 2022-09-16 SAS Aggregates
## 310 2022-09-16 SAS Aggregates
## 311 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 312 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 313 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 314 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 315 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 316 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 317 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 318 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 319 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 320 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 321 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 322 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 323 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 324 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 325 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 326 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 327 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 328 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 329 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 330 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 331 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 332 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 333 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 334 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 335 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 336 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 337 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 338 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 339 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 340 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 341 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 342 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 343 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 344 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 345 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 346 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 347 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 348 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 349 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 350 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 351 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 352 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 353 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 354 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 355 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 356 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 357 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 358 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 359 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 360 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 361 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 362 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 363 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 364 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 365 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 366 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 367 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 368 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 369 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 370 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 371 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 372 2022-09-16 AND Europe & Central Asia Andorra la Vella
## 373 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 374 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 375 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 376 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 377 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 378 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 379 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 380 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 381 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 382 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 383 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 384 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 385 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 386 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 387 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 388 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 389 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 390 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 391 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 392 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 393 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 394 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 395 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 396 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 397 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 398 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 399 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 400 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 401 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 402 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 403 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 404 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 405 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 406 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 407 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 408 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 409 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 410 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 411 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 412 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 413 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 414 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 415 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 416 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 417 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 418 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 419 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 420 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 421 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 422 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 423 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 424 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 425 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 426 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 427 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 428 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 429 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 430 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 431 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 432 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 433 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 434 2022-09-16 ARE Middle East & North Africa Abu Dhabi
## 435 2022-09-16 AFG South Asia Kabul
## 436 2022-09-16 AFG South Asia Kabul
## 437 2022-09-16 AFG South Asia Kabul
## 438 2022-09-16 AFG South Asia Kabul
## 439 2022-09-16 AFG South Asia Kabul
## 440 2022-09-16 AFG South Asia Kabul
## 441 2022-09-16 AFG South Asia Kabul
## 442 2022-09-16 AFG South Asia Kabul
## 443 2022-09-16 AFG South Asia Kabul
## 444 2022-09-16 AFG South Asia Kabul
## 445 2022-09-16 AFG South Asia Kabul
## 446 2022-09-16 AFG South Asia Kabul
## 447 2022-09-16 AFG South Asia Kabul
## 448 2022-09-16 AFG South Asia Kabul
## 449 2022-09-16 AFG South Asia Kabul
## 450 2022-09-16 AFG South Asia Kabul
## 451 2022-09-16 AFG South Asia Kabul
## 452 2022-09-16 AFG South Asia Kabul
## 453 2022-09-16 AFG South Asia Kabul
## 454 2022-09-16 AFG South Asia Kabul
## 455 2022-09-16 AFG South Asia Kabul
## 456 2022-09-16 AFG South Asia Kabul
## 457 2022-09-16 AFG South Asia Kabul
## 458 2022-09-16 AFG South Asia Kabul
## 459 2022-09-16 AFG South Asia Kabul
## 460 2022-09-16 AFG South Asia Kabul
## 461 2022-09-16 AFG South Asia Kabul
## 462 2022-09-16 AFG South Asia Kabul
## 463 2022-09-16 AFG South Asia Kabul
## 464 2022-09-16 AFG South Asia Kabul
## 465 2022-09-16 AFG South Asia Kabul
## 466 2022-09-16 AFG South Asia Kabul
## 467 2022-09-16 AFG South Asia Kabul
## 468 2022-09-16 AFG South Asia Kabul
## 469 2022-09-16 AFG South Asia Kabul
## 470 2022-09-16 AFG South Asia Kabul
## 471 2022-09-16 AFG South Asia Kabul
## 472 2022-09-16 AFG South Asia Kabul
## 473 2022-09-16 AFG South Asia Kabul
## 474 2022-09-16 AFG South Asia Kabul
## 475 2022-09-16 AFG South Asia Kabul
## 476 2022-09-16 AFG South Asia Kabul
## 477 2022-09-16 AFG South Asia Kabul
## 478 2022-09-16 AFG South Asia Kabul
## 479 2022-09-16 AFG South Asia Kabul
## 480 2022-09-16 AFG South Asia Kabul
## 481 2022-09-16 AFG South Asia Kabul
## 482 2022-09-16 AFG South Asia Kabul
## 483 2022-09-16 AFG South Asia Kabul
## 484 2022-09-16 AFG South Asia Kabul
## 485 2022-09-16 AFG South Asia Kabul
## 486 2022-09-16 AFG South Asia Kabul
## 487 2022-09-16 AFG South Asia Kabul
## 488 2022-09-16 AFG South Asia Kabul
## 489 2022-09-16 AFG South Asia Kabul
## 490 2022-09-16 AFG South Asia Kabul
## 491 2022-09-16 AFG South Asia Kabul
## 492 2022-09-16 AFG South Asia Kabul
## 493 2022-09-16 AFG South Asia Kabul
## 494 2022-09-16 AFG South Asia Kabul
## 495 2022-09-16 AFG South Asia Kabul
## 496 2022-09-16 AFG South Asia Kabul
## 497 2022-09-16 ATG Latin America & Caribbean Saint John's
## 498 2022-09-16 ATG Latin America & Caribbean Saint John's
## 499 2022-09-16 ATG Latin America & Caribbean Saint John's
## 500 2022-09-16 ATG Latin America & Caribbean Saint John's
## 501 2022-09-16 ATG Latin America & Caribbean Saint John's
## 502 2022-09-16 ATG Latin America & Caribbean Saint John's
## 503 2022-09-16 ATG Latin America & Caribbean Saint John's
## 504 2022-09-16 ATG Latin America & Caribbean Saint John's
## 505 2022-09-16 ATG Latin America & Caribbean Saint John's
## 506 2022-09-16 ATG Latin America & Caribbean Saint John's
## 507 2022-09-16 ATG Latin America & Caribbean Saint John's
## 508 2022-09-16 ATG Latin America & Caribbean Saint John's
## 509 2022-09-16 ATG Latin America & Caribbean Saint John's
## 510 2022-09-16 ATG Latin America & Caribbean Saint John's
## 511 2022-09-16 ATG Latin America & Caribbean Saint John's
## 512 2022-09-16 ATG Latin America & Caribbean Saint John's
## 513 2022-09-16 ATG Latin America & Caribbean Saint John's
## 514 2022-09-16 ATG Latin America & Caribbean Saint John's
## 515 2022-09-16 ATG Latin America & Caribbean Saint John's
## 516 2022-09-16 ATG Latin America & Caribbean Saint John's
## 517 2022-09-16 ATG Latin America & Caribbean Saint John's
## 518 2022-09-16 ATG Latin America & Caribbean Saint John's
## 519 2022-09-16 ATG Latin America & Caribbean Saint John's
## 520 2022-09-16 ATG Latin America & Caribbean Saint John's
## 521 2022-09-16 ATG Latin America & Caribbean Saint John's
## 522 2022-09-16 ATG Latin America & Caribbean Saint John's
## 523 2022-09-16 ATG Latin America & Caribbean Saint John's
## 524 2022-09-16 ATG Latin America & Caribbean Saint John's
## 525 2022-09-16 ATG Latin America & Caribbean Saint John's
## 526 2022-09-16 ATG Latin America & Caribbean Saint John's
## 527 2022-09-16 ATG Latin America & Caribbean Saint John's
## 528 2022-09-16 ATG Latin America & Caribbean Saint John's
## 529 2022-09-16 ATG Latin America & Caribbean Saint John's
## 530 2022-09-16 ATG Latin America & Caribbean Saint John's
## 531 2022-09-16 ATG Latin America & Caribbean Saint John's
## 532 2022-09-16 ATG Latin America & Caribbean Saint John's
## 533 2022-09-16 ATG Latin America & Caribbean Saint John's
## 534 2022-09-16 ATG Latin America & Caribbean Saint John's
## 535 2022-09-16 ATG Latin America & Caribbean Saint John's
## 536 2022-09-16 ATG Latin America & Caribbean Saint John's
## 537 2022-09-16 ATG Latin America & Caribbean Saint John's
## 538 2022-09-16 ATG Latin America & Caribbean Saint John's
## 539 2022-09-16 ATG Latin America & Caribbean Saint John's
## 540 2022-09-16 ATG Latin America & Caribbean Saint John's
## 541 2022-09-16 ATG Latin America & Caribbean Saint John's
## 542 2022-09-16 ATG Latin America & Caribbean Saint John's
## 543 2022-09-16 ATG Latin America & Caribbean Saint John's
## 544 2022-09-16 ATG Latin America & Caribbean Saint John's
## 545 2022-09-16 ATG Latin America & Caribbean Saint John's
## 546 2022-09-16 ATG Latin America & Caribbean Saint John's
## 547 2022-09-16 ATG Latin America & Caribbean Saint John's
## 548 2022-09-16 ATG Latin America & Caribbean Saint John's
## 549 2022-09-16 ATG Latin America & Caribbean Saint John's
## 550 2022-09-16 ATG Latin America & Caribbean Saint John's
## 551 2022-09-16 ATG Latin America & Caribbean Saint John's
## 552 2022-09-16 ATG Latin America & Caribbean Saint John's
## 553 2022-09-16 ATG Latin America & Caribbean Saint John's
## 554 2022-09-16 ATG Latin America & Caribbean Saint John's
## 555 2022-09-16 ATG Latin America & Caribbean Saint John's
## 556 2022-09-16 ATG Latin America & Caribbean Saint John's
## 557 2022-09-16 ATG Latin America & Caribbean Saint John's
## 558 2022-09-16 ATG Latin America & Caribbean Saint John's
## 559 2022-09-16 ALB Europe & Central Asia Tirane
## 560 2022-09-16 ALB Europe & Central Asia Tirane
## 561 2022-09-16 ALB Europe & Central Asia Tirane
## 562 2022-09-16 ALB Europe & Central Asia Tirane
## 563 2022-09-16 ALB Europe & Central Asia Tirane
## 564 2022-09-16 ALB Europe & Central Asia Tirane
## 565 2022-09-16 ALB Europe & Central Asia Tirane
## 566 2022-09-16 ALB Europe & Central Asia Tirane
## 567 2022-09-16 ALB Europe & Central Asia Tirane
## 568 2022-09-16 ALB Europe & Central Asia Tirane
## 569 2022-09-16 ALB Europe & Central Asia Tirane
## 570 2022-09-16 ALB Europe & Central Asia Tirane
## 571 2022-09-16 ALB Europe & Central Asia Tirane
## 572 2022-09-16 ALB Europe & Central Asia Tirane
## 573 2022-09-16 ALB Europe & Central Asia Tirane
## 574 2022-09-16 ALB Europe & Central Asia Tirane
## 575 2022-09-16 ALB Europe & Central Asia Tirane
## 576 2022-09-16 ALB Europe & Central Asia Tirane
## 577 2022-09-16 ALB Europe & Central Asia Tirane
## 578 2022-09-16 ALB Europe & Central Asia Tirane
## 579 2022-09-16 ALB Europe & Central Asia Tirane
## 580 2022-09-16 ALB Europe & Central Asia Tirane
## 581 2022-09-16 ALB Europe & Central Asia Tirane
## 582 2022-09-16 ALB Europe & Central Asia Tirane
## 583 2022-09-16 ALB Europe & Central Asia Tirane
## 584 2022-09-16 ALB Europe & Central Asia Tirane
## 585 2022-09-16 ALB Europe & Central Asia Tirane
## 586 2022-09-16 ALB Europe & Central Asia Tirane
## 587 2022-09-16 ALB Europe & Central Asia Tirane
## 588 2022-09-16 ALB Europe & Central Asia Tirane
## 589 2022-09-16 ALB Europe & Central Asia Tirane
## 590 2022-09-16 ALB Europe & Central Asia Tirane
## 591 2022-09-16 ALB Europe & Central Asia Tirane
## 592 2022-09-16 ALB Europe & Central Asia Tirane
## 593 2022-09-16 ALB Europe & Central Asia Tirane
## 594 2022-09-16 ALB Europe & Central Asia Tirane
## 595 2022-09-16 ALB Europe & Central Asia Tirane
## 596 2022-09-16 ALB Europe & Central Asia Tirane
## 597 2022-09-16 ALB Europe & Central Asia Tirane
## 598 2022-09-16 ALB Europe & Central Asia Tirane
## 599 2022-09-16 ALB Europe & Central Asia Tirane
## 600 2022-09-16 ALB Europe & Central Asia Tirane
## 601 2022-09-16 ALB Europe & Central Asia Tirane
## 602 2022-09-16 ALB Europe & Central Asia Tirane
## 603 2022-09-16 ALB Europe & Central Asia Tirane
## 604 2022-09-16 ALB Europe & Central Asia Tirane
## 605 2022-09-16 ALB Europe & Central Asia Tirane
## 606 2022-09-16 ALB Europe & Central Asia Tirane
## 607 2022-09-16 ALB Europe & Central Asia Tirane
## 608 2022-09-16 ALB Europe & Central Asia Tirane
## 609 2022-09-16 ALB Europe & Central Asia Tirane
## 610 2022-09-16 ALB Europe & Central Asia Tirane
## 611 2022-09-16 ALB Europe & Central Asia Tirane
## 612 2022-09-16 ALB Europe & Central Asia Tirane
## 613 2022-09-16 ALB Europe & Central Asia Tirane
## 614 2022-09-16 ALB Europe & Central Asia Tirane
## 615 2022-09-16 ALB Europe & Central Asia Tirane
## 616 2022-09-16 ALB Europe & Central Asia Tirane
## 617 2022-09-16 ALB Europe & Central Asia Tirane
## 618 2022-09-16 ALB Europe & Central Asia Tirane
## 619 2022-09-16 ALB Europe & Central Asia Tirane
## 620 2022-09-16 ALB Europe & Central Asia Tirane
## 621 2022-09-16 ARM Europe & Central Asia Yerevan
## 622 2022-09-16 ARM Europe & Central Asia Yerevan
## 623 2022-09-16 ARM Europe & Central Asia Yerevan
## 624 2022-09-16 ARM Europe & Central Asia Yerevan
## 625 2022-09-16 ARM Europe & Central Asia Yerevan
## 626 2022-09-16 ARM Europe & Central Asia Yerevan
## 627 2022-09-16 ARM Europe & Central Asia Yerevan
## 628 2022-09-16 ARM Europe & Central Asia Yerevan
## 629 2022-09-16 ARM Europe & Central Asia Yerevan
## 630 2022-09-16 ARM Europe & Central Asia Yerevan
## 631 2022-09-16 ARM Europe & Central Asia Yerevan
## 632 2022-09-16 ARM Europe & Central Asia Yerevan
## 633 2022-09-16 ARM Europe & Central Asia Yerevan
## 634 2022-09-16 ARM Europe & Central Asia Yerevan
## 635 2022-09-16 ARM Europe & Central Asia Yerevan
## 636 2022-09-16 ARM Europe & Central Asia Yerevan
## 637 2022-09-16 ARM Europe & Central Asia Yerevan
## 638 2022-09-16 ARM Europe & Central Asia Yerevan
## 639 2022-09-16 ARM Europe & Central Asia Yerevan
## 640 2022-09-16 ARM Europe & Central Asia Yerevan
## 641 2022-09-16 ARM Europe & Central Asia Yerevan
## 642 2022-09-16 ARM Europe & Central Asia Yerevan
## 643 2022-09-16 ARM Europe & Central Asia Yerevan
## 644 2022-09-16 ARM Europe & Central Asia Yerevan
## 645 2022-09-16 ARM Europe & Central Asia Yerevan
## 646 2022-09-16 ARM Europe & Central Asia Yerevan
## 647 2022-09-16 ARM Europe & Central Asia Yerevan
## 648 2022-09-16 ARM Europe & Central Asia Yerevan
## 649 2022-09-16 ARM Europe & Central Asia Yerevan
## 650 2022-09-16 ARM Europe & Central Asia Yerevan
## 651 2022-09-16 ARM Europe & Central Asia Yerevan
## 652 2022-09-16 ARM Europe & Central Asia Yerevan
## 653 2022-09-16 ARM Europe & Central Asia Yerevan
## 654 2022-09-16 ARM Europe & Central Asia Yerevan
## 655 2022-09-16 ARM Europe & Central Asia Yerevan
## 656 2022-09-16 ARM Europe & Central Asia Yerevan
## 657 2022-09-16 ARM Europe & Central Asia Yerevan
## 658 2022-09-16 ARM Europe & Central Asia Yerevan
## 659 2022-09-16 ARM Europe & Central Asia Yerevan
## 660 2022-09-16 ARM Europe & Central Asia Yerevan
## 661 2022-09-16 ARM Europe & Central Asia Yerevan
## 662 2022-09-16 ARM Europe & Central Asia Yerevan
## 663 2022-09-16 ARM Europe & Central Asia Yerevan
## 664 2022-09-16 ARM Europe & Central Asia Yerevan
## 665 2022-09-16 ARM Europe & Central Asia Yerevan
## 666 2022-09-16 ARM Europe & Central Asia Yerevan
## 667 2022-09-16 ARM Europe & Central Asia Yerevan
## 668 2022-09-16 ARM Europe & Central Asia Yerevan
## 669 2022-09-16 ARM Europe & Central Asia Yerevan
## 670 2022-09-16 ARM Europe & Central Asia Yerevan
## 671 2022-09-16 ARM Europe & Central Asia Yerevan
## 672 2022-09-16 ARM Europe & Central Asia Yerevan
## 673 2022-09-16 ARM Europe & Central Asia Yerevan
## 674 2022-09-16 ARM Europe & Central Asia Yerevan
## 675 2022-09-16 ARM Europe & Central Asia Yerevan
## 676 2022-09-16 ARM Europe & Central Asia Yerevan
## 677 2022-09-16 ARM Europe & Central Asia Yerevan
## 678 2022-09-16 ARM Europe & Central Asia Yerevan
## 679 2022-09-16 ARM Europe & Central Asia Yerevan
## 680 2022-09-16 ARM Europe & Central Asia Yerevan
## 681 2022-09-16 ARM Europe & Central Asia Yerevan
## 682 2022-09-16 ARM Europe & Central Asia Yerevan
## 683 2022-09-16 AGO Sub-Saharan Africa Luanda
## 684 2022-09-16 AGO Sub-Saharan Africa Luanda
## 685 2022-09-16 AGO Sub-Saharan Africa Luanda
## 686 2022-09-16 AGO Sub-Saharan Africa Luanda
## 687 2022-09-16 AGO Sub-Saharan Africa Luanda
## 688 2022-09-16 AGO Sub-Saharan Africa Luanda
## 689 2022-09-16 AGO Sub-Saharan Africa Luanda
## 690 2022-09-16 AGO Sub-Saharan Africa Luanda
## 691 2022-09-16 AGO Sub-Saharan Africa Luanda
## 692 2022-09-16 AGO Sub-Saharan Africa Luanda
## 693 2022-09-16 AGO Sub-Saharan Africa Luanda
## 694 2022-09-16 AGO Sub-Saharan Africa Luanda
## 695 2022-09-16 AGO Sub-Saharan Africa Luanda
## 696 2022-09-16 AGO Sub-Saharan Africa Luanda
## 697 2022-09-16 AGO Sub-Saharan Africa Luanda
## 698 2022-09-16 AGO Sub-Saharan Africa Luanda
## 699 2022-09-16 AGO Sub-Saharan Africa Luanda
## 700 2022-09-16 AGO Sub-Saharan Africa Luanda
## 701 2022-09-16 AGO Sub-Saharan Africa Luanda
## 702 2022-09-16 AGO Sub-Saharan Africa Luanda
## 703 2022-09-16 AGO Sub-Saharan Africa Luanda
## 704 2022-09-16 AGO Sub-Saharan Africa Luanda
## 705 2022-09-16 AGO Sub-Saharan Africa Luanda
## 706 2022-09-16 AGO Sub-Saharan Africa Luanda
## 707 2022-09-16 AGO Sub-Saharan Africa Luanda
## 708 2022-09-16 AGO Sub-Saharan Africa Luanda
## 709 2022-09-16 AGO Sub-Saharan Africa Luanda
## 710 2022-09-16 AGO Sub-Saharan Africa Luanda
## 711 2022-09-16 AGO Sub-Saharan Africa Luanda
## 712 2022-09-16 AGO Sub-Saharan Africa Luanda
## 713 2022-09-16 AGO Sub-Saharan Africa Luanda
## 714 2022-09-16 AGO Sub-Saharan Africa Luanda
## 715 2022-09-16 AGO Sub-Saharan Africa Luanda
## 716 2022-09-16 AGO Sub-Saharan Africa Luanda
## 717 2022-09-16 AGO Sub-Saharan Africa Luanda
## 718 2022-09-16 AGO Sub-Saharan Africa Luanda
## 719 2022-09-16 AGO Sub-Saharan Africa Luanda
## 720 2022-09-16 AGO Sub-Saharan Africa Luanda
## 721 2022-09-16 AGO Sub-Saharan Africa Luanda
## 722 2022-09-16 AGO Sub-Saharan Africa Luanda
## 723 2022-09-16 AGO Sub-Saharan Africa Luanda
## 724 2022-09-16 AGO Sub-Saharan Africa Luanda
## 725 2022-09-16 AGO Sub-Saharan Africa Luanda
## 726 2022-09-16 AGO Sub-Saharan Africa Luanda
## 727 2022-09-16 AGO Sub-Saharan Africa Luanda
## 728 2022-09-16 AGO Sub-Saharan Africa Luanda
## 729 2022-09-16 AGO Sub-Saharan Africa Luanda
## 730 2022-09-16 AGO Sub-Saharan Africa Luanda
## 731 2022-09-16 AGO Sub-Saharan Africa Luanda
## 732 2022-09-16 AGO Sub-Saharan Africa Luanda
## 733 2022-09-16 AGO Sub-Saharan Africa Luanda
## 734 2022-09-16 AGO Sub-Saharan Africa Luanda
## 735 2022-09-16 AGO Sub-Saharan Africa Luanda
## 736 2022-09-16 AGO Sub-Saharan Africa Luanda
## 737 2022-09-16 AGO Sub-Saharan Africa Luanda
## 738 2022-09-16 AGO Sub-Saharan Africa Luanda
## 739 2022-09-16 AGO Sub-Saharan Africa Luanda
## 740 2022-09-16 AGO Sub-Saharan Africa Luanda
## 741 2022-09-16 AGO Sub-Saharan Africa Luanda
## 742 2022-09-16 AGO Sub-Saharan Africa Luanda
## 743 2022-09-16 AGO Sub-Saharan Africa Luanda
## 744 2022-09-16 AGO Sub-Saharan Africa Luanda
## 745 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 746 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 747 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 748 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 749 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 750 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 751 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 752 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 753 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 754 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 755 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 756 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 757 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 758 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 759 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 760 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 761 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 762 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 763 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 764 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 765 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 766 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 767 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 768 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 769 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 770 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 771 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 772 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 773 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 774 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 775 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 776 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 777 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 778 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 779 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 780 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 781 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 782 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 783 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 784 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 785 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 786 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 787 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 788 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 789 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 790 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 791 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 792 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 793 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 794 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 795 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 796 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 797 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 798 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 799 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 800 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 801 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 802 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 803 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 804 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 805 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 806 2022-09-16 ARG Latin America & Caribbean Buenos Aires
## 807 2022-09-16 ASM East Asia & Pacific Pago Pago
## 808 2022-09-16 ASM East Asia & Pacific Pago Pago
## 809 2022-09-16 ASM East Asia & Pacific Pago Pago
## 810 2022-09-16 ASM East Asia & Pacific Pago Pago
## 811 2022-09-16 ASM East Asia & Pacific Pago Pago
## 812 2022-09-16 ASM East Asia & Pacific Pago Pago
## 813 2022-09-16 ASM East Asia & Pacific Pago Pago
## 814 2022-09-16 ASM East Asia & Pacific Pago Pago
## 815 2022-09-16 ASM East Asia & Pacific Pago Pago
## 816 2022-09-16 ASM East Asia & Pacific Pago Pago
## 817 2022-09-16 ASM East Asia & Pacific Pago Pago
## 818 2022-09-16 ASM East Asia & Pacific Pago Pago
## 819 2022-09-16 ASM East Asia & Pacific Pago Pago
## 820 2022-09-16 ASM East Asia & Pacific Pago Pago
## 821 2022-09-16 ASM East Asia & Pacific Pago Pago
## 822 2022-09-16 ASM East Asia & Pacific Pago Pago
## 823 2022-09-16 ASM East Asia & Pacific Pago Pago
## 824 2022-09-16 ASM East Asia & Pacific Pago Pago
## 825 2022-09-16 ASM East Asia & Pacific Pago Pago
## 826 2022-09-16 ASM East Asia & Pacific Pago Pago
## 827 2022-09-16 ASM East Asia & Pacific Pago Pago
## 828 2022-09-16 ASM East Asia & Pacific Pago Pago
## 829 2022-09-16 ASM East Asia & Pacific Pago Pago
## 830 2022-09-16 ASM East Asia & Pacific Pago Pago
## 831 2022-09-16 ASM East Asia & Pacific Pago Pago
## 832 2022-09-16 ASM East Asia & Pacific Pago Pago
## 833 2022-09-16 ASM East Asia & Pacific Pago Pago
## 834 2022-09-16 ASM East Asia & Pacific Pago Pago
## 835 2022-09-16 ASM East Asia & Pacific Pago Pago
## 836 2022-09-16 ASM East Asia & Pacific Pago Pago
## 837 2022-09-16 ASM East Asia & Pacific Pago Pago
## 838 2022-09-16 ASM East Asia & Pacific Pago Pago
## 839 2022-09-16 ASM East Asia & Pacific Pago Pago
## 840 2022-09-16 ASM East Asia & Pacific Pago Pago
## 841 2022-09-16 ASM East Asia & Pacific Pago Pago
## 842 2022-09-16 ASM East Asia & Pacific Pago Pago
## 843 2022-09-16 ASM East Asia & Pacific Pago Pago
## 844 2022-09-16 ASM East Asia & Pacific Pago Pago
## 845 2022-09-16 ASM East Asia & Pacific Pago Pago
## 846 2022-09-16 ASM East Asia & Pacific Pago Pago
## 847 2022-09-16 ASM East Asia & Pacific Pago Pago
## 848 2022-09-16 ASM East Asia & Pacific Pago Pago
## 849 2022-09-16 ASM East Asia & Pacific Pago Pago
## 850 2022-09-16 ASM East Asia & Pacific Pago Pago
## 851 2022-09-16 ASM East Asia & Pacific Pago Pago
## 852 2022-09-16 ASM East Asia & Pacific Pago Pago
## 853 2022-09-16 ASM East Asia & Pacific Pago Pago
## 854 2022-09-16 ASM East Asia & Pacific Pago Pago
## 855 2022-09-16 ASM East Asia & Pacific Pago Pago
## 856 2022-09-16 ASM East Asia & Pacific Pago Pago
## 857 2022-09-16 ASM East Asia & Pacific Pago Pago
## 858 2022-09-16 ASM East Asia & Pacific Pago Pago
## 859 2022-09-16 ASM East Asia & Pacific Pago Pago
## 860 2022-09-16 ASM East Asia & Pacific Pago Pago
## 861 2022-09-16 ASM East Asia & Pacific Pago Pago
## 862 2022-09-16 ASM East Asia & Pacific Pago Pago
## 863 2022-09-16 ASM East Asia & Pacific Pago Pago
## 864 2022-09-16 ASM East Asia & Pacific Pago Pago
## 865 2022-09-16 ASM East Asia & Pacific Pago Pago
## 866 2022-09-16 ASM East Asia & Pacific Pago Pago
## 867 2022-09-16 ASM East Asia & Pacific Pago Pago
## 868 2022-09-16 ASM East Asia & Pacific Pago Pago
## 869 2022-09-16 AUT Europe & Central Asia Vienna
## 870 2022-09-16 AUT Europe & Central Asia Vienna
## 871 2022-09-16 AUT Europe & Central Asia Vienna
## 872 2022-09-16 AUT Europe & Central Asia Vienna
## 873 2022-09-16 AUT Europe & Central Asia Vienna
## 874 2022-09-16 AUT Europe & Central Asia Vienna
## 875 2022-09-16 AUT Europe & Central Asia Vienna
## 876 2022-09-16 AUT Europe & Central Asia Vienna
## 877 2022-09-16 AUT Europe & Central Asia Vienna
## 878 2022-09-16 AUT Europe & Central Asia Vienna
## 879 2022-09-16 AUT Europe & Central Asia Vienna
## 880 2022-09-16 AUT Europe & Central Asia Vienna
## 881 2022-09-16 AUT Europe & Central Asia Vienna
## 882 2022-09-16 AUT Europe & Central Asia Vienna
## 883 2022-09-16 AUT Europe & Central Asia Vienna
## 884 2022-09-16 AUT Europe & Central Asia Vienna
## 885 2022-09-16 AUT Europe & Central Asia Vienna
## 886 2022-09-16 AUT Europe & Central Asia Vienna
## 887 2022-09-16 AUT Europe & Central Asia Vienna
## 888 2022-09-16 AUT Europe & Central Asia Vienna
## 889 2022-09-16 AUT Europe & Central Asia Vienna
## 890 2022-09-16 AUT Europe & Central Asia Vienna
## 891 2022-09-16 AUT Europe & Central Asia Vienna
## 892 2022-09-16 AUT Europe & Central Asia Vienna
## 893 2022-09-16 AUT Europe & Central Asia Vienna
## 894 2022-09-16 AUT Europe & Central Asia Vienna
## 895 2022-09-16 AUT Europe & Central Asia Vienna
## 896 2022-09-16 AUT Europe & Central Asia Vienna
## 897 2022-09-16 AUT Europe & Central Asia Vienna
## 898 2022-09-16 AUT Europe & Central Asia Vienna
## 899 2022-09-16 AUT Europe & Central Asia Vienna
## 900 2022-09-16 AUT Europe & Central Asia Vienna
## 901 2022-09-16 AUT Europe & Central Asia Vienna
## 902 2022-09-16 AUT Europe & Central Asia Vienna
## 903 2022-09-16 AUT Europe & Central Asia Vienna
## 904 2022-09-16 AUT Europe & Central Asia Vienna
## 905 2022-09-16 AUT Europe & Central Asia Vienna
## 906 2022-09-16 AUT Europe & Central Asia Vienna
## 907 2022-09-16 AUT Europe & Central Asia Vienna
## 908 2022-09-16 AUT Europe & Central Asia Vienna
## 909 2022-09-16 AUT Europe & Central Asia Vienna
## 910 2022-09-16 AUT Europe & Central Asia Vienna
## 911 2022-09-16 AUT Europe & Central Asia Vienna
## 912 2022-09-16 AUT Europe & Central Asia Vienna
## 913 2022-09-16 AUT Europe & Central Asia Vienna
## 914 2022-09-16 AUT Europe & Central Asia Vienna
## 915 2022-09-16 AUT Europe & Central Asia Vienna
## 916 2022-09-16 AUT Europe & Central Asia Vienna
## 917 2022-09-16 AUT Europe & Central Asia Vienna
## 918 2022-09-16 AUT Europe & Central Asia Vienna
## 919 2022-09-16 AUT Europe & Central Asia Vienna
## 920 2022-09-16 AUT Europe & Central Asia Vienna
## 921 2022-09-16 AUT Europe & Central Asia Vienna
## 922 2022-09-16 AUT Europe & Central Asia Vienna
## 923 2022-09-16 AUT Europe & Central Asia Vienna
## 924 2022-09-16 AUT Europe & Central Asia Vienna
## 925 2022-09-16 AUT Europe & Central Asia Vienna
## 926 2022-09-16 AUT Europe & Central Asia Vienna
## 927 2022-09-16 AUT Europe & Central Asia Vienna
## 928 2022-09-16 AUT Europe & Central Asia Vienna
## 929 2022-09-16 AUT Europe & Central Asia Vienna
## 930 2022-09-16 AUT Europe & Central Asia Vienna
## 931 2022-09-16 AUS East Asia & Pacific Canberra
## 932 2022-09-16 AUS East Asia & Pacific Canberra
## 933 2022-09-16 AUS East Asia & Pacific Canberra
## 934 2022-09-16 AUS East Asia & Pacific Canberra
## 935 2022-09-16 AUS East Asia & Pacific Canberra
## 936 2022-09-16 AUS East Asia & Pacific Canberra
## 937 2022-09-16 AUS East Asia & Pacific Canberra
## 938 2022-09-16 AUS East Asia & Pacific Canberra
## 939 2022-09-16 AUS East Asia & Pacific Canberra
## 940 2022-09-16 AUS East Asia & Pacific Canberra
## 941 2022-09-16 AUS East Asia & Pacific Canberra
## 942 2022-09-16 AUS East Asia & Pacific Canberra
## 943 2022-09-16 AUS East Asia & Pacific Canberra
## 944 2022-09-16 AUS East Asia & Pacific Canberra
## 945 2022-09-16 AUS East Asia & Pacific Canberra
## 946 2022-09-16 AUS East Asia & Pacific Canberra
## 947 2022-09-16 AUS East Asia & Pacific Canberra
## 948 2022-09-16 AUS East Asia & Pacific Canberra
## 949 2022-09-16 AUS East Asia & Pacific Canberra
## 950 2022-09-16 AUS East Asia & Pacific Canberra
## 951 2022-09-16 AUS East Asia & Pacific Canberra
## 952 2022-09-16 AUS East Asia & Pacific Canberra
## 953 2022-09-16 AUS East Asia & Pacific Canberra
## 954 2022-09-16 AUS East Asia & Pacific Canberra
## 955 2022-09-16 AUS East Asia & Pacific Canberra
## 956 2022-09-16 AUS East Asia & Pacific Canberra
## 957 2022-09-16 AUS East Asia & Pacific Canberra
## 958 2022-09-16 AUS East Asia & Pacific Canberra
## 959 2022-09-16 AUS East Asia & Pacific Canberra
## 960 2022-09-16 AUS East Asia & Pacific Canberra
## 961 2022-09-16 AUS East Asia & Pacific Canberra
## 962 2022-09-16 AUS East Asia & Pacific Canberra
## 963 2022-09-16 AUS East Asia & Pacific Canberra
## 964 2022-09-16 AUS East Asia & Pacific Canberra
## 965 2022-09-16 AUS East Asia & Pacific Canberra
## 966 2022-09-16 AUS East Asia & Pacific Canberra
## 967 2022-09-16 AUS East Asia & Pacific Canberra
## 968 2022-09-16 AUS East Asia & Pacific Canberra
## 969 2022-09-16 AUS East Asia & Pacific Canberra
## 970 2022-09-16 AUS East Asia & Pacific Canberra
## 971 2022-09-16 AUS East Asia & Pacific Canberra
## 972 2022-09-16 AUS East Asia & Pacific Canberra
## 973 2022-09-16 AUS East Asia & Pacific Canberra
## 974 2022-09-16 AUS East Asia & Pacific Canberra
## 975 2022-09-16 AUS East Asia & Pacific Canberra
## 976 2022-09-16 AUS East Asia & Pacific Canberra
## 977 2022-09-16 AUS East Asia & Pacific Canberra
## 978 2022-09-16 AUS East Asia & Pacific Canberra
## 979 2022-09-16 AUS East Asia & Pacific Canberra
## 980 2022-09-16 AUS East Asia & Pacific Canberra
## 981 2022-09-16 AUS East Asia & Pacific Canberra
## 982 2022-09-16 AUS East Asia & Pacific Canberra
## 983 2022-09-16 AUS East Asia & Pacific Canberra
## 984 2022-09-16 AUS East Asia & Pacific Canberra
## 985 2022-09-16 AUS East Asia & Pacific Canberra
## 986 2022-09-16 AUS East Asia & Pacific Canberra
## 987 2022-09-16 AUS East Asia & Pacific Canberra
## 988 2022-09-16 AUS East Asia & Pacific Canberra
## 989 2022-09-16 AUS East Asia & Pacific Canberra
## 990 2022-09-16 AUS East Asia & Pacific Canberra
## 991 2022-09-16 AUS East Asia & Pacific Canberra
## 992 2022-09-16 AUS East Asia & Pacific Canberra
## 993 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 994 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 995 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 996 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 997 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 998 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 999 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1000 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1001 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1002 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1003 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1004 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1005 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1006 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1007 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1008 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1009 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1010 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1011 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1012 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1013 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1014 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1015 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1016 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1017 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1018 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1019 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1020 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1021 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1022 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1023 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1024 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1025 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1026 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1027 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1028 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1029 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1030 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1031 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1032 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1033 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1034 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1035 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1036 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1037 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1038 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1039 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1040 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1041 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1042 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1043 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1044 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1045 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1046 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1047 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1048 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1049 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1050 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1051 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1052 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1053 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1054 2022-09-16 ABW Latin America & Caribbean Oranjestad
## 1055 2022-09-16 AZE Europe & Central Asia Baku
## 1056 2022-09-16 AZE Europe & Central Asia Baku
## 1057 2022-09-16 AZE Europe & Central Asia Baku
## 1058 2022-09-16 AZE Europe & Central Asia Baku
## 1059 2022-09-16 AZE Europe & Central Asia Baku
## 1060 2022-09-16 AZE Europe & Central Asia Baku
## 1061 2022-09-16 AZE Europe & Central Asia Baku
## 1062 2022-09-16 AZE Europe & Central Asia Baku
## 1063 2022-09-16 AZE Europe & Central Asia Baku
## 1064 2022-09-16 AZE Europe & Central Asia Baku
## 1065 2022-09-16 AZE Europe & Central Asia Baku
## 1066 2022-09-16 AZE Europe & Central Asia Baku
## 1067 2022-09-16 AZE Europe & Central Asia Baku
## 1068 2022-09-16 AZE Europe & Central Asia Baku
## 1069 2022-09-16 AZE Europe & Central Asia Baku
## 1070 2022-09-16 AZE Europe & Central Asia Baku
## 1071 2022-09-16 AZE Europe & Central Asia Baku
## 1072 2022-09-16 AZE Europe & Central Asia Baku
## 1073 2022-09-16 AZE Europe & Central Asia Baku
## 1074 2022-09-16 AZE Europe & Central Asia Baku
## 1075 2022-09-16 AZE Europe & Central Asia Baku
## 1076 2022-09-16 AZE Europe & Central Asia Baku
## 1077 2022-09-16 AZE Europe & Central Asia Baku
## 1078 2022-09-16 AZE Europe & Central Asia Baku
## 1079 2022-09-16 AZE Europe & Central Asia Baku
## 1080 2022-09-16 AZE Europe & Central Asia Baku
## 1081 2022-09-16 AZE Europe & Central Asia Baku
## 1082 2022-09-16 AZE Europe & Central Asia Baku
## 1083 2022-09-16 AZE Europe & Central Asia Baku
## 1084 2022-09-16 AZE Europe & Central Asia Baku
## 1085 2022-09-16 AZE Europe & Central Asia Baku
## 1086 2022-09-16 AZE Europe & Central Asia Baku
## 1087 2022-09-16 AZE Europe & Central Asia Baku
## 1088 2022-09-16 AZE Europe & Central Asia Baku
## 1089 2022-09-16 AZE Europe & Central Asia Baku
## 1090 2022-09-16 AZE Europe & Central Asia Baku
## 1091 2022-09-16 AZE Europe & Central Asia Baku
## 1092 2022-09-16 AZE Europe & Central Asia Baku
## 1093 2022-09-16 AZE Europe & Central Asia Baku
## 1094 2022-09-16 AZE Europe & Central Asia Baku
## 1095 2022-09-16 AZE Europe & Central Asia Baku
## 1096 2022-09-16 AZE Europe & Central Asia Baku
## 1097 2022-09-16 AZE Europe & Central Asia Baku
## 1098 2022-09-16 AZE Europe & Central Asia Baku
## 1099 2022-09-16 AZE Europe & Central Asia Baku
## 1100 2022-09-16 AZE Europe & Central Asia Baku
## 1101 2022-09-16 AZE Europe & Central Asia Baku
## 1102 2022-09-16 AZE Europe & Central Asia Baku
## 1103 2022-09-16 AZE Europe & Central Asia Baku
## 1104 2022-09-16 AZE Europe & Central Asia Baku
## 1105 2022-09-16 AZE Europe & Central Asia Baku
## 1106 2022-09-16 AZE Europe & Central Asia Baku
## 1107 2022-09-16 AZE Europe & Central Asia Baku
## 1108 2022-09-16 AZE Europe & Central Asia Baku
## 1109 2022-09-16 AZE Europe & Central Asia Baku
## 1110 2022-09-16 AZE Europe & Central Asia Baku
## 1111 2022-09-16 AZE Europe & Central Asia Baku
## 1112 2022-09-16 AZE Europe & Central Asia Baku
## 1113 2022-09-16 AZE Europe & Central Asia Baku
## 1114 2022-09-16 AZE Europe & Central Asia Baku
## 1115 2022-09-16 AZE Europe & Central Asia Baku
## 1116 2022-09-16 AZE Europe & Central Asia Baku
## 1117 2022-09-16 CEB Aggregates
## 1118 2022-09-16 CEB Aggregates
## 1119 2022-09-16 CEB Aggregates
## 1120 2022-09-16 CEB Aggregates
## 1121 2022-09-16 CEB Aggregates
## 1122 2022-09-16 CEB Aggregates
## 1123 2022-09-16 CEB Aggregates
## 1124 2022-09-16 CEB Aggregates
## 1125 2022-09-16 CEB Aggregates
## 1126 2022-09-16 CEB Aggregates
## 1127 2022-09-16 CEB Aggregates
## 1128 2022-09-16 CEB Aggregates
## 1129 2022-09-16 CEB Aggregates
## 1130 2022-09-16 CEB Aggregates
## 1131 2022-09-16 CEB Aggregates
## 1132 2022-09-16 CEB Aggregates
## 1133 2022-09-16 CEB Aggregates
## 1134 2022-09-16 CEB Aggregates
## 1135 2022-09-16 CEB Aggregates
## 1136 2022-09-16 CEB Aggregates
## 1137 2022-09-16 CEB Aggregates
## 1138 2022-09-16 CEB Aggregates
## 1139 2022-09-16 CEB Aggregates
## 1140 2022-09-16 CEB Aggregates
## 1141 2022-09-16 CEB Aggregates
## 1142 2022-09-16 CEB Aggregates
## 1143 2022-09-16 CEB Aggregates
## 1144 2022-09-16 CEB Aggregates
## 1145 2022-09-16 CEB Aggregates
## 1146 2022-09-16 CEB Aggregates
## 1147 2022-09-16 CEB Aggregates
## 1148 2022-09-16 CEB Aggregates
## 1149 2022-09-16 CEB Aggregates
## 1150 2022-09-16 CEB Aggregates
## 1151 2022-09-16 CEB Aggregates
## 1152 2022-09-16 CEB Aggregates
## 1153 2022-09-16 CEB Aggregates
## 1154 2022-09-16 CEB Aggregates
## 1155 2022-09-16 CEB Aggregates
## 1156 2022-09-16 CEB Aggregates
## 1157 2022-09-16 CEB Aggregates
## 1158 2022-09-16 CEB Aggregates
## 1159 2022-09-16 CEB Aggregates
## 1160 2022-09-16 CEB Aggregates
## 1161 2022-09-16 CEB Aggregates
## 1162 2022-09-16 CEB Aggregates
## 1163 2022-09-16 CEB Aggregates
## 1164 2022-09-16 CEB Aggregates
## 1165 2022-09-16 CEB Aggregates
## 1166 2022-09-16 CEB Aggregates
## 1167 2022-09-16 CEB Aggregates
## 1168 2022-09-16 CEB Aggregates
## 1169 2022-09-16 CEB Aggregates
## 1170 2022-09-16 CEB Aggregates
## 1171 2022-09-16 CEB Aggregates
## 1172 2022-09-16 CEB Aggregates
## 1173 2022-09-16 CEB Aggregates
## 1174 2022-09-16 CEB Aggregates
## 1175 2022-09-16 CEB Aggregates
## 1176 2022-09-16 CEB Aggregates
## 1177 2022-09-16 CEB Aggregates
## 1178 2022-09-16 CEB Aggregates
## 1179 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1180 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1181 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1182 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1183 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1184 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1185 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1186 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1187 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1188 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1189 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1190 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1191 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1192 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1193 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1194 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1195 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1196 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1197 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1198 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1199 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1200 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1201 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1202 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1203 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1204 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1205 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1206 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1207 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1208 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1209 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1210 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1211 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1212 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1213 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1214 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1215 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1216 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1217 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1218 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1219 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1220 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1221 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1222 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1223 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1224 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1225 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1226 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1227 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1228 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1229 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1230 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1231 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1232 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1233 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1234 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1235 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1236 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1237 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1238 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1239 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1240 2022-09-16 BIH Europe & Central Asia Sarajevo
## 1241 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1242 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1243 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1244 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1245 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1246 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1247 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1248 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1249 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1250 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1251 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1252 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1253 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1254 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1255 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1256 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1257 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1258 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1259 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1260 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1261 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1262 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1263 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1264 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1265 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1266 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1267 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1268 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1269 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1270 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1271 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1272 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1273 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1274 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1275 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1276 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1277 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1278 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1279 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1280 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1281 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1282 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1283 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1284 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1285 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1286 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1287 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1288 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1289 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1290 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1291 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1292 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1293 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1294 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1295 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1296 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1297 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1298 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1299 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1300 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1301 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1302 2022-09-16 BRB Latin America & Caribbean Bridgetown
## 1303 2022-09-16 BGD South Asia Dhaka
## 1304 2022-09-16 BGD South Asia Dhaka
## 1305 2022-09-16 BGD South Asia Dhaka
## 1306 2022-09-16 BGD South Asia Dhaka
## 1307 2022-09-16 BGD South Asia Dhaka
## 1308 2022-09-16 BGD South Asia Dhaka
## 1309 2022-09-16 BGD South Asia Dhaka
## 1310 2022-09-16 BGD South Asia Dhaka
## 1311 2022-09-16 BGD South Asia Dhaka
## 1312 2022-09-16 BGD South Asia Dhaka
## 1313 2022-09-16 BGD South Asia Dhaka
## 1314 2022-09-16 BGD South Asia Dhaka
## 1315 2022-09-16 BGD South Asia Dhaka
## 1316 2022-09-16 BGD South Asia Dhaka
## 1317 2022-09-16 BGD South Asia Dhaka
## 1318 2022-09-16 BGD South Asia Dhaka
## 1319 2022-09-16 BGD South Asia Dhaka
## 1320 2022-09-16 BGD South Asia Dhaka
## 1321 2022-09-16 BGD South Asia Dhaka
## 1322 2022-09-16 BGD South Asia Dhaka
## 1323 2022-09-16 BGD South Asia Dhaka
## 1324 2022-09-16 BGD South Asia Dhaka
## 1325 2022-09-16 BGD South Asia Dhaka
## 1326 2022-09-16 BGD South Asia Dhaka
## 1327 2022-09-16 BGD South Asia Dhaka
## 1328 2022-09-16 BGD South Asia Dhaka
## 1329 2022-09-16 BGD South Asia Dhaka
## 1330 2022-09-16 BGD South Asia Dhaka
## 1331 2022-09-16 BGD South Asia Dhaka
## 1332 2022-09-16 BGD South Asia Dhaka
## 1333 2022-09-16 BGD South Asia Dhaka
## 1334 2022-09-16 BGD South Asia Dhaka
## 1335 2022-09-16 BGD South Asia Dhaka
## 1336 2022-09-16 BGD South Asia Dhaka
## 1337 2022-09-16 BGD South Asia Dhaka
## 1338 2022-09-16 BGD South Asia Dhaka
## 1339 2022-09-16 BGD South Asia Dhaka
## 1340 2022-09-16 BGD South Asia Dhaka
## 1341 2022-09-16 BGD South Asia Dhaka
## 1342 2022-09-16 BGD South Asia Dhaka
## 1343 2022-09-16 BGD South Asia Dhaka
## 1344 2022-09-16 BGD South Asia Dhaka
## 1345 2022-09-16 BGD South Asia Dhaka
## 1346 2022-09-16 BGD South Asia Dhaka
## 1347 2022-09-16 BGD South Asia Dhaka
## 1348 2022-09-16 BGD South Asia Dhaka
## 1349 2022-09-16 BGD South Asia Dhaka
## 1350 2022-09-16 BGD South Asia Dhaka
## 1351 2022-09-16 BGD South Asia Dhaka
## 1352 2022-09-16 BGD South Asia Dhaka
## 1353 2022-09-16 BGD South Asia Dhaka
## 1354 2022-09-16 BGD South Asia Dhaka
## 1355 2022-09-16 BGD South Asia Dhaka
## 1356 2022-09-16 BGD South Asia Dhaka
## 1357 2022-09-16 BGD South Asia Dhaka
## 1358 2022-09-16 BGD South Asia Dhaka
## 1359 2022-09-16 BGD South Asia Dhaka
## 1360 2022-09-16 BGD South Asia Dhaka
## 1361 2022-09-16 BGD South Asia Dhaka
## 1362 2022-09-16 BGD South Asia Dhaka
## 1363 2022-09-16 BGD South Asia Dhaka
## 1364 2022-09-16 BGD South Asia Dhaka
## 1365 2022-09-16 BEL Europe & Central Asia Brussels
## 1366 2022-09-16 BEL Europe & Central Asia Brussels
## 1367 2022-09-16 BEL Europe & Central Asia Brussels
## 1368 2022-09-16 BEL Europe & Central Asia Brussels
## 1369 2022-09-16 BEL Europe & Central Asia Brussels
## 1370 2022-09-16 BEL Europe & Central Asia Brussels
## 1371 2022-09-16 BEL Europe & Central Asia Brussels
## 1372 2022-09-16 BEL Europe & Central Asia Brussels
## 1373 2022-09-16 BEL Europe & Central Asia Brussels
## 1374 2022-09-16 BEL Europe & Central Asia Brussels
## 1375 2022-09-16 BEL Europe & Central Asia Brussels
## 1376 2022-09-16 BEL Europe & Central Asia Brussels
## 1377 2022-09-16 BEL Europe & Central Asia Brussels
## 1378 2022-09-16 BEL Europe & Central Asia Brussels
## 1379 2022-09-16 BEL Europe & Central Asia Brussels
## 1380 2022-09-16 BEL Europe & Central Asia Brussels
## 1381 2022-09-16 BEL Europe & Central Asia Brussels
## 1382 2022-09-16 BEL Europe & Central Asia Brussels
## 1383 2022-09-16 BEL Europe & Central Asia Brussels
## 1384 2022-09-16 BEL Europe & Central Asia Brussels
## 1385 2022-09-16 BEL Europe & Central Asia Brussels
## 1386 2022-09-16 BEL Europe & Central Asia Brussels
## 1387 2022-09-16 BEL Europe & Central Asia Brussels
## 1388 2022-09-16 BEL Europe & Central Asia Brussels
## 1389 2022-09-16 BEL Europe & Central Asia Brussels
## 1390 2022-09-16 BEL Europe & Central Asia Brussels
## 1391 2022-09-16 BEL Europe & Central Asia Brussels
## 1392 2022-09-16 BEL Europe & Central Asia Brussels
## 1393 2022-09-16 BEL Europe & Central Asia Brussels
## 1394 2022-09-16 BEL Europe & Central Asia Brussels
## 1395 2022-09-16 BEL Europe & Central Asia Brussels
## 1396 2022-09-16 BEL Europe & Central Asia Brussels
## 1397 2022-09-16 BEL Europe & Central Asia Brussels
## 1398 2022-09-16 BEL Europe & Central Asia Brussels
## 1399 2022-09-16 BEL Europe & Central Asia Brussels
## 1400 2022-09-16 BEL Europe & Central Asia Brussels
## 1401 2022-09-16 BEL Europe & Central Asia Brussels
## 1402 2022-09-16 BEL Europe & Central Asia Brussels
## 1403 2022-09-16 BEL Europe & Central Asia Brussels
## 1404 2022-09-16 BEL Europe & Central Asia Brussels
## 1405 2022-09-16 BEL Europe & Central Asia Brussels
## 1406 2022-09-16 BEL Europe & Central Asia Brussels
## 1407 2022-09-16 BEL Europe & Central Asia Brussels
## 1408 2022-09-16 BEL Europe & Central Asia Brussels
## 1409 2022-09-16 BEL Europe & Central Asia Brussels
## 1410 2022-09-16 BEL Europe & Central Asia Brussels
## 1411 2022-09-16 BEL Europe & Central Asia Brussels
## 1412 2022-09-16 BEL Europe & Central Asia Brussels
## 1413 2022-09-16 BEL Europe & Central Asia Brussels
## 1414 2022-09-16 BEL Europe & Central Asia Brussels
## 1415 2022-09-16 BEL Europe & Central Asia Brussels
## 1416 2022-09-16 BEL Europe & Central Asia Brussels
## 1417 2022-09-16 BEL Europe & Central Asia Brussels
## 1418 2022-09-16 BEL Europe & Central Asia Brussels
## 1419 2022-09-16 BEL Europe & Central Asia Brussels
## 1420 2022-09-16 BEL Europe & Central Asia Brussels
## 1421 2022-09-16 BEL Europe & Central Asia Brussels
## 1422 2022-09-16 BEL Europe & Central Asia Brussels
## 1423 2022-09-16 BEL Europe & Central Asia Brussels
## 1424 2022-09-16 BEL Europe & Central Asia Brussels
## 1425 2022-09-16 BEL Europe & Central Asia Brussels
## 1426 2022-09-16 BEL Europe & Central Asia Brussels
## 1427 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1428 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1429 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1430 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1431 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1432 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1433 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1434 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1435 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1436 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1437 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1438 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1439 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1440 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1441 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1442 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1443 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1444 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1445 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1446 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1447 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1448 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1449 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1450 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1451 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1452 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1453 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1454 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1455 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1456 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1457 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1458 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1459 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1460 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1461 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1462 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1463 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1464 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1465 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1466 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1467 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1468 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1469 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1470 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1471 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1472 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1473 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1474 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1475 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1476 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1477 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1478 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1479 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1480 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1481 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1482 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1483 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1484 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1485 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1486 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1487 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1488 2022-09-16 BFA Sub-Saharan Africa Ouagadougou
## 1489 2022-09-16 BGR Europe & Central Asia Sofia
## 1490 2022-09-16 BGR Europe & Central Asia Sofia
## 1491 2022-09-16 BGR Europe & Central Asia Sofia
## 1492 2022-09-16 BGR Europe & Central Asia Sofia
## 1493 2022-09-16 BGR Europe & Central Asia Sofia
## 1494 2022-09-16 BGR Europe & Central Asia Sofia
## 1495 2022-09-16 BGR Europe & Central Asia Sofia
## 1496 2022-09-16 BGR Europe & Central Asia Sofia
## 1497 2022-09-16 BGR Europe & Central Asia Sofia
## 1498 2022-09-16 BGR Europe & Central Asia Sofia
## 1499 2022-09-16 BGR Europe & Central Asia Sofia
## 1500 2022-09-16 BGR Europe & Central Asia Sofia
## 1501 2022-09-16 BGR Europe & Central Asia Sofia
## 1502 2022-09-16 BGR Europe & Central Asia Sofia
## 1503 2022-09-16 BGR Europe & Central Asia Sofia
## 1504 2022-09-16 BGR Europe & Central Asia Sofia
## 1505 2022-09-16 BGR Europe & Central Asia Sofia
## 1506 2022-09-16 BGR Europe & Central Asia Sofia
## 1507 2022-09-16 BGR Europe & Central Asia Sofia
## 1508 2022-09-16 BGR Europe & Central Asia Sofia
## 1509 2022-09-16 BGR Europe & Central Asia Sofia
## 1510 2022-09-16 BGR Europe & Central Asia Sofia
## 1511 2022-09-16 BGR Europe & Central Asia Sofia
## 1512 2022-09-16 BGR Europe & Central Asia Sofia
## 1513 2022-09-16 BGR Europe & Central Asia Sofia
## 1514 2022-09-16 BGR Europe & Central Asia Sofia
## 1515 2022-09-16 BGR Europe & Central Asia Sofia
## 1516 2022-09-16 BGR Europe & Central Asia Sofia
## 1517 2022-09-16 BGR Europe & Central Asia Sofia
## 1518 2022-09-16 BGR Europe & Central Asia Sofia
## 1519 2022-09-16 BGR Europe & Central Asia Sofia
## 1520 2022-09-16 BGR Europe & Central Asia Sofia
## 1521 2022-09-16 BGR Europe & Central Asia Sofia
## 1522 2022-09-16 BGR Europe & Central Asia Sofia
## 1523 2022-09-16 BGR Europe & Central Asia Sofia
## 1524 2022-09-16 BGR Europe & Central Asia Sofia
## 1525 2022-09-16 BGR Europe & Central Asia Sofia
## 1526 2022-09-16 BGR Europe & Central Asia Sofia
## 1527 2022-09-16 BGR Europe & Central Asia Sofia
## 1528 2022-09-16 BGR Europe & Central Asia Sofia
## 1529 2022-09-16 BGR Europe & Central Asia Sofia
## 1530 2022-09-16 BGR Europe & Central Asia Sofia
## 1531 2022-09-16 BGR Europe & Central Asia Sofia
## 1532 2022-09-16 BGR Europe & Central Asia Sofia
## 1533 2022-09-16 BGR Europe & Central Asia Sofia
## 1534 2022-09-16 BGR Europe & Central Asia Sofia
## 1535 2022-09-16 BGR Europe & Central Asia Sofia
## 1536 2022-09-16 BGR Europe & Central Asia Sofia
## 1537 2022-09-16 BGR Europe & Central Asia Sofia
## 1538 2022-09-16 BGR Europe & Central Asia Sofia
## 1539 2022-09-16 BGR Europe & Central Asia Sofia
## 1540 2022-09-16 BGR Europe & Central Asia Sofia
## 1541 2022-09-16 BGR Europe & Central Asia Sofia
## 1542 2022-09-16 BGR Europe & Central Asia Sofia
## 1543 2022-09-16 BGR Europe & Central Asia Sofia
## 1544 2022-09-16 BGR Europe & Central Asia Sofia
## 1545 2022-09-16 BGR Europe & Central Asia Sofia
## 1546 2022-09-16 BGR Europe & Central Asia Sofia
## 1547 2022-09-16 BGR Europe & Central Asia Sofia
## 1548 2022-09-16 BGR Europe & Central Asia Sofia
## 1549 2022-09-16 BGR Europe & Central Asia Sofia
## 1550 2022-09-16 BGR Europe & Central Asia Sofia
## 1551 2022-09-16 BHR Middle East & North Africa Manama
## 1552 2022-09-16 BHR Middle East & North Africa Manama
## 1553 2022-09-16 BHR Middle East & North Africa Manama
## 1554 2022-09-16 BHR Middle East & North Africa Manama
## 1555 2022-09-16 BHR Middle East & North Africa Manama
## 1556 2022-09-16 BHR Middle East & North Africa Manama
## 1557 2022-09-16 BHR Middle East & North Africa Manama
## 1558 2022-09-16 BHR Middle East & North Africa Manama
## 1559 2022-09-16 BHR Middle East & North Africa Manama
## 1560 2022-09-16 BHR Middle East & North Africa Manama
## 1561 2022-09-16 BHR Middle East & North Africa Manama
## 1562 2022-09-16 BHR Middle East & North Africa Manama
## 1563 2022-09-16 BHR Middle East & North Africa Manama
## 1564 2022-09-16 BHR Middle East & North Africa Manama
## 1565 2022-09-16 BHR Middle East & North Africa Manama
## 1566 2022-09-16 BHR Middle East & North Africa Manama
## 1567 2022-09-16 BHR Middle East & North Africa Manama
## 1568 2022-09-16 BHR Middle East & North Africa Manama
## 1569 2022-09-16 BHR Middle East & North Africa Manama
## 1570 2022-09-16 BHR Middle East & North Africa Manama
## 1571 2022-09-16 BHR Middle East & North Africa Manama
## 1572 2022-09-16 BHR Middle East & North Africa Manama
## 1573 2022-09-16 BHR Middle East & North Africa Manama
## 1574 2022-09-16 BHR Middle East & North Africa Manama
## 1575 2022-09-16 BHR Middle East & North Africa Manama
## 1576 2022-09-16 BHR Middle East & North Africa Manama
## 1577 2022-09-16 BHR Middle East & North Africa Manama
## 1578 2022-09-16 BHR Middle East & North Africa Manama
## 1579 2022-09-16 BHR Middle East & North Africa Manama
## 1580 2022-09-16 BHR Middle East & North Africa Manama
## 1581 2022-09-16 BHR Middle East & North Africa Manama
## 1582 2022-09-16 BHR Middle East & North Africa Manama
## 1583 2022-09-16 BHR Middle East & North Africa Manama
## 1584 2022-09-16 BHR Middle East & North Africa Manama
## 1585 2022-09-16 BHR Middle East & North Africa Manama
## 1586 2022-09-16 BHR Middle East & North Africa Manama
## 1587 2022-09-16 BHR Middle East & North Africa Manama
## 1588 2022-09-16 BHR Middle East & North Africa Manama
## 1589 2022-09-16 BHR Middle East & North Africa Manama
## 1590 2022-09-16 BHR Middle East & North Africa Manama
## 1591 2022-09-16 BHR Middle East & North Africa Manama
## 1592 2022-09-16 BHR Middle East & North Africa Manama
## 1593 2022-09-16 BHR Middle East & North Africa Manama
## 1594 2022-09-16 BHR Middle East & North Africa Manama
## 1595 2022-09-16 BHR Middle East & North Africa Manama
## 1596 2022-09-16 BHR Middle East & North Africa Manama
## 1597 2022-09-16 BHR Middle East & North Africa Manama
## 1598 2022-09-16 BHR Middle East & North Africa Manama
## 1599 2022-09-16 BHR Middle East & North Africa Manama
## 1600 2022-09-16 BHR Middle East & North Africa Manama
## 1601 2022-09-16 BHR Middle East & North Africa Manama
## 1602 2022-09-16 BHR Middle East & North Africa Manama
## 1603 2022-09-16 BHR Middle East & North Africa Manama
## 1604 2022-09-16 BHR Middle East & North Africa Manama
## 1605 2022-09-16 BHR Middle East & North Africa Manama
## 1606 2022-09-16 BHR Middle East & North Africa Manama
## 1607 2022-09-16 BHR Middle East & North Africa Manama
## 1608 2022-09-16 BHR Middle East & North Africa Manama
## 1609 2022-09-16 BHR Middle East & North Africa Manama
## 1610 2022-09-16 BHR Middle East & North Africa Manama
## 1611 2022-09-16 BHR Middle East & North Africa Manama
## 1612 2022-09-16 BHR Middle East & North Africa Manama
## 1613 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1614 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1615 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1616 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1617 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1618 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1619 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1620 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1621 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1622 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1623 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1624 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1625 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1626 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1627 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1628 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1629 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1630 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1631 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1632 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1633 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1634 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1635 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1636 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1637 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1638 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1639 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1640 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1641 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1642 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1643 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1644 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1645 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1646 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1647 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1648 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1649 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1650 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1651 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1652 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1653 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1654 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1655 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1656 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1657 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1658 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1659 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1660 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1661 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1662 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1663 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1664 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1665 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1666 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1667 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1668 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1669 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1670 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1671 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1672 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1673 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1674 2022-09-16 BDI Sub-Saharan Africa Bujumbura
## 1675 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1676 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1677 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1678 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1679 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1680 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1681 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1682 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1683 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1684 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1685 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1686 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1687 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1688 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1689 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1690 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1691 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1692 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1693 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1694 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1695 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1696 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1697 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1698 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1699 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1700 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1701 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1702 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1703 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1704 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1705 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1706 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1707 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1708 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1709 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1710 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1711 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1712 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1713 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1714 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1715 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1716 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1717 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1718 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1719 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1720 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1721 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1722 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1723 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1724 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1725 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1726 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1727 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1728 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1729 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1730 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1731 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1732 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1733 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1734 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1735 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1736 2022-09-16 BEN Sub-Saharan Africa Porto-Novo
## 1737 2022-09-16 BMU North America Hamilton
## 1738 2022-09-16 BMU North America Hamilton
## 1739 2022-09-16 BMU North America Hamilton
## 1740 2022-09-16 BMU North America Hamilton
## 1741 2022-09-16 BMU North America Hamilton
## 1742 2022-09-16 BMU North America Hamilton
## 1743 2022-09-16 BMU North America Hamilton
## 1744 2022-09-16 BMU North America Hamilton
## 1745 2022-09-16 BMU North America Hamilton
## 1746 2022-09-16 BMU North America Hamilton
## 1747 2022-09-16 BMU North America Hamilton
## 1748 2022-09-16 BMU North America Hamilton
## 1749 2022-09-16 BMU North America Hamilton
## 1750 2022-09-16 BMU North America Hamilton
## 1751 2022-09-16 BMU North America Hamilton
## 1752 2022-09-16 BMU North America Hamilton
## 1753 2022-09-16 BMU North America Hamilton
## 1754 2022-09-16 BMU North America Hamilton
## 1755 2022-09-16 BMU North America Hamilton
## 1756 2022-09-16 BMU North America Hamilton
## 1757 2022-09-16 BMU North America Hamilton
## 1758 2022-09-16 BMU North America Hamilton
## 1759 2022-09-16 BMU North America Hamilton
## 1760 2022-09-16 BMU North America Hamilton
## 1761 2022-09-16 BMU North America Hamilton
## 1762 2022-09-16 BMU North America Hamilton
## 1763 2022-09-16 BMU North America Hamilton
## 1764 2022-09-16 BMU North America Hamilton
## 1765 2022-09-16 BMU North America Hamilton
## 1766 2022-09-16 BMU North America Hamilton
## 1767 2022-09-16 BMU North America Hamilton
## 1768 2022-09-16 BMU North America Hamilton
## 1769 2022-09-16 BMU North America Hamilton
## 1770 2022-09-16 BMU North America Hamilton
## 1771 2022-09-16 BMU North America Hamilton
## 1772 2022-09-16 BMU North America Hamilton
## 1773 2022-09-16 BMU North America Hamilton
## 1774 2022-09-16 BMU North America Hamilton
## 1775 2022-09-16 BMU North America Hamilton
## 1776 2022-09-16 BMU North America Hamilton
## 1777 2022-09-16 BMU North America Hamilton
## 1778 2022-09-16 BMU North America Hamilton
## 1779 2022-09-16 BMU North America Hamilton
## 1780 2022-09-16 BMU North America Hamilton
## 1781 2022-09-16 BMU North America Hamilton
## 1782 2022-09-16 BMU North America Hamilton
## 1783 2022-09-16 BMU North America Hamilton
## 1784 2022-09-16 BMU North America Hamilton
## 1785 2022-09-16 BMU North America Hamilton
## 1786 2022-09-16 BMU North America Hamilton
## 1787 2022-09-16 BMU North America Hamilton
## 1788 2022-09-16 BMU North America Hamilton
## 1789 2022-09-16 BMU North America Hamilton
## 1790 2022-09-16 BMU North America Hamilton
## 1791 2022-09-16 BMU North America Hamilton
## 1792 2022-09-16 BMU North America Hamilton
## 1793 2022-09-16 BMU North America Hamilton
## 1794 2022-09-16 BMU North America Hamilton
## 1795 2022-09-16 BMU North America Hamilton
## 1796 2022-09-16 BMU North America Hamilton
## 1797 2022-09-16 BMU North America Hamilton
## 1798 2022-09-16 BMU North America Hamilton
## 1799 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1800 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1801 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1802 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1803 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1804 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1805 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1806 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1807 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1808 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1809 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1810 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1811 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1812 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1813 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1814 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1815 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1816 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1817 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1818 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1819 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1820 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1821 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1822 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1823 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1824 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1825 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1826 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1827 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1828 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1829 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1830 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1831 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1832 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1833 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1834 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1835 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1836 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1837 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1838 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1839 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1840 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1841 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1842 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1843 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1844 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1845 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1846 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1847 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1848 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1849 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1850 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1851 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1852 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1853 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1854 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1855 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1856 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1857 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1858 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1859 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1860 2022-09-16 BRN East Asia & Pacific Bandar Seri Begawan
## 1861 2022-09-16 BOL Latin America & Caribbean La Paz
## 1862 2022-09-16 BOL Latin America & Caribbean La Paz
## 1863 2022-09-16 BOL Latin America & Caribbean La Paz
## 1864 2022-09-16 BOL Latin America & Caribbean La Paz
## 1865 2022-09-16 BOL Latin America & Caribbean La Paz
## 1866 2022-09-16 BOL Latin America & Caribbean La Paz
## 1867 2022-09-16 BOL Latin America & Caribbean La Paz
## 1868 2022-09-16 BOL Latin America & Caribbean La Paz
## 1869 2022-09-16 BOL Latin America & Caribbean La Paz
## 1870 2022-09-16 BOL Latin America & Caribbean La Paz
## 1871 2022-09-16 BOL Latin America & Caribbean La Paz
## 1872 2022-09-16 BOL Latin America & Caribbean La Paz
## 1873 2022-09-16 BOL Latin America & Caribbean La Paz
## 1874 2022-09-16 BOL Latin America & Caribbean La Paz
## 1875 2022-09-16 BOL Latin America & Caribbean La Paz
## 1876 2022-09-16 BOL Latin America & Caribbean La Paz
## 1877 2022-09-16 BOL Latin America & Caribbean La Paz
## 1878 2022-09-16 BOL Latin America & Caribbean La Paz
## 1879 2022-09-16 BOL Latin America & Caribbean La Paz
## 1880 2022-09-16 BOL Latin America & Caribbean La Paz
## 1881 2022-09-16 BOL Latin America & Caribbean La Paz
## 1882 2022-09-16 BOL Latin America & Caribbean La Paz
## 1883 2022-09-16 BOL Latin America & Caribbean La Paz
## 1884 2022-09-16 BOL Latin America & Caribbean La Paz
## 1885 2022-09-16 BOL Latin America & Caribbean La Paz
## 1886 2022-09-16 BOL Latin America & Caribbean La Paz
## 1887 2022-09-16 BOL Latin America & Caribbean La Paz
## 1888 2022-09-16 BOL Latin America & Caribbean La Paz
## 1889 2022-09-16 BOL Latin America & Caribbean La Paz
## 1890 2022-09-16 BOL Latin America & Caribbean La Paz
## 1891 2022-09-16 BOL Latin America & Caribbean La Paz
## 1892 2022-09-16 BOL Latin America & Caribbean La Paz
## 1893 2022-09-16 BOL Latin America & Caribbean La Paz
## 1894 2022-09-16 BOL Latin America & Caribbean La Paz
## 1895 2022-09-16 BOL Latin America & Caribbean La Paz
## 1896 2022-09-16 BOL Latin America & Caribbean La Paz
## 1897 2022-09-16 BOL Latin America & Caribbean La Paz
## 1898 2022-09-16 BOL Latin America & Caribbean La Paz
## 1899 2022-09-16 BOL Latin America & Caribbean La Paz
## 1900 2022-09-16 BOL Latin America & Caribbean La Paz
## 1901 2022-09-16 BOL Latin America & Caribbean La Paz
## 1902 2022-09-16 BOL Latin America & Caribbean La Paz
## 1903 2022-09-16 BOL Latin America & Caribbean La Paz
## 1904 2022-09-16 BOL Latin America & Caribbean La Paz
## 1905 2022-09-16 BOL Latin America & Caribbean La Paz
## 1906 2022-09-16 BOL Latin America & Caribbean La Paz
## 1907 2022-09-16 BOL Latin America & Caribbean La Paz
## 1908 2022-09-16 BOL Latin America & Caribbean La Paz
## 1909 2022-09-16 BOL Latin America & Caribbean La Paz
## 1910 2022-09-16 BOL Latin America & Caribbean La Paz
## 1911 2022-09-16 BOL Latin America & Caribbean La Paz
## 1912 2022-09-16 BOL Latin America & Caribbean La Paz
## 1913 2022-09-16 BOL Latin America & Caribbean La Paz
## 1914 2022-09-16 BOL Latin America & Caribbean La Paz
## 1915 2022-09-16 BOL Latin America & Caribbean La Paz
## 1916 2022-09-16 BOL Latin America & Caribbean La Paz
## 1917 2022-09-16 BOL Latin America & Caribbean La Paz
## 1918 2022-09-16 BOL Latin America & Caribbean La Paz
## 1919 2022-09-16 BOL Latin America & Caribbean La Paz
## 1920 2022-09-16 BOL Latin America & Caribbean La Paz
## 1921 2022-09-16 BOL Latin America & Caribbean La Paz
## 1922 2022-09-16 BOL Latin America & Caribbean La Paz
## 1923 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1924 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1925 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1926 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1927 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1928 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1929 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1930 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1931 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1932 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1933 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1934 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1935 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1936 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1937 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1938 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1939 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1940 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1941 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1942 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1943 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1944 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1945 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1946 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1947 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1948 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1949 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1950 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1951 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1952 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1953 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1954 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1955 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1956 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1957 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1958 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1959 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1960 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1961 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1962 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1963 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1964 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1965 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1966 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1967 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1968 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1969 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1970 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1971 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1972 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1973 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1974 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1975 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1976 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1977 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1978 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1979 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1980 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1981 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1982 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1983 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1984 2022-09-16 BRA Latin America & Caribbean Brasilia
## 1985 2022-09-16 BHS Latin America & Caribbean Nassau
## 1986 2022-09-16 BHS Latin America & Caribbean Nassau
## 1987 2022-09-16 BHS Latin America & Caribbean Nassau
## 1988 2022-09-16 BHS Latin America & Caribbean Nassau
## 1989 2022-09-16 BHS Latin America & Caribbean Nassau
## 1990 2022-09-16 BHS Latin America & Caribbean Nassau
## 1991 2022-09-16 BHS Latin America & Caribbean Nassau
## 1992 2022-09-16 BHS Latin America & Caribbean Nassau
## 1993 2022-09-16 BHS Latin America & Caribbean Nassau
## 1994 2022-09-16 BHS Latin America & Caribbean Nassau
## 1995 2022-09-16 BHS Latin America & Caribbean Nassau
## 1996 2022-09-16 BHS Latin America & Caribbean Nassau
## 1997 2022-09-16 BHS Latin America & Caribbean Nassau
## 1998 2022-09-16 BHS Latin America & Caribbean Nassau
## 1999 2022-09-16 BHS Latin America & Caribbean Nassau
## 2000 2022-09-16 BHS Latin America & Caribbean Nassau
## 2001 2022-09-16 BHS Latin America & Caribbean Nassau
## 2002 2022-09-16 BHS Latin America & Caribbean Nassau
## 2003 2022-09-16 BHS Latin America & Caribbean Nassau
## 2004 2022-09-16 BHS Latin America & Caribbean Nassau
## 2005 2022-09-16 BHS Latin America & Caribbean Nassau
## 2006 2022-09-16 BHS Latin America & Caribbean Nassau
## 2007 2022-09-16 BHS Latin America & Caribbean Nassau
## 2008 2022-09-16 BHS Latin America & Caribbean Nassau
## 2009 2022-09-16 BHS Latin America & Caribbean Nassau
## 2010 2022-09-16 BHS Latin America & Caribbean Nassau
## 2011 2022-09-16 BHS Latin America & Caribbean Nassau
## 2012 2022-09-16 BHS Latin America & Caribbean Nassau
## 2013 2022-09-16 BHS Latin America & Caribbean Nassau
## 2014 2022-09-16 BHS Latin America & Caribbean Nassau
## 2015 2022-09-16 BHS Latin America & Caribbean Nassau
## 2016 2022-09-16 BHS Latin America & Caribbean Nassau
## 2017 2022-09-16 BHS Latin America & Caribbean Nassau
## 2018 2022-09-16 BHS Latin America & Caribbean Nassau
## 2019 2022-09-16 BHS Latin America & Caribbean Nassau
## 2020 2022-09-16 BHS Latin America & Caribbean Nassau
## 2021 2022-09-16 BHS Latin America & Caribbean Nassau
## 2022 2022-09-16 BHS Latin America & Caribbean Nassau
## 2023 2022-09-16 BHS Latin America & Caribbean Nassau
## 2024 2022-09-16 BHS Latin America & Caribbean Nassau
## 2025 2022-09-16 BHS Latin America & Caribbean Nassau
## 2026 2022-09-16 BHS Latin America & Caribbean Nassau
## 2027 2022-09-16 BHS Latin America & Caribbean Nassau
## 2028 2022-09-16 BHS Latin America & Caribbean Nassau
## 2029 2022-09-16 BHS Latin America & Caribbean Nassau
## 2030 2022-09-16 BHS Latin America & Caribbean Nassau
## 2031 2022-09-16 BHS Latin America & Caribbean Nassau
## 2032 2022-09-16 BHS Latin America & Caribbean Nassau
## 2033 2022-09-16 BHS Latin America & Caribbean Nassau
## 2034 2022-09-16 BHS Latin America & Caribbean Nassau
## 2035 2022-09-16 BHS Latin America & Caribbean Nassau
## 2036 2022-09-16 BHS Latin America & Caribbean Nassau
## 2037 2022-09-16 BHS Latin America & Caribbean Nassau
## 2038 2022-09-16 BHS Latin America & Caribbean Nassau
## 2039 2022-09-16 BHS Latin America & Caribbean Nassau
## 2040 2022-09-16 BHS Latin America & Caribbean Nassau
## 2041 2022-09-16 BHS Latin America & Caribbean Nassau
## 2042 2022-09-16 BHS Latin America & Caribbean Nassau
## 2043 2022-09-16 BHS Latin America & Caribbean Nassau
## 2044 2022-09-16 BHS Latin America & Caribbean Nassau
## 2045 2022-09-16 BHS Latin America & Caribbean Nassau
## 2046 2022-09-16 BHS Latin America & Caribbean Nassau
## 2047 2022-09-16 BTN South Asia Thimphu
## 2048 2022-09-16 BTN South Asia Thimphu
## 2049 2022-09-16 BTN South Asia Thimphu
## 2050 2022-09-16 BTN South Asia Thimphu
## 2051 2022-09-16 BTN South Asia Thimphu
## 2052 2022-09-16 BTN South Asia Thimphu
## 2053 2022-09-16 BTN South Asia Thimphu
## 2054 2022-09-16 BTN South Asia Thimphu
## 2055 2022-09-16 BTN South Asia Thimphu
## 2056 2022-09-16 BTN South Asia Thimphu
## 2057 2022-09-16 BTN South Asia Thimphu
## 2058 2022-09-16 BTN South Asia Thimphu
## 2059 2022-09-16 BTN South Asia Thimphu
## 2060 2022-09-16 BTN South Asia Thimphu
## 2061 2022-09-16 BTN South Asia Thimphu
## 2062 2022-09-16 BTN South Asia Thimphu
## 2063 2022-09-16 BTN South Asia Thimphu
## 2064 2022-09-16 BTN South Asia Thimphu
## 2065 2022-09-16 BTN South Asia Thimphu
## 2066 2022-09-16 BTN South Asia Thimphu
## 2067 2022-09-16 BTN South Asia Thimphu
## 2068 2022-09-16 BTN South Asia Thimphu
## 2069 2022-09-16 BTN South Asia Thimphu
## 2070 2022-09-16 BTN South Asia Thimphu
## 2071 2022-09-16 BTN South Asia Thimphu
## 2072 2022-09-16 BTN South Asia Thimphu
## 2073 2022-09-16 BTN South Asia Thimphu
## 2074 2022-09-16 BTN South Asia Thimphu
## 2075 2022-09-16 BTN South Asia Thimphu
## 2076 2022-09-16 BTN South Asia Thimphu
## 2077 2022-09-16 BTN South Asia Thimphu
## 2078 2022-09-16 BTN South Asia Thimphu
## 2079 2022-09-16 BTN South Asia Thimphu
## 2080 2022-09-16 BTN South Asia Thimphu
## 2081 2022-09-16 BTN South Asia Thimphu
## 2082 2022-09-16 BTN South Asia Thimphu
## 2083 2022-09-16 BTN South Asia Thimphu
## 2084 2022-09-16 BTN South Asia Thimphu
## 2085 2022-09-16 BTN South Asia Thimphu
## 2086 2022-09-16 BTN South Asia Thimphu
## 2087 2022-09-16 BTN South Asia Thimphu
## 2088 2022-09-16 BTN South Asia Thimphu
## 2089 2022-09-16 BTN South Asia Thimphu
## 2090 2022-09-16 BTN South Asia Thimphu
## 2091 2022-09-16 BTN South Asia Thimphu
## 2092 2022-09-16 BTN South Asia Thimphu
## 2093 2022-09-16 BTN South Asia Thimphu
## 2094 2022-09-16 BTN South Asia Thimphu
## 2095 2022-09-16 BTN South Asia Thimphu
## 2096 2022-09-16 BTN South Asia Thimphu
## 2097 2022-09-16 BTN South Asia Thimphu
## 2098 2022-09-16 BTN South Asia Thimphu
## 2099 2022-09-16 BTN South Asia Thimphu
## 2100 2022-09-16 BTN South Asia Thimphu
## 2101 2022-09-16 BTN South Asia Thimphu
## 2102 2022-09-16 BTN South Asia Thimphu
## 2103 2022-09-16 BTN South Asia Thimphu
## 2104 2022-09-16 BTN South Asia Thimphu
## 2105 2022-09-16 BTN South Asia Thimphu
## 2106 2022-09-16 BTN South Asia Thimphu
## 2107 2022-09-16 BTN South Asia Thimphu
## 2108 2022-09-16 BTN South Asia Thimphu
## 2109 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2110 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2111 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2112 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2113 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2114 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2115 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2116 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2117 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2118 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2119 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2120 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2121 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2122 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2123 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2124 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2125 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2126 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2127 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2128 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2129 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2130 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2131 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2132 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2133 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2134 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2135 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2136 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2137 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2138 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2139 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2140 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2141 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2142 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2143 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2144 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2145 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2146 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2147 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2148 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2149 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2150 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2151 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2152 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2153 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2154 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2155 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2156 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2157 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2158 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2159 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2160 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2161 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2162 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2163 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2164 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2165 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2166 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2167 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2168 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2169 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2170 2022-09-16 BWA Sub-Saharan Africa Gaborone
## 2171 2022-09-16 BLR Europe & Central Asia Minsk
## 2172 2022-09-16 BLR Europe & Central Asia Minsk
## 2173 2022-09-16 BLR Europe & Central Asia Minsk
## 2174 2022-09-16 BLR Europe & Central Asia Minsk
## 2175 2022-09-16 BLR Europe & Central Asia Minsk
## 2176 2022-09-16 BLR Europe & Central Asia Minsk
## 2177 2022-09-16 BLR Europe & Central Asia Minsk
## 2178 2022-09-16 BLR Europe & Central Asia Minsk
## 2179 2022-09-16 BLR Europe & Central Asia Minsk
## 2180 2022-09-16 BLR Europe & Central Asia Minsk
## 2181 2022-09-16 BLR Europe & Central Asia Minsk
## 2182 2022-09-16 BLR Europe & Central Asia Minsk
## 2183 2022-09-16 BLR Europe & Central Asia Minsk
## 2184 2022-09-16 BLR Europe & Central Asia Minsk
## 2185 2022-09-16 BLR Europe & Central Asia Minsk
## 2186 2022-09-16 BLR Europe & Central Asia Minsk
## 2187 2022-09-16 BLR Europe & Central Asia Minsk
## 2188 2022-09-16 BLR Europe & Central Asia Minsk
## 2189 2022-09-16 BLR Europe & Central Asia Minsk
## 2190 2022-09-16 BLR Europe & Central Asia Minsk
## 2191 2022-09-16 BLR Europe & Central Asia Minsk
## 2192 2022-09-16 BLR Europe & Central Asia Minsk
## 2193 2022-09-16 BLR Europe & Central Asia Minsk
## 2194 2022-09-16 BLR Europe & Central Asia Minsk
## 2195 2022-09-16 BLR Europe & Central Asia Minsk
## 2196 2022-09-16 BLR Europe & Central Asia Minsk
## 2197 2022-09-16 BLR Europe & Central Asia Minsk
## 2198 2022-09-16 BLR Europe & Central Asia Minsk
## 2199 2022-09-16 BLR Europe & Central Asia Minsk
## 2200 2022-09-16 BLR Europe & Central Asia Minsk
## 2201 2022-09-16 BLR Europe & Central Asia Minsk
## 2202 2022-09-16 BLR Europe & Central Asia Minsk
## 2203 2022-09-16 BLR Europe & Central Asia Minsk
## 2204 2022-09-16 BLR Europe & Central Asia Minsk
## 2205 2022-09-16 BLR Europe & Central Asia Minsk
## 2206 2022-09-16 BLR Europe & Central Asia Minsk
## 2207 2022-09-16 BLR Europe & Central Asia Minsk
## 2208 2022-09-16 BLR Europe & Central Asia Minsk
## 2209 2022-09-16 BLR Europe & Central Asia Minsk
## 2210 2022-09-16 BLR Europe & Central Asia Minsk
## 2211 2022-09-16 BLR Europe & Central Asia Minsk
## 2212 2022-09-16 BLR Europe & Central Asia Minsk
## 2213 2022-09-16 BLR Europe & Central Asia Minsk
## 2214 2022-09-16 BLR Europe & Central Asia Minsk
## 2215 2022-09-16 BLR Europe & Central Asia Minsk
## 2216 2022-09-16 BLR Europe & Central Asia Minsk
## 2217 2022-09-16 BLR Europe & Central Asia Minsk
## 2218 2022-09-16 BLR Europe & Central Asia Minsk
## 2219 2022-09-16 BLR Europe & Central Asia Minsk
## 2220 2022-09-16 BLR Europe & Central Asia Minsk
## 2221 2022-09-16 BLR Europe & Central Asia Minsk
## 2222 2022-09-16 BLR Europe & Central Asia Minsk
## 2223 2022-09-16 BLR Europe & Central Asia Minsk
## 2224 2022-09-16 BLR Europe & Central Asia Minsk
## 2225 2022-09-16 BLR Europe & Central Asia Minsk
## 2226 2022-09-16 BLR Europe & Central Asia Minsk
## 2227 2022-09-16 BLR Europe & Central Asia Minsk
## 2228 2022-09-16 BLR Europe & Central Asia Minsk
## 2229 2022-09-16 BLR Europe & Central Asia Minsk
## 2230 2022-09-16 BLR Europe & Central Asia Minsk
## 2231 2022-09-16 BLR Europe & Central Asia Minsk
## 2232 2022-09-16 BLR Europe & Central Asia Minsk
## 2233 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2234 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2235 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2236 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2237 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2238 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2239 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2240 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2241 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2242 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2243 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2244 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2245 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2246 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2247 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2248 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2249 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2250 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2251 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2252 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2253 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2254 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2255 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2256 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2257 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2258 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2259 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2260 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2261 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2262 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2263 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2264 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2265 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2266 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2267 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2268 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2269 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2270 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2271 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2272 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2273 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2274 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2275 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2276 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2277 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2278 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2279 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2280 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2281 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2282 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2283 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2284 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2285 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2286 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2287 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2288 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2289 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2290 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2291 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2292 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2293 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2294 2022-09-16 BLZ Latin America & Caribbean Belmopan
## 2295 2022-09-16 CAN North America Ottawa
## 2296 2022-09-16 CAN North America Ottawa
## 2297 2022-09-16 CAN North America Ottawa
## 2298 2022-09-16 CAN North America Ottawa
## 2299 2022-09-16 CAN North America Ottawa
## 2300 2022-09-16 CAN North America Ottawa
## 2301 2022-09-16 CAN North America Ottawa
## 2302 2022-09-16 CAN North America Ottawa
## 2303 2022-09-16 CAN North America Ottawa
## 2304 2022-09-16 CAN North America Ottawa
## 2305 2022-09-16 CAN North America Ottawa
## 2306 2022-09-16 CAN North America Ottawa
## 2307 2022-09-16 CAN North America Ottawa
## 2308 2022-09-16 CAN North America Ottawa
## 2309 2022-09-16 CAN North America Ottawa
## 2310 2022-09-16 CAN North America Ottawa
## 2311 2022-09-16 CAN North America Ottawa
## 2312 2022-09-16 CAN North America Ottawa
## 2313 2022-09-16 CAN North America Ottawa
## 2314 2022-09-16 CAN North America Ottawa
## 2315 2022-09-16 CAN North America Ottawa
## 2316 2022-09-16 CAN North America Ottawa
## 2317 2022-09-16 CAN North America Ottawa
## 2318 2022-09-16 CAN North America Ottawa
## 2319 2022-09-16 CAN North America Ottawa
## 2320 2022-09-16 CAN North America Ottawa
## 2321 2022-09-16 CAN North America Ottawa
## 2322 2022-09-16 CAN North America Ottawa
## 2323 2022-09-16 CAN North America Ottawa
## 2324 2022-09-16 CAN North America Ottawa
## 2325 2022-09-16 CAN North America Ottawa
## 2326 2022-09-16 CAN North America Ottawa
## 2327 2022-09-16 CAN North America Ottawa
## 2328 2022-09-16 CAN North America Ottawa
## 2329 2022-09-16 CAN North America Ottawa
## 2330 2022-09-16 CAN North America Ottawa
## 2331 2022-09-16 CAN North America Ottawa
## 2332 2022-09-16 CAN North America Ottawa
## 2333 2022-09-16 CAN North America Ottawa
## 2334 2022-09-16 CAN North America Ottawa
## 2335 2022-09-16 CAN North America Ottawa
## 2336 2022-09-16 CAN North America Ottawa
## 2337 2022-09-16 CAN North America Ottawa
## 2338 2022-09-16 CAN North America Ottawa
## 2339 2022-09-16 CAN North America Ottawa
## 2340 2022-09-16 CAN North America Ottawa
## 2341 2022-09-16 CAN North America Ottawa
## 2342 2022-09-16 CAN North America Ottawa
## 2343 2022-09-16 CAN North America Ottawa
## 2344 2022-09-16 CAN North America Ottawa
## 2345 2022-09-16 CAN North America Ottawa
## 2346 2022-09-16 CAN North America Ottawa
## 2347 2022-09-16 CAN North America Ottawa
## 2348 2022-09-16 CAN North America Ottawa
## 2349 2022-09-16 CAN North America Ottawa
## 2350 2022-09-16 CAN North America Ottawa
## 2351 2022-09-16 CAN North America Ottawa
## 2352 2022-09-16 CAN North America Ottawa
## 2353 2022-09-16 CAN North America Ottawa
## 2354 2022-09-16 CAN North America Ottawa
## 2355 2022-09-16 CAN North America Ottawa
## 2356 2022-09-16 CAN North America Ottawa
## 2357 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2358 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2359 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2360 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2361 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2362 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2363 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2364 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2365 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2366 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2367 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2368 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2369 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2370 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2371 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2372 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2373 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2374 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2375 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2376 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2377 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2378 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2379 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2380 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2381 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2382 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2383 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2384 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2385 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2386 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2387 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2388 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2389 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2390 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2391 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2392 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2393 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2394 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2395 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2396 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2397 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2398 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2399 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2400 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2401 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2402 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2403 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2404 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2405 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2406 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2407 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2408 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2409 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2410 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2411 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2412 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2413 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2414 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2415 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2416 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2417 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2418 2022-09-16 COD Sub-Saharan Africa Kinshasa
## 2419 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2420 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2421 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2422 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2423 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2424 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2425 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2426 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2427 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2428 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2429 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2430 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2431 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2432 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2433 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2434 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2435 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2436 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2437 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2438 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2439 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2440 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2441 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2442 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2443 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2444 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2445 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2446 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2447 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2448 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2449 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2450 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2451 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2452 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2453 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2454 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2455 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2456 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2457 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2458 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2459 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2460 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2461 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2462 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2463 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2464 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2465 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2466 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2467 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2468 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2469 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2470 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2471 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2472 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2473 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2474 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2475 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2476 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2477 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2478 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2479 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2480 2022-09-16 CAF Sub-Saharan Africa Bangui
## 2481 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2482 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2483 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2484 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2485 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2486 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2487 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2488 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2489 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2490 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2491 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2492 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2493 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2494 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2495 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2496 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2497 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2498 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2499 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2500 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2501 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2502 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2503 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2504 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2505 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2506 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2507 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2508 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2509 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2510 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2511 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2512 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2513 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2514 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2515 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2516 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2517 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2518 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2519 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2520 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2521 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2522 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2523 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2524 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2525 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2526 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2527 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2528 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2529 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2530 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2531 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2532 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2533 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2534 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2535 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2536 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2537 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2538 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2539 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2540 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2541 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2542 2022-09-16 COG Sub-Saharan Africa Brazzaville
## 2543 2022-09-16 CHE Europe & Central Asia Bern
## 2544 2022-09-16 CHE Europe & Central Asia Bern
## 2545 2022-09-16 CHE Europe & Central Asia Bern
## 2546 2022-09-16 CHE Europe & Central Asia Bern
## 2547 2022-09-16 CHE Europe & Central Asia Bern
## 2548 2022-09-16 CHE Europe & Central Asia Bern
## 2549 2022-09-16 CHE Europe & Central Asia Bern
## 2550 2022-09-16 CHE Europe & Central Asia Bern
## 2551 2022-09-16 CHE Europe & Central Asia Bern
## 2552 2022-09-16 CHE Europe & Central Asia Bern
## 2553 2022-09-16 CHE Europe & Central Asia Bern
## 2554 2022-09-16 CHE Europe & Central Asia Bern
## 2555 2022-09-16 CHE Europe & Central Asia Bern
## 2556 2022-09-16 CHE Europe & Central Asia Bern
## 2557 2022-09-16 CHE Europe & Central Asia Bern
## 2558 2022-09-16 CHE Europe & Central Asia Bern
## 2559 2022-09-16 CHE Europe & Central Asia Bern
## 2560 2022-09-16 CHE Europe & Central Asia Bern
## 2561 2022-09-16 CHE Europe & Central Asia Bern
## 2562 2022-09-16 CHE Europe & Central Asia Bern
## 2563 2022-09-16 CHE Europe & Central Asia Bern
## 2564 2022-09-16 CHE Europe & Central Asia Bern
## 2565 2022-09-16 CHE Europe & Central Asia Bern
## 2566 2022-09-16 CHE Europe & Central Asia Bern
## 2567 2022-09-16 CHE Europe & Central Asia Bern
## 2568 2022-09-16 CHE Europe & Central Asia Bern
## 2569 2022-09-16 CHE Europe & Central Asia Bern
## 2570 2022-09-16 CHE Europe & Central Asia Bern
## 2571 2022-09-16 CHE Europe & Central Asia Bern
## 2572 2022-09-16 CHE Europe & Central Asia Bern
## 2573 2022-09-16 CHE Europe & Central Asia Bern
## 2574 2022-09-16 CHE Europe & Central Asia Bern
## 2575 2022-09-16 CHE Europe & Central Asia Bern
## 2576 2022-09-16 CHE Europe & Central Asia Bern
## 2577 2022-09-16 CHE Europe & Central Asia Bern
## 2578 2022-09-16 CHE Europe & Central Asia Bern
## 2579 2022-09-16 CHE Europe & Central Asia Bern
## 2580 2022-09-16 CHE Europe & Central Asia Bern
## 2581 2022-09-16 CHE Europe & Central Asia Bern
## 2582 2022-09-16 CHE Europe & Central Asia Bern
## 2583 2022-09-16 CHE Europe & Central Asia Bern
## 2584 2022-09-16 CHE Europe & Central Asia Bern
## 2585 2022-09-16 CHE Europe & Central Asia Bern
## 2586 2022-09-16 CHE Europe & Central Asia Bern
## 2587 2022-09-16 CHE Europe & Central Asia Bern
## 2588 2022-09-16 CHE Europe & Central Asia Bern
## 2589 2022-09-16 CHE Europe & Central Asia Bern
## 2590 2022-09-16 CHE Europe & Central Asia Bern
## 2591 2022-09-16 CHE Europe & Central Asia Bern
## 2592 2022-09-16 CHE Europe & Central Asia Bern
## 2593 2022-09-16 CHE Europe & Central Asia Bern
## 2594 2022-09-16 CHE Europe & Central Asia Bern
## 2595 2022-09-16 CHE Europe & Central Asia Bern
## 2596 2022-09-16 CHE Europe & Central Asia Bern
## 2597 2022-09-16 CHE Europe & Central Asia Bern
## 2598 2022-09-16 CHE Europe & Central Asia Bern
## 2599 2022-09-16 CHE Europe & Central Asia Bern
## 2600 2022-09-16 CHE Europe & Central Asia Bern
## 2601 2022-09-16 CHE Europe & Central Asia Bern
## 2602 2022-09-16 CHE Europe & Central Asia Bern
## 2603 2022-09-16 CHE Europe & Central Asia Bern
## 2604 2022-09-16 CHE Europe & Central Asia Bern
## 2605 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2606 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2607 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2608 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2609 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2610 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2611 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2612 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2613 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2614 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2615 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2616 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2617 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2618 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2619 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2620 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2621 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2622 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2623 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2624 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2625 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2626 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2627 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2628 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2629 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2630 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2631 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2632 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2633 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2634 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2635 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2636 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2637 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2638 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2639 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2640 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2641 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2642 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2643 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2644 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2645 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2646 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2647 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2648 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2649 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2650 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2651 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2652 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2653 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2654 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2655 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2656 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2657 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2658 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2659 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2660 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2661 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2662 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2663 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2664 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2665 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2666 2022-09-16 CIV Sub-Saharan Africa Yamoussoukro
## 2667 2022-09-16 CHL Latin America & Caribbean Santiago
## 2668 2022-09-16 CHL Latin America & Caribbean Santiago
## 2669 2022-09-16 CHL Latin America & Caribbean Santiago
## 2670 2022-09-16 CHL Latin America & Caribbean Santiago
## 2671 2022-09-16 CHL Latin America & Caribbean Santiago
## 2672 2022-09-16 CHL Latin America & Caribbean Santiago
## 2673 2022-09-16 CHL Latin America & Caribbean Santiago
## 2674 2022-09-16 CHL Latin America & Caribbean Santiago
## 2675 2022-09-16 CHL Latin America & Caribbean Santiago
## 2676 2022-09-16 CHL Latin America & Caribbean Santiago
## 2677 2022-09-16 CHL Latin America & Caribbean Santiago
## 2678 2022-09-16 CHL Latin America & Caribbean Santiago
## 2679 2022-09-16 CHL Latin America & Caribbean Santiago
## 2680 2022-09-16 CHL Latin America & Caribbean Santiago
## 2681 2022-09-16 CHL Latin America & Caribbean Santiago
## 2682 2022-09-16 CHL Latin America & Caribbean Santiago
## 2683 2022-09-16 CHL Latin America & Caribbean Santiago
## 2684 2022-09-16 CHL Latin America & Caribbean Santiago
## 2685 2022-09-16 CHL Latin America & Caribbean Santiago
## 2686 2022-09-16 CHL Latin America & Caribbean Santiago
## 2687 2022-09-16 CHL Latin America & Caribbean Santiago
## 2688 2022-09-16 CHL Latin America & Caribbean Santiago
## 2689 2022-09-16 CHL Latin America & Caribbean Santiago
## 2690 2022-09-16 CHL Latin America & Caribbean Santiago
## 2691 2022-09-16 CHL Latin America & Caribbean Santiago
## 2692 2022-09-16 CHL Latin America & Caribbean Santiago
## 2693 2022-09-16 CHL Latin America & Caribbean Santiago
## 2694 2022-09-16 CHL Latin America & Caribbean Santiago
## 2695 2022-09-16 CHL Latin America & Caribbean Santiago
## 2696 2022-09-16 CHL Latin America & Caribbean Santiago
## 2697 2022-09-16 CHL Latin America & Caribbean Santiago
## 2698 2022-09-16 CHL Latin America & Caribbean Santiago
## 2699 2022-09-16 CHL Latin America & Caribbean Santiago
## 2700 2022-09-16 CHL Latin America & Caribbean Santiago
## 2701 2022-09-16 CHL Latin America & Caribbean Santiago
## 2702 2022-09-16 CHL Latin America & Caribbean Santiago
## 2703 2022-09-16 CHL Latin America & Caribbean Santiago
## 2704 2022-09-16 CHL Latin America & Caribbean Santiago
## 2705 2022-09-16 CHL Latin America & Caribbean Santiago
## 2706 2022-09-16 CHL Latin America & Caribbean Santiago
## 2707 2022-09-16 CHL Latin America & Caribbean Santiago
## 2708 2022-09-16 CHL Latin America & Caribbean Santiago
## 2709 2022-09-16 CHL Latin America & Caribbean Santiago
## 2710 2022-09-16 CHL Latin America & Caribbean Santiago
## 2711 2022-09-16 CHL Latin America & Caribbean Santiago
## 2712 2022-09-16 CHL Latin America & Caribbean Santiago
## 2713 2022-09-16 CHL Latin America & Caribbean Santiago
## 2714 2022-09-16 CHL Latin America & Caribbean Santiago
## 2715 2022-09-16 CHL Latin America & Caribbean Santiago
## 2716 2022-09-16 CHL Latin America & Caribbean Santiago
## 2717 2022-09-16 CHL Latin America & Caribbean Santiago
## 2718 2022-09-16 CHL Latin America & Caribbean Santiago
## 2719 2022-09-16 CHL Latin America & Caribbean Santiago
## 2720 2022-09-16 CHL Latin America & Caribbean Santiago
## 2721 2022-09-16 CHL Latin America & Caribbean Santiago
## 2722 2022-09-16 CHL Latin America & Caribbean Santiago
## 2723 2022-09-16 CHL Latin America & Caribbean Santiago
## 2724 2022-09-16 CHL Latin America & Caribbean Santiago
## 2725 2022-09-16 CHL Latin America & Caribbean Santiago
## 2726 2022-09-16 CHL Latin America & Caribbean Santiago
## 2727 2022-09-16 CHL Latin America & Caribbean Santiago
## 2728 2022-09-16 CHL Latin America & Caribbean Santiago
## 2729 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2730 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2731 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2732 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2733 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2734 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2735 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2736 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2737 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2738 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2739 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2740 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2741 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2742 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2743 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2744 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2745 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2746 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2747 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2748 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2749 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2750 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2751 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2752 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2753 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2754 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2755 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2756 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2757 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2758 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2759 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2760 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2761 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2762 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2763 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2764 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2765 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2766 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2767 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2768 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2769 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2770 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2771 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2772 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2773 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2774 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2775 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2776 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2777 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2778 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2779 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2780 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2781 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2782 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2783 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2784 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2785 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2786 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2787 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2788 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2789 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2790 2022-09-16 CMR Sub-Saharan Africa Yaounde
## 2791 2022-09-16 CHN East Asia & Pacific Beijing
## 2792 2022-09-16 CHN East Asia & Pacific Beijing
## 2793 2022-09-16 CHN East Asia & Pacific Beijing
## 2794 2022-09-16 CHN East Asia & Pacific Beijing
## 2795 2022-09-16 CHN East Asia & Pacific Beijing
## 2796 2022-09-16 CHN East Asia & Pacific Beijing
## 2797 2022-09-16 CHN East Asia & Pacific Beijing
## 2798 2022-09-16 CHN East Asia & Pacific Beijing
## 2799 2022-09-16 CHN East Asia & Pacific Beijing
## 2800 2022-09-16 CHN East Asia & Pacific Beijing
## 2801 2022-09-16 CHN East Asia & Pacific Beijing
## 2802 2022-09-16 CHN East Asia & Pacific Beijing
## 2803 2022-09-16 CHN East Asia & Pacific Beijing
## 2804 2022-09-16 CHN East Asia & Pacific Beijing
## 2805 2022-09-16 CHN East Asia & Pacific Beijing
## 2806 2022-09-16 CHN East Asia & Pacific Beijing
## 2807 2022-09-16 CHN East Asia & Pacific Beijing
## 2808 2022-09-16 CHN East Asia & Pacific Beijing
## 2809 2022-09-16 CHN East Asia & Pacific Beijing
## 2810 2022-09-16 CHN East Asia & Pacific Beijing
## 2811 2022-09-16 CHN East Asia & Pacific Beijing
## 2812 2022-09-16 CHN East Asia & Pacific Beijing
## 2813 2022-09-16 CHN East Asia & Pacific Beijing
## 2814 2022-09-16 CHN East Asia & Pacific Beijing
## 2815 2022-09-16 CHN East Asia & Pacific Beijing
## 2816 2022-09-16 CHN East Asia & Pacific Beijing
## 2817 2022-09-16 CHN East Asia & Pacific Beijing
## 2818 2022-09-16 CHN East Asia & Pacific Beijing
## 2819 2022-09-16 CHN East Asia & Pacific Beijing
## 2820 2022-09-16 CHN East Asia & Pacific Beijing
## 2821 2022-09-16 CHN East Asia & Pacific Beijing
## 2822 2022-09-16 CHN East Asia & Pacific Beijing
## 2823 2022-09-16 CHN East Asia & Pacific Beijing
## 2824 2022-09-16 CHN East Asia & Pacific Beijing
## 2825 2022-09-16 CHN East Asia & Pacific Beijing
## 2826 2022-09-16 CHN East Asia & Pacific Beijing
## 2827 2022-09-16 CHN East Asia & Pacific Beijing
## 2828 2022-09-16 CHN East Asia & Pacific Beijing
## 2829 2022-09-16 CHN East Asia & Pacific Beijing
## 2830 2022-09-16 CHN East Asia & Pacific Beijing
## 2831 2022-09-16 CHN East Asia & Pacific Beijing
## 2832 2022-09-16 CHN East Asia & Pacific Beijing
## 2833 2022-09-16 CHN East Asia & Pacific Beijing
## 2834 2022-09-16 CHN East Asia & Pacific Beijing
## 2835 2022-09-16 CHN East Asia & Pacific Beijing
## 2836 2022-09-16 CHN East Asia & Pacific Beijing
## 2837 2022-09-16 CHN East Asia & Pacific Beijing
## 2838 2022-09-16 CHN East Asia & Pacific Beijing
## 2839 2022-09-16 CHN East Asia & Pacific Beijing
## 2840 2022-09-16 CHN East Asia & Pacific Beijing
## 2841 2022-09-16 CHN East Asia & Pacific Beijing
## 2842 2022-09-16 CHN East Asia & Pacific Beijing
## 2843 2022-09-16 CHN East Asia & Pacific Beijing
## 2844 2022-09-16 CHN East Asia & Pacific Beijing
## 2845 2022-09-16 CHN East Asia & Pacific Beijing
## 2846 2022-09-16 CHN East Asia & Pacific Beijing
## 2847 2022-09-16 CHN East Asia & Pacific Beijing
## 2848 2022-09-16 CHN East Asia & Pacific Beijing
## 2849 2022-09-16 CHN East Asia & Pacific Beijing
## 2850 2022-09-16 CHN East Asia & Pacific Beijing
## 2851 2022-09-16 CHN East Asia & Pacific Beijing
## 2852 2022-09-16 CHN East Asia & Pacific Beijing
## 2853 2022-09-16 COL Latin America & Caribbean Bogota
## 2854 2022-09-16 COL Latin America & Caribbean Bogota
## 2855 2022-09-16 COL Latin America & Caribbean Bogota
## 2856 2022-09-16 COL Latin America & Caribbean Bogota
## 2857 2022-09-16 COL Latin America & Caribbean Bogota
## 2858 2022-09-16 COL Latin America & Caribbean Bogota
## 2859 2022-09-16 COL Latin America & Caribbean Bogota
## 2860 2022-09-16 COL Latin America & Caribbean Bogota
## 2861 2022-09-16 COL Latin America & Caribbean Bogota
## 2862 2022-09-16 COL Latin America & Caribbean Bogota
## 2863 2022-09-16 COL Latin America & Caribbean Bogota
## 2864 2022-09-16 COL Latin America & Caribbean Bogota
## 2865 2022-09-16 COL Latin America & Caribbean Bogota
## 2866 2022-09-16 COL Latin America & Caribbean Bogota
## 2867 2022-09-16 COL Latin America & Caribbean Bogota
## 2868 2022-09-16 COL Latin America & Caribbean Bogota
## 2869 2022-09-16 COL Latin America & Caribbean Bogota
## 2870 2022-09-16 COL Latin America & Caribbean Bogota
## 2871 2022-09-16 COL Latin America & Caribbean Bogota
## 2872 2022-09-16 COL Latin America & Caribbean Bogota
## 2873 2022-09-16 COL Latin America & Caribbean Bogota
## 2874 2022-09-16 COL Latin America & Caribbean Bogota
## 2875 2022-09-16 COL Latin America & Caribbean Bogota
## 2876 2022-09-16 COL Latin America & Caribbean Bogota
## 2877 2022-09-16 COL Latin America & Caribbean Bogota
## 2878 2022-09-16 COL Latin America & Caribbean Bogota
## 2879 2022-09-16 COL Latin America & Caribbean Bogota
## 2880 2022-09-16 COL Latin America & Caribbean Bogota
## 2881 2022-09-16 COL Latin America & Caribbean Bogota
## 2882 2022-09-16 COL Latin America & Caribbean Bogota
## 2883 2022-09-16 COL Latin America & Caribbean Bogota
## 2884 2022-09-16 COL Latin America & Caribbean Bogota
## 2885 2022-09-16 COL Latin America & Caribbean Bogota
## 2886 2022-09-16 COL Latin America & Caribbean Bogota
## 2887 2022-09-16 COL Latin America & Caribbean Bogota
## 2888 2022-09-16 COL Latin America & Caribbean Bogota
## 2889 2022-09-16 COL Latin America & Caribbean Bogota
## 2890 2022-09-16 COL Latin America & Caribbean Bogota
## 2891 2022-09-16 COL Latin America & Caribbean Bogota
## 2892 2022-09-16 COL Latin America & Caribbean Bogota
## 2893 2022-09-16 COL Latin America & Caribbean Bogota
## 2894 2022-09-16 COL Latin America & Caribbean Bogota
## 2895 2022-09-16 COL Latin America & Caribbean Bogota
## 2896 2022-09-16 COL Latin America & Caribbean Bogota
## 2897 2022-09-16 COL Latin America & Caribbean Bogota
## 2898 2022-09-16 COL Latin America & Caribbean Bogota
## 2899 2022-09-16 COL Latin America & Caribbean Bogota
## 2900 2022-09-16 COL Latin America & Caribbean Bogota
## 2901 2022-09-16 COL Latin America & Caribbean Bogota
## 2902 2022-09-16 COL Latin America & Caribbean Bogota
## 2903 2022-09-16 COL Latin America & Caribbean Bogota
## 2904 2022-09-16 COL Latin America & Caribbean Bogota
## 2905 2022-09-16 COL Latin America & Caribbean Bogota
## 2906 2022-09-16 COL Latin America & Caribbean Bogota
## 2907 2022-09-16 COL Latin America & Caribbean Bogota
## 2908 2022-09-16 COL Latin America & Caribbean Bogota
## 2909 2022-09-16 COL Latin America & Caribbean Bogota
## 2910 2022-09-16 COL Latin America & Caribbean Bogota
## 2911 2022-09-16 COL Latin America & Caribbean Bogota
## 2912 2022-09-16 COL Latin America & Caribbean Bogota
## 2913 2022-09-16 COL Latin America & Caribbean Bogota
## 2914 2022-09-16 COL Latin America & Caribbean Bogota
## 2915 2022-09-16 CRI Latin America & Caribbean San Jose
## 2916 2022-09-16 CRI Latin America & Caribbean San Jose
## 2917 2022-09-16 CRI Latin America & Caribbean San Jose
## 2918 2022-09-16 CRI Latin America & Caribbean San Jose
## 2919 2022-09-16 CRI Latin America & Caribbean San Jose
## 2920 2022-09-16 CRI Latin America & Caribbean San Jose
## 2921 2022-09-16 CRI Latin America & Caribbean San Jose
## 2922 2022-09-16 CRI Latin America & Caribbean San Jose
## 2923 2022-09-16 CRI Latin America & Caribbean San Jose
## 2924 2022-09-16 CRI Latin America & Caribbean San Jose
## 2925 2022-09-16 CRI Latin America & Caribbean San Jose
## 2926 2022-09-16 CRI Latin America & Caribbean San Jose
## 2927 2022-09-16 CRI Latin America & Caribbean San Jose
## 2928 2022-09-16 CRI Latin America & Caribbean San Jose
## 2929 2022-09-16 CRI Latin America & Caribbean San Jose
## 2930 2022-09-16 CRI Latin America & Caribbean San Jose
## 2931 2022-09-16 CRI Latin America & Caribbean San Jose
## 2932 2022-09-16 CRI Latin America & Caribbean San Jose
## 2933 2022-09-16 CRI Latin America & Caribbean San Jose
## 2934 2022-09-16 CRI Latin America & Caribbean San Jose
## 2935 2022-09-16 CRI Latin America & Caribbean San Jose
## 2936 2022-09-16 CRI Latin America & Caribbean San Jose
## 2937 2022-09-16 CRI Latin America & Caribbean San Jose
## 2938 2022-09-16 CRI Latin America & Caribbean San Jose
## 2939 2022-09-16 CRI Latin America & Caribbean San Jose
## 2940 2022-09-16 CRI Latin America & Caribbean San Jose
## 2941 2022-09-16 CRI Latin America & Caribbean San Jose
## 2942 2022-09-16 CRI Latin America & Caribbean San Jose
## 2943 2022-09-16 CRI Latin America & Caribbean San Jose
## 2944 2022-09-16 CRI Latin America & Caribbean San Jose
## 2945 2022-09-16 CRI Latin America & Caribbean San Jose
## 2946 2022-09-16 CRI Latin America & Caribbean San Jose
## 2947 2022-09-16 CRI Latin America & Caribbean San Jose
## 2948 2022-09-16 CRI Latin America & Caribbean San Jose
## 2949 2022-09-16 CRI Latin America & Caribbean San Jose
## 2950 2022-09-16 CRI Latin America & Caribbean San Jose
## 2951 2022-09-16 CRI Latin America & Caribbean San Jose
## 2952 2022-09-16 CRI Latin America & Caribbean San Jose
## 2953 2022-09-16 CRI Latin America & Caribbean San Jose
## 2954 2022-09-16 CRI Latin America & Caribbean San Jose
## 2955 2022-09-16 CRI Latin America & Caribbean San Jose
## 2956 2022-09-16 CRI Latin America & Caribbean San Jose
## 2957 2022-09-16 CRI Latin America & Caribbean San Jose
## 2958 2022-09-16 CRI Latin America & Caribbean San Jose
## 2959 2022-09-16 CRI Latin America & Caribbean San Jose
## 2960 2022-09-16 CRI Latin America & Caribbean San Jose
## 2961 2022-09-16 CRI Latin America & Caribbean San Jose
## 2962 2022-09-16 CRI Latin America & Caribbean San Jose
## 2963 2022-09-16 CRI Latin America & Caribbean San Jose
## 2964 2022-09-16 CRI Latin America & Caribbean San Jose
## 2965 2022-09-16 CRI Latin America & Caribbean San Jose
## 2966 2022-09-16 CRI Latin America & Caribbean San Jose
## 2967 2022-09-16 CRI Latin America & Caribbean San Jose
## 2968 2022-09-16 CRI Latin America & Caribbean San Jose
## 2969 2022-09-16 CRI Latin America & Caribbean San Jose
## 2970 2022-09-16 CRI Latin America & Caribbean San Jose
## 2971 2022-09-16 CRI Latin America & Caribbean San Jose
## 2972 2022-09-16 CRI Latin America & Caribbean San Jose
## 2973 2022-09-16 CRI Latin America & Caribbean San Jose
## 2974 2022-09-16 CRI Latin America & Caribbean San Jose
## 2975 2022-09-16 CRI Latin America & Caribbean San Jose
## 2976 2022-09-16 CRI Latin America & Caribbean San Jose
## 2977 2022-09-16 CUB Latin America & Caribbean Havana
## 2978 2022-09-16 CUB Latin America & Caribbean Havana
## 2979 2022-09-16 CUB Latin America & Caribbean Havana
## 2980 2022-09-16 CUB Latin America & Caribbean Havana
## 2981 2022-09-16 CUB Latin America & Caribbean Havana
## 2982 2022-09-16 CUB Latin America & Caribbean Havana
## 2983 2022-09-16 CUB Latin America & Caribbean Havana
## 2984 2022-09-16 CUB Latin America & Caribbean Havana
## 2985 2022-09-16 CUB Latin America & Caribbean Havana
## 2986 2022-09-16 CUB Latin America & Caribbean Havana
## 2987 2022-09-16 CUB Latin America & Caribbean Havana
## 2988 2022-09-16 CUB Latin America & Caribbean Havana
## 2989 2022-09-16 CUB Latin America & Caribbean Havana
## 2990 2022-09-16 CUB Latin America & Caribbean Havana
## 2991 2022-09-16 CUB Latin America & Caribbean Havana
## 2992 2022-09-16 CUB Latin America & Caribbean Havana
## 2993 2022-09-16 CUB Latin America & Caribbean Havana
## 2994 2022-09-16 CUB Latin America & Caribbean Havana
## 2995 2022-09-16 CUB Latin America & Caribbean Havana
## 2996 2022-09-16 CUB Latin America & Caribbean Havana
## 2997 2022-09-16 CUB Latin America & Caribbean Havana
## 2998 2022-09-16 CUB Latin America & Caribbean Havana
## 2999 2022-09-16 CUB Latin America & Caribbean Havana
## 3000 2022-09-16 CUB Latin America & Caribbean Havana
## 3001 2022-09-16 CUB Latin America & Caribbean Havana
## 3002 2022-09-16 CUB Latin America & Caribbean Havana
## 3003 2022-09-16 CUB Latin America & Caribbean Havana
## 3004 2022-09-16 CUB Latin America & Caribbean Havana
## 3005 2022-09-16 CUB Latin America & Caribbean Havana
## 3006 2022-09-16 CUB Latin America & Caribbean Havana
## 3007 2022-09-16 CUB Latin America & Caribbean Havana
## 3008 2022-09-16 CUB Latin America & Caribbean Havana
## 3009 2022-09-16 CUB Latin America & Caribbean Havana
## 3010 2022-09-16 CUB Latin America & Caribbean Havana
## 3011 2022-09-16 CUB Latin America & Caribbean Havana
## 3012 2022-09-16 CUB Latin America & Caribbean Havana
## 3013 2022-09-16 CUB Latin America & Caribbean Havana
## 3014 2022-09-16 CUB Latin America & Caribbean Havana
## 3015 2022-09-16 CUB Latin America & Caribbean Havana
## 3016 2022-09-16 CUB Latin America & Caribbean Havana
## 3017 2022-09-16 CUB Latin America & Caribbean Havana
## 3018 2022-09-16 CUB Latin America & Caribbean Havana
## 3019 2022-09-16 CUB Latin America & Caribbean Havana
## 3020 2022-09-16 CUB Latin America & Caribbean Havana
## 3021 2022-09-16 CUB Latin America & Caribbean Havana
## 3022 2022-09-16 CUB Latin America & Caribbean Havana
## 3023 2022-09-16 CUB Latin America & Caribbean Havana
## 3024 2022-09-16 CUB Latin America & Caribbean Havana
## 3025 2022-09-16 CUB Latin America & Caribbean Havana
## 3026 2022-09-16 CUB Latin America & Caribbean Havana
## 3027 2022-09-16 CUB Latin America & Caribbean Havana
## 3028 2022-09-16 CUB Latin America & Caribbean Havana
## 3029 2022-09-16 CUB Latin America & Caribbean Havana
## 3030 2022-09-16 CUB Latin America & Caribbean Havana
## 3031 2022-09-16 CUB Latin America & Caribbean Havana
## 3032 2022-09-16 CUB Latin America & Caribbean Havana
## 3033 2022-09-16 CUB Latin America & Caribbean Havana
## 3034 2022-09-16 CUB Latin America & Caribbean Havana
## 3035 2022-09-16 CUB Latin America & Caribbean Havana
## 3036 2022-09-16 CUB Latin America & Caribbean Havana
## 3037 2022-09-16 CUB Latin America & Caribbean Havana
## 3038 2022-09-16 CUB Latin America & Caribbean Havana
## 3039 2022-09-16 CPV Sub-Saharan Africa Praia
## 3040 2022-09-16 CPV Sub-Saharan Africa Praia
## 3041 2022-09-16 CPV Sub-Saharan Africa Praia
## 3042 2022-09-16 CPV Sub-Saharan Africa Praia
## 3043 2022-09-16 CPV Sub-Saharan Africa Praia
## 3044 2022-09-16 CPV Sub-Saharan Africa Praia
## 3045 2022-09-16 CPV Sub-Saharan Africa Praia
## 3046 2022-09-16 CPV Sub-Saharan Africa Praia
## 3047 2022-09-16 CPV Sub-Saharan Africa Praia
## 3048 2022-09-16 CPV Sub-Saharan Africa Praia
## 3049 2022-09-16 CPV Sub-Saharan Africa Praia
## 3050 2022-09-16 CPV Sub-Saharan Africa Praia
## 3051 2022-09-16 CPV Sub-Saharan Africa Praia
## 3052 2022-09-16 CPV Sub-Saharan Africa Praia
## 3053 2022-09-16 CPV Sub-Saharan Africa Praia
## 3054 2022-09-16 CPV Sub-Saharan Africa Praia
## 3055 2022-09-16 CPV Sub-Saharan Africa Praia
## 3056 2022-09-16 CPV Sub-Saharan Africa Praia
## 3057 2022-09-16 CPV Sub-Saharan Africa Praia
## 3058 2022-09-16 CPV Sub-Saharan Africa Praia
## 3059 2022-09-16 CPV Sub-Saharan Africa Praia
## 3060 2022-09-16 CPV Sub-Saharan Africa Praia
## 3061 2022-09-16 CPV Sub-Saharan Africa Praia
## 3062 2022-09-16 CPV Sub-Saharan Africa Praia
## 3063 2022-09-16 CPV Sub-Saharan Africa Praia
## 3064 2022-09-16 CPV Sub-Saharan Africa Praia
## 3065 2022-09-16 CPV Sub-Saharan Africa Praia
## 3066 2022-09-16 CPV Sub-Saharan Africa Praia
## 3067 2022-09-16 CPV Sub-Saharan Africa Praia
## 3068 2022-09-16 CPV Sub-Saharan Africa Praia
## 3069 2022-09-16 CPV Sub-Saharan Africa Praia
## 3070 2022-09-16 CPV Sub-Saharan Africa Praia
## 3071 2022-09-16 CPV Sub-Saharan Africa Praia
## 3072 2022-09-16 CPV Sub-Saharan Africa Praia
## 3073 2022-09-16 CPV Sub-Saharan Africa Praia
## 3074 2022-09-16 CPV Sub-Saharan Africa Praia
## 3075 2022-09-16 CPV Sub-Saharan Africa Praia
## 3076 2022-09-16 CPV Sub-Saharan Africa Praia
## 3077 2022-09-16 CPV Sub-Saharan Africa Praia
## 3078 2022-09-16 CPV Sub-Saharan Africa Praia
## 3079 2022-09-16 CPV Sub-Saharan Africa Praia
## 3080 2022-09-16 CPV Sub-Saharan Africa Praia
## 3081 2022-09-16 CPV Sub-Saharan Africa Praia
## 3082 2022-09-16 CPV Sub-Saharan Africa Praia
## 3083 2022-09-16 CPV Sub-Saharan Africa Praia
## 3084 2022-09-16 CPV Sub-Saharan Africa Praia
## 3085 2022-09-16 CPV Sub-Saharan Africa Praia
## 3086 2022-09-16 CPV Sub-Saharan Africa Praia
## 3087 2022-09-16 CPV Sub-Saharan Africa Praia
## 3088 2022-09-16 CPV Sub-Saharan Africa Praia
## 3089 2022-09-16 CPV Sub-Saharan Africa Praia
## 3090 2022-09-16 CPV Sub-Saharan Africa Praia
## 3091 2022-09-16 CPV Sub-Saharan Africa Praia
## 3092 2022-09-16 CPV Sub-Saharan Africa Praia
## 3093 2022-09-16 CPV Sub-Saharan Africa Praia
## 3094 2022-09-16 CPV Sub-Saharan Africa Praia
## 3095 2022-09-16 CPV Sub-Saharan Africa Praia
## 3096 2022-09-16 CPV Sub-Saharan Africa Praia
## 3097 2022-09-16 CPV Sub-Saharan Africa Praia
## 3098 2022-09-16 CPV Sub-Saharan Africa Praia
## 3099 2022-09-16 CPV Sub-Saharan Africa Praia
## 3100 2022-09-16 CPV Sub-Saharan Africa Praia
## 3101 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3102 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3103 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3104 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3105 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3106 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3107 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3108 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3109 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3110 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3111 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3112 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3113 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3114 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3115 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3116 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3117 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3118 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3119 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3120 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3121 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3122 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3123 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3124 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3125 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3126 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3127 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3128 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3129 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3130 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3131 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3132 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3133 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3134 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3135 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3136 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3137 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3138 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3139 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3140 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3141 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3142 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3143 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3144 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3145 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3146 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3147 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3148 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3149 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3150 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3151 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3152 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3153 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3154 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3155 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3156 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3157 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3158 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3159 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3160 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3161 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3162 2022-09-16 CUW Latin America & Caribbean Willemstad
## 3163 2022-09-16 CYP Europe & Central Asia Nicosia
## 3164 2022-09-16 CYP Europe & Central Asia Nicosia
## 3165 2022-09-16 CYP Europe & Central Asia Nicosia
## 3166 2022-09-16 CYP Europe & Central Asia Nicosia
## 3167 2022-09-16 CYP Europe & Central Asia Nicosia
## 3168 2022-09-16 CYP Europe & Central Asia Nicosia
## 3169 2022-09-16 CYP Europe & Central Asia Nicosia
## 3170 2022-09-16 CYP Europe & Central Asia Nicosia
## 3171 2022-09-16 CYP Europe & Central Asia Nicosia
## 3172 2022-09-16 CYP Europe & Central Asia Nicosia
## 3173 2022-09-16 CYP Europe & Central Asia Nicosia
## 3174 2022-09-16 CYP Europe & Central Asia Nicosia
## 3175 2022-09-16 CYP Europe & Central Asia Nicosia
## 3176 2022-09-16 CYP Europe & Central Asia Nicosia
## 3177 2022-09-16 CYP Europe & Central Asia Nicosia
## 3178 2022-09-16 CYP Europe & Central Asia Nicosia
## 3179 2022-09-16 CYP Europe & Central Asia Nicosia
## 3180 2022-09-16 CYP Europe & Central Asia Nicosia
## 3181 2022-09-16 CYP Europe & Central Asia Nicosia
## 3182 2022-09-16 CYP Europe & Central Asia Nicosia
## 3183 2022-09-16 CYP Europe & Central Asia Nicosia
## 3184 2022-09-16 CYP Europe & Central Asia Nicosia
## 3185 2022-09-16 CYP Europe & Central Asia Nicosia
## 3186 2022-09-16 CYP Europe & Central Asia Nicosia
## 3187 2022-09-16 CYP Europe & Central Asia Nicosia
## 3188 2022-09-16 CYP Europe & Central Asia Nicosia
## 3189 2022-09-16 CYP Europe & Central Asia Nicosia
## 3190 2022-09-16 CYP Europe & Central Asia Nicosia
## 3191 2022-09-16 CYP Europe & Central Asia Nicosia
## 3192 2022-09-16 CYP Europe & Central Asia Nicosia
## 3193 2022-09-16 CYP Europe & Central Asia Nicosia
## 3194 2022-09-16 CYP Europe & Central Asia Nicosia
## 3195 2022-09-16 CYP Europe & Central Asia Nicosia
## 3196 2022-09-16 CYP Europe & Central Asia Nicosia
## 3197 2022-09-16 CYP Europe & Central Asia Nicosia
## 3198 2022-09-16 CYP Europe & Central Asia Nicosia
## 3199 2022-09-16 CYP Europe & Central Asia Nicosia
## 3200 2022-09-16 CYP Europe & Central Asia Nicosia
## 3201 2022-09-16 CYP Europe & Central Asia Nicosia
## 3202 2022-09-16 CYP Europe & Central Asia Nicosia
## 3203 2022-09-16 CYP Europe & Central Asia Nicosia
## 3204 2022-09-16 CYP Europe & Central Asia Nicosia
## 3205 2022-09-16 CYP Europe & Central Asia Nicosia
## 3206 2022-09-16 CYP Europe & Central Asia Nicosia
## 3207 2022-09-16 CYP Europe & Central Asia Nicosia
## 3208 2022-09-16 CYP Europe & Central Asia Nicosia
## 3209 2022-09-16 CYP Europe & Central Asia Nicosia
## 3210 2022-09-16 CYP Europe & Central Asia Nicosia
## 3211 2022-09-16 CYP Europe & Central Asia Nicosia
## 3212 2022-09-16 CYP Europe & Central Asia Nicosia
## 3213 2022-09-16 CYP Europe & Central Asia Nicosia
## 3214 2022-09-16 CYP Europe & Central Asia Nicosia
## 3215 2022-09-16 CYP Europe & Central Asia Nicosia
## 3216 2022-09-16 CYP Europe & Central Asia Nicosia
## 3217 2022-09-16 CYP Europe & Central Asia Nicosia
## 3218 2022-09-16 CYP Europe & Central Asia Nicosia
## 3219 2022-09-16 CYP Europe & Central Asia Nicosia
## 3220 2022-09-16 CYP Europe & Central Asia Nicosia
## 3221 2022-09-16 CYP Europe & Central Asia Nicosia
## 3222 2022-09-16 CYP Europe & Central Asia Nicosia
## 3223 2022-09-16 CYP Europe & Central Asia Nicosia
## 3224 2022-09-16 CYP Europe & Central Asia Nicosia
## 3225 2022-09-16 <NA> <NA> <NA>
## 3226 2022-09-16 <NA> <NA> <NA>
## 3227 2022-09-16 <NA> <NA> <NA>
## 3228 2022-09-16 <NA> <NA> <NA>
## 3229 2022-09-16 <NA> <NA> <NA>
## 3230 2022-09-16 <NA> <NA> <NA>
## 3231 2022-09-16 <NA> <NA> <NA>
## 3232 2022-09-16 <NA> <NA> <NA>
## 3233 2022-09-16 <NA> <NA> <NA>
## 3234 2022-09-16 <NA> <NA> <NA>
## 3235 2022-09-16 <NA> <NA> <NA>
## 3236 2022-09-16 <NA> <NA> <NA>
## 3237 2022-09-16 <NA> <NA> <NA>
## 3238 2022-09-16 <NA> <NA> <NA>
## 3239 2022-09-16 <NA> <NA> <NA>
## 3240 2022-09-16 <NA> <NA> <NA>
## 3241 2022-09-16 <NA> <NA> <NA>
## 3242 2022-09-16 <NA> <NA> <NA>
## 3243 2022-09-16 <NA> <NA> <NA>
## 3244 2022-09-16 <NA> <NA> <NA>
## 3245 2022-09-16 <NA> <NA> <NA>
## 3246 2022-09-16 <NA> <NA> <NA>
## 3247 2022-09-16 <NA> <NA> <NA>
## 3248 2022-09-16 <NA> <NA> <NA>
## 3249 2022-09-16 <NA> <NA> <NA>
## 3250 2022-09-16 <NA> <NA> <NA>
## 3251 2022-09-16 <NA> <NA> <NA>
## 3252 2022-09-16 <NA> <NA> <NA>
## 3253 2022-09-16 <NA> <NA> <NA>
## 3254 2022-09-16 <NA> <NA> <NA>
## 3255 2022-09-16 <NA> <NA> <NA>
## 3256 2022-09-16 <NA> <NA> <NA>
## 3257 2022-09-16 <NA> <NA> <NA>
## 3258 2022-09-16 <NA> <NA> <NA>
## 3259 2022-09-16 <NA> <NA> <NA>
## 3260 2022-09-16 <NA> <NA> <NA>
## 3261 2022-09-16 <NA> <NA> <NA>
## 3262 2022-09-16 <NA> <NA> <NA>
## 3263 2022-09-16 <NA> <NA> <NA>
## 3264 2022-09-16 <NA> <NA> <NA>
## 3265 2022-09-16 <NA> <NA> <NA>
## 3266 2022-09-16 <NA> <NA> <NA>
## 3267 2022-09-16 <NA> <NA> <NA>
## 3268 2022-09-16 <NA> <NA> <NA>
## 3269 2022-09-16 <NA> <NA> <NA>
## 3270 2022-09-16 <NA> <NA> <NA>
## 3271 2022-09-16 <NA> <NA> <NA>
## 3272 2022-09-16 <NA> <NA> <NA>
## 3273 2022-09-16 <NA> <NA> <NA>
## 3274 2022-09-16 <NA> <NA> <NA>
## 3275 2022-09-16 <NA> <NA> <NA>
## 3276 2022-09-16 <NA> <NA> <NA>
## 3277 2022-09-16 <NA> <NA> <NA>
## 3278 2022-09-16 <NA> <NA> <NA>
## 3279 2022-09-16 <NA> <NA> <NA>
## 3280 2022-09-16 <NA> <NA> <NA>
## 3281 2022-09-16 <NA> <NA> <NA>
## 3282 2022-09-16 <NA> <NA> <NA>
## 3283 2022-09-16 <NA> <NA> <NA>
## 3284 2022-09-16 <NA> <NA> <NA>
## 3285 2022-09-16 <NA> <NA> <NA>
## 3286 2022-09-16 <NA> <NA> <NA>
## 3287 2022-09-16 DEU Europe & Central Asia Berlin
## 3288 2022-09-16 DEU Europe & Central Asia Berlin
## 3289 2022-09-16 DEU Europe & Central Asia Berlin
## 3290 2022-09-16 DEU Europe & Central Asia Berlin
## 3291 2022-09-16 DEU Europe & Central Asia Berlin
## 3292 2022-09-16 DEU Europe & Central Asia Berlin
## 3293 2022-09-16 DEU Europe & Central Asia Berlin
## 3294 2022-09-16 DEU Europe & Central Asia Berlin
## 3295 2022-09-16 DEU Europe & Central Asia Berlin
## 3296 2022-09-16 DEU Europe & Central Asia Berlin
## 3297 2022-09-16 DEU Europe & Central Asia Berlin
## 3298 2022-09-16 DEU Europe & Central Asia Berlin
## 3299 2022-09-16 DEU Europe & Central Asia Berlin
## 3300 2022-09-16 DEU Europe & Central Asia Berlin
## 3301 2022-09-16 DEU Europe & Central Asia Berlin
## 3302 2022-09-16 DEU Europe & Central Asia Berlin
## 3303 2022-09-16 DEU Europe & Central Asia Berlin
## 3304 2022-09-16 DEU Europe & Central Asia Berlin
## 3305 2022-09-16 DEU Europe & Central Asia Berlin
## 3306 2022-09-16 DEU Europe & Central Asia Berlin
## 3307 2022-09-16 DEU Europe & Central Asia Berlin
## 3308 2022-09-16 DEU Europe & Central Asia Berlin
## 3309 2022-09-16 DEU Europe & Central Asia Berlin
## 3310 2022-09-16 DEU Europe & Central Asia Berlin
## 3311 2022-09-16 DEU Europe & Central Asia Berlin
## 3312 2022-09-16 DEU Europe & Central Asia Berlin
## 3313 2022-09-16 DEU Europe & Central Asia Berlin
## 3314 2022-09-16 DEU Europe & Central Asia Berlin
## 3315 2022-09-16 DEU Europe & Central Asia Berlin
## 3316 2022-09-16 DEU Europe & Central Asia Berlin
## 3317 2022-09-16 DEU Europe & Central Asia Berlin
## 3318 2022-09-16 DEU Europe & Central Asia Berlin
## 3319 2022-09-16 DEU Europe & Central Asia Berlin
## 3320 2022-09-16 DEU Europe & Central Asia Berlin
## 3321 2022-09-16 DEU Europe & Central Asia Berlin
## 3322 2022-09-16 DEU Europe & Central Asia Berlin
## 3323 2022-09-16 DEU Europe & Central Asia Berlin
## 3324 2022-09-16 DEU Europe & Central Asia Berlin
## 3325 2022-09-16 DEU Europe & Central Asia Berlin
## 3326 2022-09-16 DEU Europe & Central Asia Berlin
## 3327 2022-09-16 DEU Europe & Central Asia Berlin
## 3328 2022-09-16 DEU Europe & Central Asia Berlin
## 3329 2022-09-16 DEU Europe & Central Asia Berlin
## 3330 2022-09-16 DEU Europe & Central Asia Berlin
## 3331 2022-09-16 DEU Europe & Central Asia Berlin
## 3332 2022-09-16 DEU Europe & Central Asia Berlin
## 3333 2022-09-16 DEU Europe & Central Asia Berlin
## 3334 2022-09-16 DEU Europe & Central Asia Berlin
## 3335 2022-09-16 DEU Europe & Central Asia Berlin
## 3336 2022-09-16 DEU Europe & Central Asia Berlin
## 3337 2022-09-16 DEU Europe & Central Asia Berlin
## 3338 2022-09-16 DEU Europe & Central Asia Berlin
## 3339 2022-09-16 DEU Europe & Central Asia Berlin
## 3340 2022-09-16 DEU Europe & Central Asia Berlin
## 3341 2022-09-16 DEU Europe & Central Asia Berlin
## 3342 2022-09-16 DEU Europe & Central Asia Berlin
## 3343 2022-09-16 DEU Europe & Central Asia Berlin
## 3344 2022-09-16 DEU Europe & Central Asia Berlin
## 3345 2022-09-16 DEU Europe & Central Asia Berlin
## 3346 2022-09-16 DEU Europe & Central Asia Berlin
## 3347 2022-09-16 DEU Europe & Central Asia Berlin
## 3348 2022-09-16 DEU Europe & Central Asia Berlin
## 3349 2022-09-16 DJI Middle East & North Africa Djibouti
## 3350 2022-09-16 DJI Middle East & North Africa Djibouti
## 3351 2022-09-16 DJI Middle East & North Africa Djibouti
## 3352 2022-09-16 DJI Middle East & North Africa Djibouti
## 3353 2022-09-16 DJI Middle East & North Africa Djibouti
## 3354 2022-09-16 DJI Middle East & North Africa Djibouti
## 3355 2022-09-16 DJI Middle East & North Africa Djibouti
## 3356 2022-09-16 DJI Middle East & North Africa Djibouti
## 3357 2022-09-16 DJI Middle East & North Africa Djibouti
## 3358 2022-09-16 DJI Middle East & North Africa Djibouti
## 3359 2022-09-16 DJI Middle East & North Africa Djibouti
## 3360 2022-09-16 DJI Middle East & North Africa Djibouti
## 3361 2022-09-16 DJI Middle East & North Africa Djibouti
## 3362 2022-09-16 DJI Middle East & North Africa Djibouti
## 3363 2022-09-16 DJI Middle East & North Africa Djibouti
## 3364 2022-09-16 DJI Middle East & North Africa Djibouti
## 3365 2022-09-16 DJI Middle East & North Africa Djibouti
## 3366 2022-09-16 DJI Middle East & North Africa Djibouti
## 3367 2022-09-16 DJI Middle East & North Africa Djibouti
## 3368 2022-09-16 DJI Middle East & North Africa Djibouti
## 3369 2022-09-16 DJI Middle East & North Africa Djibouti
## 3370 2022-09-16 DJI Middle East & North Africa Djibouti
## 3371 2022-09-16 DJI Middle East & North Africa Djibouti
## 3372 2022-09-16 DJI Middle East & North Africa Djibouti
## 3373 2022-09-16 DJI Middle East & North Africa Djibouti
## 3374 2022-09-16 DJI Middle East & North Africa Djibouti
## 3375 2022-09-16 DJI Middle East & North Africa Djibouti
## 3376 2022-09-16 DJI Middle East & North Africa Djibouti
## 3377 2022-09-16 DJI Middle East & North Africa Djibouti
## 3378 2022-09-16 DJI Middle East & North Africa Djibouti
## 3379 2022-09-16 DJI Middle East & North Africa Djibouti
## 3380 2022-09-16 DJI Middle East & North Africa Djibouti
## 3381 2022-09-16 DJI Middle East & North Africa Djibouti
## 3382 2022-09-16 DJI Middle East & North Africa Djibouti
## 3383 2022-09-16 DJI Middle East & North Africa Djibouti
## 3384 2022-09-16 DJI Middle East & North Africa Djibouti
## 3385 2022-09-16 DJI Middle East & North Africa Djibouti
## 3386 2022-09-16 DJI Middle East & North Africa Djibouti
## 3387 2022-09-16 DJI Middle East & North Africa Djibouti
## 3388 2022-09-16 DJI Middle East & North Africa Djibouti
## 3389 2022-09-16 DJI Middle East & North Africa Djibouti
## 3390 2022-09-16 DJI Middle East & North Africa Djibouti
## 3391 2022-09-16 DJI Middle East & North Africa Djibouti
## 3392 2022-09-16 DJI Middle East & North Africa Djibouti
## 3393 2022-09-16 DJI Middle East & North Africa Djibouti
## 3394 2022-09-16 DJI Middle East & North Africa Djibouti
## 3395 2022-09-16 DJI Middle East & North Africa Djibouti
## 3396 2022-09-16 DJI Middle East & North Africa Djibouti
## 3397 2022-09-16 DJI Middle East & North Africa Djibouti
## 3398 2022-09-16 DJI Middle East & North Africa Djibouti
## 3399 2022-09-16 DJI Middle East & North Africa Djibouti
## 3400 2022-09-16 DJI Middle East & North Africa Djibouti
## 3401 2022-09-16 DJI Middle East & North Africa Djibouti
## 3402 2022-09-16 DJI Middle East & North Africa Djibouti
## 3403 2022-09-16 DJI Middle East & North Africa Djibouti
## 3404 2022-09-16 DJI Middle East & North Africa Djibouti
## 3405 2022-09-16 DJI Middle East & North Africa Djibouti
## 3406 2022-09-16 DJI Middle East & North Africa Djibouti
## 3407 2022-09-16 DJI Middle East & North Africa Djibouti
## 3408 2022-09-16 DJI Middle East & North Africa Djibouti
## 3409 2022-09-16 DJI Middle East & North Africa Djibouti
## 3410 2022-09-16 DJI Middle East & North Africa Djibouti
## 3411 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3412 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3413 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3414 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3415 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3416 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3417 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3418 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3419 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3420 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3421 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3422 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3423 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3424 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3425 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3426 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3427 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3428 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3429 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3430 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3431 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3432 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3433 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3434 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3435 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3436 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3437 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3438 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3439 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3440 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3441 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3442 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3443 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3444 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3445 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3446 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3447 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3448 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3449 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3450 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3451 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3452 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3453 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3454 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3455 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3456 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3457 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3458 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3459 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3460 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3461 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3462 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3463 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3464 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3465 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3466 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3467 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3468 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3469 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3470 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3471 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3472 2022-09-16 DNK Europe & Central Asia Copenhagen
## 3473 2022-09-16 DMA Latin America & Caribbean Roseau
## 3474 2022-09-16 DMA Latin America & Caribbean Roseau
## 3475 2022-09-16 DMA Latin America & Caribbean Roseau
## 3476 2022-09-16 DMA Latin America & Caribbean Roseau
## 3477 2022-09-16 DMA Latin America & Caribbean Roseau
## 3478 2022-09-16 DMA Latin America & Caribbean Roseau
## 3479 2022-09-16 DMA Latin America & Caribbean Roseau
## 3480 2022-09-16 DMA Latin America & Caribbean Roseau
## 3481 2022-09-16 DMA Latin America & Caribbean Roseau
## 3482 2022-09-16 DMA Latin America & Caribbean Roseau
## 3483 2022-09-16 DMA Latin America & Caribbean Roseau
## 3484 2022-09-16 DMA Latin America & Caribbean Roseau
## 3485 2022-09-16 DMA Latin America & Caribbean Roseau
## 3486 2022-09-16 DMA Latin America & Caribbean Roseau
## 3487 2022-09-16 DMA Latin America & Caribbean Roseau
## 3488 2022-09-16 DMA Latin America & Caribbean Roseau
## 3489 2022-09-16 DMA Latin America & Caribbean Roseau
## 3490 2022-09-16 DMA Latin America & Caribbean Roseau
## 3491 2022-09-16 DMA Latin America & Caribbean Roseau
## 3492 2022-09-16 DMA Latin America & Caribbean Roseau
## 3493 2022-09-16 DMA Latin America & Caribbean Roseau
## 3494 2022-09-16 DMA Latin America & Caribbean Roseau
## 3495 2022-09-16 DMA Latin America & Caribbean Roseau
## 3496 2022-09-16 DMA Latin America & Caribbean Roseau
## 3497 2022-09-16 DMA Latin America & Caribbean Roseau
## 3498 2022-09-16 DMA Latin America & Caribbean Roseau
## 3499 2022-09-16 DMA Latin America & Caribbean Roseau
## 3500 2022-09-16 DMA Latin America & Caribbean Roseau
## 3501 2022-09-16 DMA Latin America & Caribbean Roseau
## 3502 2022-09-16 DMA Latin America & Caribbean Roseau
## 3503 2022-09-16 DMA Latin America & Caribbean Roseau
## 3504 2022-09-16 DMA Latin America & Caribbean Roseau
## 3505 2022-09-16 DMA Latin America & Caribbean Roseau
## 3506 2022-09-16 DMA Latin America & Caribbean Roseau
## 3507 2022-09-16 DMA Latin America & Caribbean Roseau
## 3508 2022-09-16 DMA Latin America & Caribbean Roseau
## 3509 2022-09-16 DMA Latin America & Caribbean Roseau
## 3510 2022-09-16 DMA Latin America & Caribbean Roseau
## 3511 2022-09-16 DMA Latin America & Caribbean Roseau
## 3512 2022-09-16 DMA Latin America & Caribbean Roseau
## 3513 2022-09-16 DMA Latin America & Caribbean Roseau
## 3514 2022-09-16 DMA Latin America & Caribbean Roseau
## 3515 2022-09-16 DMA Latin America & Caribbean Roseau
## 3516 2022-09-16 DMA Latin America & Caribbean Roseau
## 3517 2022-09-16 DMA Latin America & Caribbean Roseau
## 3518 2022-09-16 DMA Latin America & Caribbean Roseau
## 3519 2022-09-16 DMA Latin America & Caribbean Roseau
## 3520 2022-09-16 DMA Latin America & Caribbean Roseau
## 3521 2022-09-16 DMA Latin America & Caribbean Roseau
## 3522 2022-09-16 DMA Latin America & Caribbean Roseau
## 3523 2022-09-16 DMA Latin America & Caribbean Roseau
## 3524 2022-09-16 DMA Latin America & Caribbean Roseau
## 3525 2022-09-16 DMA Latin America & Caribbean Roseau
## 3526 2022-09-16 DMA Latin America & Caribbean Roseau
## 3527 2022-09-16 DMA Latin America & Caribbean Roseau
## 3528 2022-09-16 DMA Latin America & Caribbean Roseau
## 3529 2022-09-16 DMA Latin America & Caribbean Roseau
## 3530 2022-09-16 DMA Latin America & Caribbean Roseau
## 3531 2022-09-16 DMA Latin America & Caribbean Roseau
## 3532 2022-09-16 DMA Latin America & Caribbean Roseau
## 3533 2022-09-16 DMA Latin America & Caribbean Roseau
## 3534 2022-09-16 DMA Latin America & Caribbean Roseau
## 3535 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3536 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3537 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3538 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3539 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3540 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3541 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3542 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3543 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3544 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3545 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3546 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3547 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3548 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3549 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3550 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3551 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3552 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3553 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3554 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3555 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3556 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3557 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3558 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3559 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3560 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3561 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3562 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3563 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3564 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3565 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3566 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3567 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3568 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3569 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3570 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3571 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3572 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3573 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3574 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3575 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3576 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3577 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3578 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3579 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3580 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3581 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3582 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3583 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3584 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3585 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3586 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3587 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3588 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3589 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3590 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3591 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3592 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3593 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3594 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3595 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3596 2022-09-16 DOM Latin America & Caribbean Santo Domingo
## 3597 2022-09-16 DZA Middle East & North Africa Algiers
## 3598 2022-09-16 DZA Middle East & North Africa Algiers
## 3599 2022-09-16 DZA Middle East & North Africa Algiers
## 3600 2022-09-16 DZA Middle East & North Africa Algiers
## 3601 2022-09-16 DZA Middle East & North Africa Algiers
## 3602 2022-09-16 DZA Middle East & North Africa Algiers
## 3603 2022-09-16 DZA Middle East & North Africa Algiers
## 3604 2022-09-16 DZA Middle East & North Africa Algiers
## 3605 2022-09-16 DZA Middle East & North Africa Algiers
## 3606 2022-09-16 DZA Middle East & North Africa Algiers
## 3607 2022-09-16 DZA Middle East & North Africa Algiers
## 3608 2022-09-16 DZA Middle East & North Africa Algiers
## 3609 2022-09-16 DZA Middle East & North Africa Algiers
## 3610 2022-09-16 DZA Middle East & North Africa Algiers
## 3611 2022-09-16 DZA Middle East & North Africa Algiers
## 3612 2022-09-16 DZA Middle East & North Africa Algiers
## 3613 2022-09-16 DZA Middle East & North Africa Algiers
## 3614 2022-09-16 DZA Middle East & North Africa Algiers
## 3615 2022-09-16 DZA Middle East & North Africa Algiers
## 3616 2022-09-16 DZA Middle East & North Africa Algiers
## 3617 2022-09-16 DZA Middle East & North Africa Algiers
## 3618 2022-09-16 DZA Middle East & North Africa Algiers
## 3619 2022-09-16 DZA Middle East & North Africa Algiers
## 3620 2022-09-16 DZA Middle East & North Africa Algiers
## 3621 2022-09-16 DZA Middle East & North Africa Algiers
## 3622 2022-09-16 DZA Middle East & North Africa Algiers
## 3623 2022-09-16 DZA Middle East & North Africa Algiers
## 3624 2022-09-16 DZA Middle East & North Africa Algiers
## 3625 2022-09-16 DZA Middle East & North Africa Algiers
## 3626 2022-09-16 DZA Middle East & North Africa Algiers
## 3627 2022-09-16 DZA Middle East & North Africa Algiers
## 3628 2022-09-16 DZA Middle East & North Africa Algiers
## 3629 2022-09-16 DZA Middle East & North Africa Algiers
## 3630 2022-09-16 DZA Middle East & North Africa Algiers
## 3631 2022-09-16 DZA Middle East & North Africa Algiers
## 3632 2022-09-16 DZA Middle East & North Africa Algiers
## 3633 2022-09-16 DZA Middle East & North Africa Algiers
## 3634 2022-09-16 DZA Middle East & North Africa Algiers
## 3635 2022-09-16 DZA Middle East & North Africa Algiers
## 3636 2022-09-16 DZA Middle East & North Africa Algiers
## 3637 2022-09-16 DZA Middle East & North Africa Algiers
## 3638 2022-09-16 DZA Middle East & North Africa Algiers
## 3639 2022-09-16 DZA Middle East & North Africa Algiers
## 3640 2022-09-16 DZA Middle East & North Africa Algiers
## 3641 2022-09-16 DZA Middle East & North Africa Algiers
## 3642 2022-09-16 DZA Middle East & North Africa Algiers
## 3643 2022-09-16 DZA Middle East & North Africa Algiers
## 3644 2022-09-16 DZA Middle East & North Africa Algiers
## 3645 2022-09-16 DZA Middle East & North Africa Algiers
## 3646 2022-09-16 DZA Middle East & North Africa Algiers
## 3647 2022-09-16 DZA Middle East & North Africa Algiers
## 3648 2022-09-16 DZA Middle East & North Africa Algiers
## 3649 2022-09-16 DZA Middle East & North Africa Algiers
## 3650 2022-09-16 DZA Middle East & North Africa Algiers
## 3651 2022-09-16 DZA Middle East & North Africa Algiers
## 3652 2022-09-16 DZA Middle East & North Africa Algiers
## 3653 2022-09-16 DZA Middle East & North Africa Algiers
## 3654 2022-09-16 DZA Middle East & North Africa Algiers
## 3655 2022-09-16 DZA Middle East & North Africa Algiers
## 3656 2022-09-16 DZA Middle East & North Africa Algiers
## 3657 2022-09-16 DZA Middle East & North Africa Algiers
## 3658 2022-09-16 DZA Middle East & North Africa Algiers
## 3659 2022-09-16 ECU Latin America & Caribbean Quito
## 3660 2022-09-16 ECU Latin America & Caribbean Quito
## 3661 2022-09-16 ECU Latin America & Caribbean Quito
## 3662 2022-09-16 ECU Latin America & Caribbean Quito
## 3663 2022-09-16 ECU Latin America & Caribbean Quito
## 3664 2022-09-16 ECU Latin America & Caribbean Quito
## 3665 2022-09-16 ECU Latin America & Caribbean Quito
## 3666 2022-09-16 ECU Latin America & Caribbean Quito
## 3667 2022-09-16 ECU Latin America & Caribbean Quito
## 3668 2022-09-16 ECU Latin America & Caribbean Quito
## 3669 2022-09-16 ECU Latin America & Caribbean Quito
## 3670 2022-09-16 ECU Latin America & Caribbean Quito
## 3671 2022-09-16 ECU Latin America & Caribbean Quito
## 3672 2022-09-16 ECU Latin America & Caribbean Quito
## 3673 2022-09-16 ECU Latin America & Caribbean Quito
## 3674 2022-09-16 ECU Latin America & Caribbean Quito
## 3675 2022-09-16 ECU Latin America & Caribbean Quito
## 3676 2022-09-16 ECU Latin America & Caribbean Quito
## 3677 2022-09-16 ECU Latin America & Caribbean Quito
## 3678 2022-09-16 ECU Latin America & Caribbean Quito
## 3679 2022-09-16 ECU Latin America & Caribbean Quito
## 3680 2022-09-16 ECU Latin America & Caribbean Quito
## 3681 2022-09-16 ECU Latin America & Caribbean Quito
## 3682 2022-09-16 ECU Latin America & Caribbean Quito
## 3683 2022-09-16 ECU Latin America & Caribbean Quito
## 3684 2022-09-16 ECU Latin America & Caribbean Quito
## 3685 2022-09-16 ECU Latin America & Caribbean Quito
## 3686 2022-09-16 ECU Latin America & Caribbean Quito
## 3687 2022-09-16 ECU Latin America & Caribbean Quito
## 3688 2022-09-16 ECU Latin America & Caribbean Quito
## 3689 2022-09-16 ECU Latin America & Caribbean Quito
## 3690 2022-09-16 ECU Latin America & Caribbean Quito
## 3691 2022-09-16 ECU Latin America & Caribbean Quito
## 3692 2022-09-16 ECU Latin America & Caribbean Quito
## 3693 2022-09-16 ECU Latin America & Caribbean Quito
## 3694 2022-09-16 ECU Latin America & Caribbean Quito
## 3695 2022-09-16 ECU Latin America & Caribbean Quito
## 3696 2022-09-16 ECU Latin America & Caribbean Quito
## 3697 2022-09-16 ECU Latin America & Caribbean Quito
## 3698 2022-09-16 ECU Latin America & Caribbean Quito
## 3699 2022-09-16 ECU Latin America & Caribbean Quito
## 3700 2022-09-16 ECU Latin America & Caribbean Quito
## 3701 2022-09-16 ECU Latin America & Caribbean Quito
## 3702 2022-09-16 ECU Latin America & Caribbean Quito
## 3703 2022-09-16 ECU Latin America & Caribbean Quito
## 3704 2022-09-16 ECU Latin America & Caribbean Quito
## 3705 2022-09-16 ECU Latin America & Caribbean Quito
## 3706 2022-09-16 ECU Latin America & Caribbean Quito
## 3707 2022-09-16 ECU Latin America & Caribbean Quito
## 3708 2022-09-16 ECU Latin America & Caribbean Quito
## 3709 2022-09-16 ECU Latin America & Caribbean Quito
## 3710 2022-09-16 ECU Latin America & Caribbean Quito
## 3711 2022-09-16 ECU Latin America & Caribbean Quito
## 3712 2022-09-16 ECU Latin America & Caribbean Quito
## 3713 2022-09-16 ECU Latin America & Caribbean Quito
## 3714 2022-09-16 ECU Latin America & Caribbean Quito
## 3715 2022-09-16 ECU Latin America & Caribbean Quito
## 3716 2022-09-16 ECU Latin America & Caribbean Quito
## 3717 2022-09-16 ECU Latin America & Caribbean Quito
## 3718 2022-09-16 ECU Latin America & Caribbean Quito
## 3719 2022-09-16 ECU Latin America & Caribbean Quito
## 3720 2022-09-16 ECU Latin America & Caribbean Quito
## 3721 2022-09-16 EST Europe & Central Asia Tallinn
## 3722 2022-09-16 EST Europe & Central Asia Tallinn
## 3723 2022-09-16 EST Europe & Central Asia Tallinn
## 3724 2022-09-16 EST Europe & Central Asia Tallinn
## 3725 2022-09-16 EST Europe & Central Asia Tallinn
## 3726 2022-09-16 EST Europe & Central Asia Tallinn
## 3727 2022-09-16 EST Europe & Central Asia Tallinn
## 3728 2022-09-16 EST Europe & Central Asia Tallinn
## 3729 2022-09-16 EST Europe & Central Asia Tallinn
## 3730 2022-09-16 EST Europe & Central Asia Tallinn
## 3731 2022-09-16 EST Europe & Central Asia Tallinn
## 3732 2022-09-16 EST Europe & Central Asia Tallinn
## 3733 2022-09-16 EST Europe & Central Asia Tallinn
## 3734 2022-09-16 EST Europe & Central Asia Tallinn
## 3735 2022-09-16 EST Europe & Central Asia Tallinn
## 3736 2022-09-16 EST Europe & Central Asia Tallinn
## 3737 2022-09-16 EST Europe & Central Asia Tallinn
## 3738 2022-09-16 EST Europe & Central Asia Tallinn
## 3739 2022-09-16 EST Europe & Central Asia Tallinn
## 3740 2022-09-16 EST Europe & Central Asia Tallinn
## 3741 2022-09-16 EST Europe & Central Asia Tallinn
## 3742 2022-09-16 EST Europe & Central Asia Tallinn
## 3743 2022-09-16 EST Europe & Central Asia Tallinn
## 3744 2022-09-16 EST Europe & Central Asia Tallinn
## 3745 2022-09-16 EST Europe & Central Asia Tallinn
## 3746 2022-09-16 EST Europe & Central Asia Tallinn
## 3747 2022-09-16 EST Europe & Central Asia Tallinn
## 3748 2022-09-16 EST Europe & Central Asia Tallinn
## 3749 2022-09-16 EST Europe & Central Asia Tallinn
## 3750 2022-09-16 EST Europe & Central Asia Tallinn
## 3751 2022-09-16 EST Europe & Central Asia Tallinn
## 3752 2022-09-16 EST Europe & Central Asia Tallinn
## 3753 2022-09-16 EST Europe & Central Asia Tallinn
## 3754 2022-09-16 EST Europe & Central Asia Tallinn
## 3755 2022-09-16 EST Europe & Central Asia Tallinn
## 3756 2022-09-16 EST Europe & Central Asia Tallinn
## 3757 2022-09-16 EST Europe & Central Asia Tallinn
## 3758 2022-09-16 EST Europe & Central Asia Tallinn
## 3759 2022-09-16 EST Europe & Central Asia Tallinn
## 3760 2022-09-16 EST Europe & Central Asia Tallinn
## 3761 2022-09-16 EST Europe & Central Asia Tallinn
## 3762 2022-09-16 EST Europe & Central Asia Tallinn
## 3763 2022-09-16 EST Europe & Central Asia Tallinn
## 3764 2022-09-16 EST Europe & Central Asia Tallinn
## 3765 2022-09-16 EST Europe & Central Asia Tallinn
## 3766 2022-09-16 EST Europe & Central Asia Tallinn
## 3767 2022-09-16 EST Europe & Central Asia Tallinn
## 3768 2022-09-16 EST Europe & Central Asia Tallinn
## 3769 2022-09-16 EST Europe & Central Asia Tallinn
## 3770 2022-09-16 EST Europe & Central Asia Tallinn
## 3771 2022-09-16 EST Europe & Central Asia Tallinn
## 3772 2022-09-16 EST Europe & Central Asia Tallinn
## 3773 2022-09-16 EST Europe & Central Asia Tallinn
## 3774 2022-09-16 EST Europe & Central Asia Tallinn
## 3775 2022-09-16 EST Europe & Central Asia Tallinn
## 3776 2022-09-16 EST Europe & Central Asia Tallinn
## 3777 2022-09-16 EST Europe & Central Asia Tallinn
## 3778 2022-09-16 EST Europe & Central Asia Tallinn
## 3779 2022-09-16 EST Europe & Central Asia Tallinn
## 3780 2022-09-16 EST Europe & Central Asia Tallinn
## 3781 2022-09-16 EST Europe & Central Asia Tallinn
## 3782 2022-09-16 EST Europe & Central Asia Tallinn
## 3783 2022-09-16 EGY Middle East & North Africa Cairo
## 3784 2022-09-16 EGY Middle East & North Africa Cairo
## 3785 2022-09-16 EGY Middle East & North Africa Cairo
## 3786 2022-09-16 EGY Middle East & North Africa Cairo
## 3787 2022-09-16 EGY Middle East & North Africa Cairo
## 3788 2022-09-16 EGY Middle East & North Africa Cairo
## 3789 2022-09-16 EGY Middle East & North Africa Cairo
## 3790 2022-09-16 EGY Middle East & North Africa Cairo
## 3791 2022-09-16 EGY Middle East & North Africa Cairo
## 3792 2022-09-16 EGY Middle East & North Africa Cairo
## 3793 2022-09-16 EGY Middle East & North Africa Cairo
## 3794 2022-09-16 EGY Middle East & North Africa Cairo
## 3795 2022-09-16 EGY Middle East & North Africa Cairo
## 3796 2022-09-16 EGY Middle East & North Africa Cairo
## 3797 2022-09-16 EGY Middle East & North Africa Cairo
## 3798 2022-09-16 EGY Middle East & North Africa Cairo
## 3799 2022-09-16 EGY Middle East & North Africa Cairo
## 3800 2022-09-16 EGY Middle East & North Africa Cairo
## 3801 2022-09-16 EGY Middle East & North Africa Cairo
## 3802 2022-09-16 EGY Middle East & North Africa Cairo
## 3803 2022-09-16 EGY Middle East & North Africa Cairo
## 3804 2022-09-16 EGY Middle East & North Africa Cairo
## 3805 2022-09-16 EGY Middle East & North Africa Cairo
## 3806 2022-09-16 EGY Middle East & North Africa Cairo
## 3807 2022-09-16 EGY Middle East & North Africa Cairo
## 3808 2022-09-16 EGY Middle East & North Africa Cairo
## 3809 2022-09-16 EGY Middle East & North Africa Cairo
## 3810 2022-09-16 EGY Middle East & North Africa Cairo
## 3811 2022-09-16 EGY Middle East & North Africa Cairo
## 3812 2022-09-16 EGY Middle East & North Africa Cairo
## 3813 2022-09-16 EGY Middle East & North Africa Cairo
## 3814 2022-09-16 EGY Middle East & North Africa Cairo
## 3815 2022-09-16 EGY Middle East & North Africa Cairo
## 3816 2022-09-16 EGY Middle East & North Africa Cairo
## 3817 2022-09-16 EGY Middle East & North Africa Cairo
## 3818 2022-09-16 EGY Middle East & North Africa Cairo
## 3819 2022-09-16 EGY Middle East & North Africa Cairo
## 3820 2022-09-16 EGY Middle East & North Africa Cairo
## 3821 2022-09-16 EGY Middle East & North Africa Cairo
## 3822 2022-09-16 EGY Middle East & North Africa Cairo
## 3823 2022-09-16 EGY Middle East & North Africa Cairo
## 3824 2022-09-16 EGY Middle East & North Africa Cairo
## 3825 2022-09-16 EGY Middle East & North Africa Cairo
## 3826 2022-09-16 EGY Middle East & North Africa Cairo
## 3827 2022-09-16 EGY Middle East & North Africa Cairo
## 3828 2022-09-16 EGY Middle East & North Africa Cairo
## 3829 2022-09-16 EGY Middle East & North Africa Cairo
## 3830 2022-09-16 EGY Middle East & North Africa Cairo
## 3831 2022-09-16 EGY Middle East & North Africa Cairo
## 3832 2022-09-16 EGY Middle East & North Africa Cairo
## 3833 2022-09-16 EGY Middle East & North Africa Cairo
## 3834 2022-09-16 EGY Middle East & North Africa Cairo
## 3835 2022-09-16 EGY Middle East & North Africa Cairo
## 3836 2022-09-16 EGY Middle East & North Africa Cairo
## 3837 2022-09-16 EGY Middle East & North Africa Cairo
## 3838 2022-09-16 EGY Middle East & North Africa Cairo
## 3839 2022-09-16 EGY Middle East & North Africa Cairo
## 3840 2022-09-16 EGY Middle East & North Africa Cairo
## 3841 2022-09-16 EGY Middle East & North Africa Cairo
## 3842 2022-09-16 EGY Middle East & North Africa Cairo
## 3843 2022-09-16 EGY Middle East & North Africa Cairo
## 3844 2022-09-16 EGY Middle East & North Africa Cairo
## 3845 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3846 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3847 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3848 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3849 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3850 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3851 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3852 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3853 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3854 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3855 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3856 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3857 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3858 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3859 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3860 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3861 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3862 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3863 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3864 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3865 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3866 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3867 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3868 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3869 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3870 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3871 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3872 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3873 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3874 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3875 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3876 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3877 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3878 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3879 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3880 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3881 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3882 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3883 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3884 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3885 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3886 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3887 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3888 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3889 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3890 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3891 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3892 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3893 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3894 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3895 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3896 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3897 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3898 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3899 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3900 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3901 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3902 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3903 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3904 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3905 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3906 2022-09-16 ERI Sub-Saharan Africa Asmara
## 3907 2022-09-16 ESP Europe & Central Asia Madrid
## 3908 2022-09-16 ESP Europe & Central Asia Madrid
## 3909 2022-09-16 ESP Europe & Central Asia Madrid
## 3910 2022-09-16 ESP Europe & Central Asia Madrid
## 3911 2022-09-16 ESP Europe & Central Asia Madrid
## 3912 2022-09-16 ESP Europe & Central Asia Madrid
## 3913 2022-09-16 ESP Europe & Central Asia Madrid
## 3914 2022-09-16 ESP Europe & Central Asia Madrid
## 3915 2022-09-16 ESP Europe & Central Asia Madrid
## 3916 2022-09-16 ESP Europe & Central Asia Madrid
## 3917 2022-09-16 ESP Europe & Central Asia Madrid
## 3918 2022-09-16 ESP Europe & Central Asia Madrid
## 3919 2022-09-16 ESP Europe & Central Asia Madrid
## 3920 2022-09-16 ESP Europe & Central Asia Madrid
## 3921 2022-09-16 ESP Europe & Central Asia Madrid
## 3922 2022-09-16 ESP Europe & Central Asia Madrid
## 3923 2022-09-16 ESP Europe & Central Asia Madrid
## 3924 2022-09-16 ESP Europe & Central Asia Madrid
## 3925 2022-09-16 ESP Europe & Central Asia Madrid
## 3926 2022-09-16 ESP Europe & Central Asia Madrid
## 3927 2022-09-16 ESP Europe & Central Asia Madrid
## 3928 2022-09-16 ESP Europe & Central Asia Madrid
## 3929 2022-09-16 ESP Europe & Central Asia Madrid
## 3930 2022-09-16 ESP Europe & Central Asia Madrid
## 3931 2022-09-16 ESP Europe & Central Asia Madrid
## 3932 2022-09-16 ESP Europe & Central Asia Madrid
## 3933 2022-09-16 ESP Europe & Central Asia Madrid
## 3934 2022-09-16 ESP Europe & Central Asia Madrid
## 3935 2022-09-16 ESP Europe & Central Asia Madrid
## 3936 2022-09-16 ESP Europe & Central Asia Madrid
## 3937 2022-09-16 ESP Europe & Central Asia Madrid
## 3938 2022-09-16 ESP Europe & Central Asia Madrid
## 3939 2022-09-16 ESP Europe & Central Asia Madrid
## 3940 2022-09-16 ESP Europe & Central Asia Madrid
## 3941 2022-09-16 ESP Europe & Central Asia Madrid
## 3942 2022-09-16 ESP Europe & Central Asia Madrid
## 3943 2022-09-16 ESP Europe & Central Asia Madrid
## 3944 2022-09-16 ESP Europe & Central Asia Madrid
## 3945 2022-09-16 ESP Europe & Central Asia Madrid
## 3946 2022-09-16 ESP Europe & Central Asia Madrid
## 3947 2022-09-16 ESP Europe & Central Asia Madrid
## 3948 2022-09-16 ESP Europe & Central Asia Madrid
## 3949 2022-09-16 ESP Europe & Central Asia Madrid
## 3950 2022-09-16 ESP Europe & Central Asia Madrid
## 3951 2022-09-16 ESP Europe & Central Asia Madrid
## 3952 2022-09-16 ESP Europe & Central Asia Madrid
## 3953 2022-09-16 ESP Europe & Central Asia Madrid
## 3954 2022-09-16 ESP Europe & Central Asia Madrid
## 3955 2022-09-16 ESP Europe & Central Asia Madrid
## 3956 2022-09-16 ESP Europe & Central Asia Madrid
## 3957 2022-09-16 ESP Europe & Central Asia Madrid
## 3958 2022-09-16 ESP Europe & Central Asia Madrid
## 3959 2022-09-16 ESP Europe & Central Asia Madrid
## 3960 2022-09-16 ESP Europe & Central Asia Madrid
## 3961 2022-09-16 ESP Europe & Central Asia Madrid
## 3962 2022-09-16 ESP Europe & Central Asia Madrid
## 3963 2022-09-16 ESP Europe & Central Asia Madrid
## 3964 2022-09-16 ESP Europe & Central Asia Madrid
## 3965 2022-09-16 ESP Europe & Central Asia Madrid
## 3966 2022-09-16 ESP Europe & Central Asia Madrid
## 3967 2022-09-16 ESP Europe & Central Asia Madrid
## 3968 2022-09-16 ESP Europe & Central Asia Madrid
## 3969 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3970 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3971 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3972 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3973 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3974 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3975 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3976 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3977 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3978 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3979 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3980 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3981 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3982 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3983 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3984 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3985 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3986 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3987 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3988 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3989 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3990 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3991 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3992 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3993 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3994 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3995 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3996 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3997 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3998 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 3999 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4000 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4001 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4002 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4003 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4004 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4005 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4006 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4007 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4008 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4009 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4010 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4011 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4012 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4013 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4014 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4015 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4016 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4017 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4018 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4019 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4020 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4021 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4022 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4023 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4024 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4025 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4026 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4027 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4028 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4029 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4030 2022-09-16 ETH Sub-Saharan Africa Addis Ababa
## 4031 2022-09-16 EUU Aggregates
## 4032 2022-09-16 EUU Aggregates
## 4033 2022-09-16 EUU Aggregates
## 4034 2022-09-16 EUU Aggregates
## 4035 2022-09-16 EUU Aggregates
## 4036 2022-09-16 EUU Aggregates
## 4037 2022-09-16 EUU Aggregates
## 4038 2022-09-16 EUU Aggregates
## 4039 2022-09-16 EUU Aggregates
## 4040 2022-09-16 EUU Aggregates
## 4041 2022-09-16 EUU Aggregates
## 4042 2022-09-16 EUU Aggregates
## 4043 2022-09-16 EUU Aggregates
## 4044 2022-09-16 EUU Aggregates
## 4045 2022-09-16 EUU Aggregates
## 4046 2022-09-16 EUU Aggregates
## 4047 2022-09-16 EUU Aggregates
## 4048 2022-09-16 EUU Aggregates
## 4049 2022-09-16 EUU Aggregates
## 4050 2022-09-16 EUU Aggregates
## 4051 2022-09-16 EUU Aggregates
## 4052 2022-09-16 EUU Aggregates
## 4053 2022-09-16 EUU Aggregates
## 4054 2022-09-16 EUU Aggregates
## 4055 2022-09-16 EUU Aggregates
## 4056 2022-09-16 EUU Aggregates
## 4057 2022-09-16 EUU Aggregates
## 4058 2022-09-16 EUU Aggregates
## 4059 2022-09-16 EUU Aggregates
## 4060 2022-09-16 EUU Aggregates
## 4061 2022-09-16 EUU Aggregates
## 4062 2022-09-16 EUU Aggregates
## 4063 2022-09-16 EUU Aggregates
## 4064 2022-09-16 EUU Aggregates
## 4065 2022-09-16 EUU Aggregates
## 4066 2022-09-16 EUU Aggregates
## 4067 2022-09-16 EUU Aggregates
## 4068 2022-09-16 EUU Aggregates
## 4069 2022-09-16 EUU Aggregates
## 4070 2022-09-16 EUU Aggregates
## 4071 2022-09-16 EUU Aggregates
## 4072 2022-09-16 EUU Aggregates
## 4073 2022-09-16 EUU Aggregates
## 4074 2022-09-16 EUU Aggregates
## 4075 2022-09-16 EUU Aggregates
## 4076 2022-09-16 EUU Aggregates
## 4077 2022-09-16 EUU Aggregates
## 4078 2022-09-16 EUU Aggregates
## 4079 2022-09-16 EUU Aggregates
## 4080 2022-09-16 EUU Aggregates
## 4081 2022-09-16 EUU Aggregates
## 4082 2022-09-16 EUU Aggregates
## 4083 2022-09-16 EUU Aggregates
## 4084 2022-09-16 EUU Aggregates
## 4085 2022-09-16 EUU Aggregates
## 4086 2022-09-16 EUU Aggregates
## 4087 2022-09-16 EUU Aggregates
## 4088 2022-09-16 EUU Aggregates
## 4089 2022-09-16 EUU Aggregates
## 4090 2022-09-16 EUU Aggregates
## 4091 2022-09-16 EUU Aggregates
## 4092 2022-09-16 EUU Aggregates
## 4093 2022-09-16 FCS Aggregates
## 4094 2022-09-16 FCS Aggregates
## 4095 2022-09-16 FCS Aggregates
## 4096 2022-09-16 FCS Aggregates
## 4097 2022-09-16 FCS Aggregates
## 4098 2022-09-16 FCS Aggregates
## 4099 2022-09-16 FCS Aggregates
## 4100 2022-09-16 FCS Aggregates
## 4101 2022-09-16 FCS Aggregates
## 4102 2022-09-16 FCS Aggregates
## 4103 2022-09-16 FCS Aggregates
## 4104 2022-09-16 FCS Aggregates
## 4105 2022-09-16 FCS Aggregates
## 4106 2022-09-16 FCS Aggregates
## 4107 2022-09-16 FCS Aggregates
## 4108 2022-09-16 FCS Aggregates
## 4109 2022-09-16 FCS Aggregates
## 4110 2022-09-16 FCS Aggregates
## 4111 2022-09-16 FCS Aggregates
## 4112 2022-09-16 FCS Aggregates
## 4113 2022-09-16 FCS Aggregates
## 4114 2022-09-16 FCS Aggregates
## 4115 2022-09-16 FCS Aggregates
## 4116 2022-09-16 FCS Aggregates
## 4117 2022-09-16 FCS Aggregates
## 4118 2022-09-16 FCS Aggregates
## 4119 2022-09-16 FCS Aggregates
## 4120 2022-09-16 FCS Aggregates
## 4121 2022-09-16 FCS Aggregates
## 4122 2022-09-16 FCS Aggregates
## 4123 2022-09-16 FCS Aggregates
## 4124 2022-09-16 FCS Aggregates
## 4125 2022-09-16 FCS Aggregates
## 4126 2022-09-16 FCS Aggregates
## 4127 2022-09-16 FCS Aggregates
## 4128 2022-09-16 FCS Aggregates
## 4129 2022-09-16 FCS Aggregates
## 4130 2022-09-16 FCS Aggregates
## 4131 2022-09-16 FCS Aggregates
## 4132 2022-09-16 FCS Aggregates
## 4133 2022-09-16 FCS Aggregates
## 4134 2022-09-16 FCS Aggregates
## 4135 2022-09-16 FCS Aggregates
## 4136 2022-09-16 FCS Aggregates
## 4137 2022-09-16 FCS Aggregates
## 4138 2022-09-16 FCS Aggregates
## 4139 2022-09-16 FCS Aggregates
## 4140 2022-09-16 FCS Aggregates
## 4141 2022-09-16 FCS Aggregates
## 4142 2022-09-16 FCS Aggregates
## 4143 2022-09-16 FCS Aggregates
## 4144 2022-09-16 FCS Aggregates
## 4145 2022-09-16 FCS Aggregates
## 4146 2022-09-16 FCS Aggregates
## 4147 2022-09-16 FCS Aggregates
## 4148 2022-09-16 FCS Aggregates
## 4149 2022-09-16 FCS Aggregates
## 4150 2022-09-16 FCS Aggregates
## 4151 2022-09-16 FCS Aggregates
## 4152 2022-09-16 FCS Aggregates
## 4153 2022-09-16 FCS Aggregates
## 4154 2022-09-16 FCS Aggregates
## 4155 2022-09-16 FIN Europe & Central Asia Helsinki
## 4156 2022-09-16 FIN Europe & Central Asia Helsinki
## 4157 2022-09-16 FIN Europe & Central Asia Helsinki
## 4158 2022-09-16 FIN Europe & Central Asia Helsinki
## 4159 2022-09-16 FIN Europe & Central Asia Helsinki
## 4160 2022-09-16 FIN Europe & Central Asia Helsinki
## 4161 2022-09-16 FIN Europe & Central Asia Helsinki
## 4162 2022-09-16 FIN Europe & Central Asia Helsinki
## 4163 2022-09-16 FIN Europe & Central Asia Helsinki
## 4164 2022-09-16 FIN Europe & Central Asia Helsinki
## 4165 2022-09-16 FIN Europe & Central Asia Helsinki
## 4166 2022-09-16 FIN Europe & Central Asia Helsinki
## 4167 2022-09-16 FIN Europe & Central Asia Helsinki
## 4168 2022-09-16 FIN Europe & Central Asia Helsinki
## 4169 2022-09-16 FIN Europe & Central Asia Helsinki
## 4170 2022-09-16 FIN Europe & Central Asia Helsinki
## 4171 2022-09-16 FIN Europe & Central Asia Helsinki
## 4172 2022-09-16 FIN Europe & Central Asia Helsinki
## 4173 2022-09-16 FIN Europe & Central Asia Helsinki
## 4174 2022-09-16 FIN Europe & Central Asia Helsinki
## 4175 2022-09-16 FIN Europe & Central Asia Helsinki
## 4176 2022-09-16 FIN Europe & Central Asia Helsinki
## 4177 2022-09-16 FIN Europe & Central Asia Helsinki
## 4178 2022-09-16 FIN Europe & Central Asia Helsinki
## 4179 2022-09-16 FIN Europe & Central Asia Helsinki
## 4180 2022-09-16 FIN Europe & Central Asia Helsinki
## 4181 2022-09-16 FIN Europe & Central Asia Helsinki
## 4182 2022-09-16 FIN Europe & Central Asia Helsinki
## 4183 2022-09-16 FIN Europe & Central Asia Helsinki
## 4184 2022-09-16 FIN Europe & Central Asia Helsinki
## 4185 2022-09-16 FIN Europe & Central Asia Helsinki
## 4186 2022-09-16 FIN Europe & Central Asia Helsinki
## 4187 2022-09-16 FIN Europe & Central Asia Helsinki
## 4188 2022-09-16 FIN Europe & Central Asia Helsinki
## 4189 2022-09-16 FIN Europe & Central Asia Helsinki
## 4190 2022-09-16 FIN Europe & Central Asia Helsinki
## 4191 2022-09-16 FIN Europe & Central Asia Helsinki
## 4192 2022-09-16 FIN Europe & Central Asia Helsinki
## 4193 2022-09-16 FIN Europe & Central Asia Helsinki
## 4194 2022-09-16 FIN Europe & Central Asia Helsinki
## 4195 2022-09-16 FIN Europe & Central Asia Helsinki
## 4196 2022-09-16 FIN Europe & Central Asia Helsinki
## 4197 2022-09-16 FIN Europe & Central Asia Helsinki
## 4198 2022-09-16 FIN Europe & Central Asia Helsinki
## 4199 2022-09-16 FIN Europe & Central Asia Helsinki
## 4200 2022-09-16 FIN Europe & Central Asia Helsinki
## 4201 2022-09-16 FIN Europe & Central Asia Helsinki
## 4202 2022-09-16 FIN Europe & Central Asia Helsinki
## 4203 2022-09-16 FIN Europe & Central Asia Helsinki
## 4204 2022-09-16 FIN Europe & Central Asia Helsinki
## 4205 2022-09-16 FIN Europe & Central Asia Helsinki
## 4206 2022-09-16 FIN Europe & Central Asia Helsinki
## 4207 2022-09-16 FIN Europe & Central Asia Helsinki
## 4208 2022-09-16 FIN Europe & Central Asia Helsinki
## 4209 2022-09-16 FIN Europe & Central Asia Helsinki
## 4210 2022-09-16 FIN Europe & Central Asia Helsinki
## 4211 2022-09-16 FIN Europe & Central Asia Helsinki
## 4212 2022-09-16 FIN Europe & Central Asia Helsinki
## 4213 2022-09-16 FIN Europe & Central Asia Helsinki
## 4214 2022-09-16 FIN Europe & Central Asia Helsinki
## 4215 2022-09-16 FIN Europe & Central Asia Helsinki
## 4216 2022-09-16 FIN Europe & Central Asia Helsinki
## 4217 2022-09-16 FJI East Asia & Pacific Suva
## 4218 2022-09-16 FJI East Asia & Pacific Suva
## 4219 2022-09-16 FJI East Asia & Pacific Suva
## 4220 2022-09-16 FJI East Asia & Pacific Suva
## 4221 2022-09-16 FJI East Asia & Pacific Suva
## 4222 2022-09-16 FJI East Asia & Pacific Suva
## 4223 2022-09-16 FJI East Asia & Pacific Suva
## 4224 2022-09-16 FJI East Asia & Pacific Suva
## 4225 2022-09-16 FJI East Asia & Pacific Suva
## 4226 2022-09-16 FJI East Asia & Pacific Suva
## 4227 2022-09-16 FJI East Asia & Pacific Suva
## 4228 2022-09-16 FJI East Asia & Pacific Suva
## 4229 2022-09-16 FJI East Asia & Pacific Suva
## 4230 2022-09-16 FJI East Asia & Pacific Suva
## 4231 2022-09-16 FJI East Asia & Pacific Suva
## 4232 2022-09-16 FJI East Asia & Pacific Suva
## 4233 2022-09-16 FJI East Asia & Pacific Suva
## 4234 2022-09-16 FJI East Asia & Pacific Suva
## 4235 2022-09-16 FJI East Asia & Pacific Suva
## 4236 2022-09-16 FJI East Asia & Pacific Suva
## 4237 2022-09-16 FJI East Asia & Pacific Suva
## 4238 2022-09-16 FJI East Asia & Pacific Suva
## 4239 2022-09-16 FJI East Asia & Pacific Suva
## 4240 2022-09-16 FJI East Asia & Pacific Suva
## 4241 2022-09-16 FJI East Asia & Pacific Suva
## 4242 2022-09-16 FJI East Asia & Pacific Suva
## 4243 2022-09-16 FJI East Asia & Pacific Suva
## 4244 2022-09-16 FJI East Asia & Pacific Suva
## 4245 2022-09-16 FJI East Asia & Pacific Suva
## 4246 2022-09-16 FJI East Asia & Pacific Suva
## 4247 2022-09-16 FJI East Asia & Pacific Suva
## 4248 2022-09-16 FJI East Asia & Pacific Suva
## 4249 2022-09-16 FJI East Asia & Pacific Suva
## 4250 2022-09-16 FJI East Asia & Pacific Suva
## 4251 2022-09-16 FJI East Asia & Pacific Suva
## 4252 2022-09-16 FJI East Asia & Pacific Suva
## 4253 2022-09-16 FJI East Asia & Pacific Suva
## 4254 2022-09-16 FJI East Asia & Pacific Suva
## 4255 2022-09-16 FJI East Asia & Pacific Suva
## 4256 2022-09-16 FJI East Asia & Pacific Suva
## 4257 2022-09-16 FJI East Asia & Pacific Suva
## 4258 2022-09-16 FJI East Asia & Pacific Suva
## 4259 2022-09-16 FJI East Asia & Pacific Suva
## 4260 2022-09-16 FJI East Asia & Pacific Suva
## 4261 2022-09-16 FJI East Asia & Pacific Suva
## 4262 2022-09-16 FJI East Asia & Pacific Suva
## 4263 2022-09-16 FJI East Asia & Pacific Suva
## 4264 2022-09-16 FJI East Asia & Pacific Suva
## 4265 2022-09-16 FJI East Asia & Pacific Suva
## 4266 2022-09-16 FJI East Asia & Pacific Suva
## 4267 2022-09-16 FJI East Asia & Pacific Suva
## 4268 2022-09-16 FJI East Asia & Pacific Suva
## 4269 2022-09-16 FJI East Asia & Pacific Suva
## 4270 2022-09-16 FJI East Asia & Pacific Suva
## 4271 2022-09-16 FJI East Asia & Pacific Suva
## 4272 2022-09-16 FJI East Asia & Pacific Suva
## 4273 2022-09-16 FJI East Asia & Pacific Suva
## 4274 2022-09-16 FJI East Asia & Pacific Suva
## 4275 2022-09-16 FJI East Asia & Pacific Suva
## 4276 2022-09-16 FJI East Asia & Pacific Suva
## 4277 2022-09-16 FJI East Asia & Pacific Suva
## 4278 2022-09-16 FJI East Asia & Pacific Suva
## 4279 2022-09-16 FSM East Asia & Pacific Palikir
## 4280 2022-09-16 FSM East Asia & Pacific Palikir
## 4281 2022-09-16 FSM East Asia & Pacific Palikir
## 4282 2022-09-16 FSM East Asia & Pacific Palikir
## 4283 2022-09-16 FSM East Asia & Pacific Palikir
## 4284 2022-09-16 FSM East Asia & Pacific Palikir
## 4285 2022-09-16 FSM East Asia & Pacific Palikir
## 4286 2022-09-16 FSM East Asia & Pacific Palikir
## 4287 2022-09-16 FSM East Asia & Pacific Palikir
## 4288 2022-09-16 FSM East Asia & Pacific Palikir
## 4289 2022-09-16 FSM East Asia & Pacific Palikir
## 4290 2022-09-16 FSM East Asia & Pacific Palikir
## 4291 2022-09-16 FSM East Asia & Pacific Palikir
## 4292 2022-09-16 FSM East Asia & Pacific Palikir
## 4293 2022-09-16 FSM East Asia & Pacific Palikir
## 4294 2022-09-16 FSM East Asia & Pacific Palikir
## 4295 2022-09-16 FSM East Asia & Pacific Palikir
## 4296 2022-09-16 FSM East Asia & Pacific Palikir
## 4297 2022-09-16 FSM East Asia & Pacific Palikir
## 4298 2022-09-16 FSM East Asia & Pacific Palikir
## 4299 2022-09-16 FSM East Asia & Pacific Palikir
## 4300 2022-09-16 FSM East Asia & Pacific Palikir
## 4301 2022-09-16 FSM East Asia & Pacific Palikir
## 4302 2022-09-16 FSM East Asia & Pacific Palikir
## 4303 2022-09-16 FSM East Asia & Pacific Palikir
## 4304 2022-09-16 FSM East Asia & Pacific Palikir
## 4305 2022-09-16 FSM East Asia & Pacific Palikir
## 4306 2022-09-16 FSM East Asia & Pacific Palikir
## 4307 2022-09-16 FSM East Asia & Pacific Palikir
## 4308 2022-09-16 FSM East Asia & Pacific Palikir
## 4309 2022-09-16 FSM East Asia & Pacific Palikir
## 4310 2022-09-16 FSM East Asia & Pacific Palikir
## 4311 2022-09-16 FSM East Asia & Pacific Palikir
## 4312 2022-09-16 FSM East Asia & Pacific Palikir
## 4313 2022-09-16 FSM East Asia & Pacific Palikir
## 4314 2022-09-16 FSM East Asia & Pacific Palikir
## 4315 2022-09-16 FSM East Asia & Pacific Palikir
## 4316 2022-09-16 FSM East Asia & Pacific Palikir
## 4317 2022-09-16 FSM East Asia & Pacific Palikir
## 4318 2022-09-16 FSM East Asia & Pacific Palikir
## 4319 2022-09-16 FSM East Asia & Pacific Palikir
## 4320 2022-09-16 FSM East Asia & Pacific Palikir
## 4321 2022-09-16 FSM East Asia & Pacific Palikir
## 4322 2022-09-16 FSM East Asia & Pacific Palikir
## 4323 2022-09-16 FSM East Asia & Pacific Palikir
## 4324 2022-09-16 FSM East Asia & Pacific Palikir
## 4325 2022-09-16 FSM East Asia & Pacific Palikir
## 4326 2022-09-16 FSM East Asia & Pacific Palikir
## 4327 2022-09-16 FSM East Asia & Pacific Palikir
## 4328 2022-09-16 FSM East Asia & Pacific Palikir
## 4329 2022-09-16 FSM East Asia & Pacific Palikir
## 4330 2022-09-16 FSM East Asia & Pacific Palikir
## 4331 2022-09-16 FSM East Asia & Pacific Palikir
## 4332 2022-09-16 FSM East Asia & Pacific Palikir
## 4333 2022-09-16 FSM East Asia & Pacific Palikir
## 4334 2022-09-16 FSM East Asia & Pacific Palikir
## 4335 2022-09-16 FSM East Asia & Pacific Palikir
## 4336 2022-09-16 FSM East Asia & Pacific Palikir
## 4337 2022-09-16 FSM East Asia & Pacific Palikir
## 4338 2022-09-16 FSM East Asia & Pacific Palikir
## 4339 2022-09-16 FSM East Asia & Pacific Palikir
## 4340 2022-09-16 FSM East Asia & Pacific Palikir
## 4341 2022-09-16 FRO Europe & Central Asia Torshavn
## 4342 2022-09-16 FRO Europe & Central Asia Torshavn
## 4343 2022-09-16 FRO Europe & Central Asia Torshavn
## 4344 2022-09-16 FRO Europe & Central Asia Torshavn
## 4345 2022-09-16 FRO Europe & Central Asia Torshavn
## 4346 2022-09-16 FRO Europe & Central Asia Torshavn
## 4347 2022-09-16 FRO Europe & Central Asia Torshavn
## 4348 2022-09-16 FRO Europe & Central Asia Torshavn
## 4349 2022-09-16 FRO Europe & Central Asia Torshavn
## 4350 2022-09-16 FRO Europe & Central Asia Torshavn
## 4351 2022-09-16 FRO Europe & Central Asia Torshavn
## 4352 2022-09-16 FRO Europe & Central Asia Torshavn
## 4353 2022-09-16 FRO Europe & Central Asia Torshavn
## 4354 2022-09-16 FRO Europe & Central Asia Torshavn
## 4355 2022-09-16 FRO Europe & Central Asia Torshavn
## 4356 2022-09-16 FRO Europe & Central Asia Torshavn
## 4357 2022-09-16 FRO Europe & Central Asia Torshavn
## 4358 2022-09-16 FRO Europe & Central Asia Torshavn
## 4359 2022-09-16 FRO Europe & Central Asia Torshavn
## 4360 2022-09-16 FRO Europe & Central Asia Torshavn
## 4361 2022-09-16 FRO Europe & Central Asia Torshavn
## 4362 2022-09-16 FRO Europe & Central Asia Torshavn
## 4363 2022-09-16 FRO Europe & Central Asia Torshavn
## 4364 2022-09-16 FRO Europe & Central Asia Torshavn
## 4365 2022-09-16 FRO Europe & Central Asia Torshavn
## 4366 2022-09-16 FRO Europe & Central Asia Torshavn
## 4367 2022-09-16 FRO Europe & Central Asia Torshavn
## 4368 2022-09-16 FRO Europe & Central Asia Torshavn
## 4369 2022-09-16 FRO Europe & Central Asia Torshavn
## 4370 2022-09-16 FRO Europe & Central Asia Torshavn
## 4371 2022-09-16 FRO Europe & Central Asia Torshavn
## 4372 2022-09-16 FRO Europe & Central Asia Torshavn
## 4373 2022-09-16 FRO Europe & Central Asia Torshavn
## 4374 2022-09-16 FRO Europe & Central Asia Torshavn
## 4375 2022-09-16 FRO Europe & Central Asia Torshavn
## 4376 2022-09-16 FRO Europe & Central Asia Torshavn
## 4377 2022-09-16 FRO Europe & Central Asia Torshavn
## 4378 2022-09-16 FRO Europe & Central Asia Torshavn
## 4379 2022-09-16 FRO Europe & Central Asia Torshavn
## 4380 2022-09-16 FRO Europe & Central Asia Torshavn
## 4381 2022-09-16 FRO Europe & Central Asia Torshavn
## 4382 2022-09-16 FRO Europe & Central Asia Torshavn
## 4383 2022-09-16 FRO Europe & Central Asia Torshavn
## 4384 2022-09-16 FRO Europe & Central Asia Torshavn
## 4385 2022-09-16 FRO Europe & Central Asia Torshavn
## 4386 2022-09-16 FRO Europe & Central Asia Torshavn
## 4387 2022-09-16 FRO Europe & Central Asia Torshavn
## 4388 2022-09-16 FRO Europe & Central Asia Torshavn
## 4389 2022-09-16 FRO Europe & Central Asia Torshavn
## 4390 2022-09-16 FRO Europe & Central Asia Torshavn
## 4391 2022-09-16 FRO Europe & Central Asia Torshavn
## 4392 2022-09-16 FRO Europe & Central Asia Torshavn
## 4393 2022-09-16 FRO Europe & Central Asia Torshavn
## 4394 2022-09-16 FRO Europe & Central Asia Torshavn
## 4395 2022-09-16 FRO Europe & Central Asia Torshavn
## 4396 2022-09-16 FRO Europe & Central Asia Torshavn
## 4397 2022-09-16 FRO Europe & Central Asia Torshavn
## 4398 2022-09-16 FRO Europe & Central Asia Torshavn
## 4399 2022-09-16 FRO Europe & Central Asia Torshavn
## 4400 2022-09-16 FRO Europe & Central Asia Torshavn
## 4401 2022-09-16 FRO Europe & Central Asia Torshavn
## 4402 2022-09-16 FRO Europe & Central Asia Torshavn
## 4403 2022-09-16 FRA Europe & Central Asia Paris
## 4404 2022-09-16 FRA Europe & Central Asia Paris
## 4405 2022-09-16 FRA Europe & Central Asia Paris
## 4406 2022-09-16 FRA Europe & Central Asia Paris
## 4407 2022-09-16 FRA Europe & Central Asia Paris
## 4408 2022-09-16 FRA Europe & Central Asia Paris
## 4409 2022-09-16 FRA Europe & Central Asia Paris
## 4410 2022-09-16 FRA Europe & Central Asia Paris
## 4411 2022-09-16 FRA Europe & Central Asia Paris
## 4412 2022-09-16 FRA Europe & Central Asia Paris
## 4413 2022-09-16 FRA Europe & Central Asia Paris
## 4414 2022-09-16 FRA Europe & Central Asia Paris
## 4415 2022-09-16 FRA Europe & Central Asia Paris
## 4416 2022-09-16 FRA Europe & Central Asia Paris
## 4417 2022-09-16 FRA Europe & Central Asia Paris
## 4418 2022-09-16 FRA Europe & Central Asia Paris
## 4419 2022-09-16 FRA Europe & Central Asia Paris
## 4420 2022-09-16 FRA Europe & Central Asia Paris
## 4421 2022-09-16 FRA Europe & Central Asia Paris
## 4422 2022-09-16 FRA Europe & Central Asia Paris
## 4423 2022-09-16 FRA Europe & Central Asia Paris
## 4424 2022-09-16 FRA Europe & Central Asia Paris
## 4425 2022-09-16 FRA Europe & Central Asia Paris
## 4426 2022-09-16 FRA Europe & Central Asia Paris
## 4427 2022-09-16 FRA Europe & Central Asia Paris
## 4428 2022-09-16 FRA Europe & Central Asia Paris
## 4429 2022-09-16 FRA Europe & Central Asia Paris
## 4430 2022-09-16 FRA Europe & Central Asia Paris
## 4431 2022-09-16 FRA Europe & Central Asia Paris
## 4432 2022-09-16 FRA Europe & Central Asia Paris
## 4433 2022-09-16 FRA Europe & Central Asia Paris
## 4434 2022-09-16 FRA Europe & Central Asia Paris
## 4435 2022-09-16 FRA Europe & Central Asia Paris
## 4436 2022-09-16 FRA Europe & Central Asia Paris
## 4437 2022-09-16 FRA Europe & Central Asia Paris
## 4438 2022-09-16 FRA Europe & Central Asia Paris
## 4439 2022-09-16 FRA Europe & Central Asia Paris
## 4440 2022-09-16 FRA Europe & Central Asia Paris
## 4441 2022-09-16 FRA Europe & Central Asia Paris
## 4442 2022-09-16 FRA Europe & Central Asia Paris
## 4443 2022-09-16 FRA Europe & Central Asia Paris
## 4444 2022-09-16 FRA Europe & Central Asia Paris
## 4445 2022-09-16 FRA Europe & Central Asia Paris
## 4446 2022-09-16 FRA Europe & Central Asia Paris
## 4447 2022-09-16 FRA Europe & Central Asia Paris
## 4448 2022-09-16 FRA Europe & Central Asia Paris
## 4449 2022-09-16 FRA Europe & Central Asia Paris
## 4450 2022-09-16 FRA Europe & Central Asia Paris
## 4451 2022-09-16 FRA Europe & Central Asia Paris
## 4452 2022-09-16 FRA Europe & Central Asia Paris
## 4453 2022-09-16 FRA Europe & Central Asia Paris
## 4454 2022-09-16 FRA Europe & Central Asia Paris
## 4455 2022-09-16 FRA Europe & Central Asia Paris
## 4456 2022-09-16 FRA Europe & Central Asia Paris
## 4457 2022-09-16 FRA Europe & Central Asia Paris
## 4458 2022-09-16 FRA Europe & Central Asia Paris
## 4459 2022-09-16 FRA Europe & Central Asia Paris
## 4460 2022-09-16 FRA Europe & Central Asia Paris
## 4461 2022-09-16 FRA Europe & Central Asia Paris
## 4462 2022-09-16 FRA Europe & Central Asia Paris
## 4463 2022-09-16 FRA Europe & Central Asia Paris
## 4464 2022-09-16 FRA Europe & Central Asia Paris
## 4465 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4466 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4467 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4468 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4469 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4470 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4471 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4472 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4473 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4474 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4475 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4476 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4477 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4478 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4479 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4480 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4481 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4482 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4483 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4484 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4485 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4486 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4487 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4488 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4489 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4490 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4491 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4492 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4493 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4494 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4495 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4496 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4497 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4498 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4499 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4500 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4501 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4502 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4503 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4504 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4505 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4506 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4507 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4508 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4509 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4510 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4511 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4512 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4513 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4514 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4515 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4516 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4517 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4518 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4519 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4520 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4521 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4522 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4523 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4524 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4525 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4526 2022-09-16 GAB Sub-Saharan Africa Libreville
## 4527 2022-09-16 GBR Europe & Central Asia London
## 4528 2022-09-16 GBR Europe & Central Asia London
## 4529 2022-09-16 GBR Europe & Central Asia London
## 4530 2022-09-16 GBR Europe & Central Asia London
## 4531 2022-09-16 GBR Europe & Central Asia London
## 4532 2022-09-16 GBR Europe & Central Asia London
## 4533 2022-09-16 GBR Europe & Central Asia London
## 4534 2022-09-16 GBR Europe & Central Asia London
## 4535 2022-09-16 GBR Europe & Central Asia London
## 4536 2022-09-16 GBR Europe & Central Asia London
## 4537 2022-09-16 GBR Europe & Central Asia London
## 4538 2022-09-16 GBR Europe & Central Asia London
## 4539 2022-09-16 GBR Europe & Central Asia London
## 4540 2022-09-16 GBR Europe & Central Asia London
## 4541 2022-09-16 GBR Europe & Central Asia London
## 4542 2022-09-16 GBR Europe & Central Asia London
## 4543 2022-09-16 GBR Europe & Central Asia London
## 4544 2022-09-16 GBR Europe & Central Asia London
## 4545 2022-09-16 GBR Europe & Central Asia London
## 4546 2022-09-16 GBR Europe & Central Asia London
## 4547 2022-09-16 GBR Europe & Central Asia London
## 4548 2022-09-16 GBR Europe & Central Asia London
## 4549 2022-09-16 GBR Europe & Central Asia London
## 4550 2022-09-16 GBR Europe & Central Asia London
## 4551 2022-09-16 GBR Europe & Central Asia London
## 4552 2022-09-16 GBR Europe & Central Asia London
## 4553 2022-09-16 GBR Europe & Central Asia London
## 4554 2022-09-16 GBR Europe & Central Asia London
## 4555 2022-09-16 GBR Europe & Central Asia London
## 4556 2022-09-16 GBR Europe & Central Asia London
## 4557 2022-09-16 GBR Europe & Central Asia London
## 4558 2022-09-16 GBR Europe & Central Asia London
## 4559 2022-09-16 GBR Europe & Central Asia London
## 4560 2022-09-16 GBR Europe & Central Asia London
## 4561 2022-09-16 GBR Europe & Central Asia London
## 4562 2022-09-16 GBR Europe & Central Asia London
## 4563 2022-09-16 GBR Europe & Central Asia London
## 4564 2022-09-16 GBR Europe & Central Asia London
## 4565 2022-09-16 GBR Europe & Central Asia London
## 4566 2022-09-16 GBR Europe & Central Asia London
## 4567 2022-09-16 GBR Europe & Central Asia London
## 4568 2022-09-16 GBR Europe & Central Asia London
## 4569 2022-09-16 GBR Europe & Central Asia London
## 4570 2022-09-16 GBR Europe & Central Asia London
## 4571 2022-09-16 GBR Europe & Central Asia London
## 4572 2022-09-16 GBR Europe & Central Asia London
## 4573 2022-09-16 GBR Europe & Central Asia London
## 4574 2022-09-16 GBR Europe & Central Asia London
## 4575 2022-09-16 GBR Europe & Central Asia London
## 4576 2022-09-16 GBR Europe & Central Asia London
## 4577 2022-09-16 GBR Europe & Central Asia London
## 4578 2022-09-16 GBR Europe & Central Asia London
## 4579 2022-09-16 GBR Europe & Central Asia London
## 4580 2022-09-16 GBR Europe & Central Asia London
## 4581 2022-09-16 GBR Europe & Central Asia London
## 4582 2022-09-16 GBR Europe & Central Asia London
## 4583 2022-09-16 GBR Europe & Central Asia London
## 4584 2022-09-16 GBR Europe & Central Asia London
## 4585 2022-09-16 GBR Europe & Central Asia London
## 4586 2022-09-16 GBR Europe & Central Asia London
## 4587 2022-09-16 GBR Europe & Central Asia London
## 4588 2022-09-16 GBR Europe & Central Asia London
## 4589 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4590 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4591 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4592 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4593 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4594 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4595 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4596 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4597 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4598 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4599 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4600 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4601 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4602 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4603 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4604 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4605 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4606 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4607 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4608 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4609 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4610 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4611 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4612 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4613 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4614 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4615 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4616 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4617 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4618 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4619 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4620 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4621 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4622 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4623 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4624 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4625 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4626 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4627 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4628 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4629 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4630 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4631 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4632 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4633 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4634 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4635 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4636 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4637 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4638 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4639 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4640 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4641 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4642 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4643 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4644 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4645 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4646 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4647 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4648 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4649 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4650 2022-09-16 GRD Latin America & Caribbean Saint George's
## 4651 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4652 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4653 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4654 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4655 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4656 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4657 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4658 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4659 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4660 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4661 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4662 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4663 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4664 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4665 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4666 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4667 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4668 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4669 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4670 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4671 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4672 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4673 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4674 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4675 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4676 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4677 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4678 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4679 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4680 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4681 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4682 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4683 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4684 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4685 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4686 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4687 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4688 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4689 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4690 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4691 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4692 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4693 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4694 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4695 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4696 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4697 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4698 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4699 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4700 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4701 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4702 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4703 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4704 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4705 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4706 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4707 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4708 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4709 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4710 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4711 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4712 2022-09-16 GEO Europe & Central Asia Tbilisi
## 4713 2022-09-16 GHA Sub-Saharan Africa Accra
## 4714 2022-09-16 GHA Sub-Saharan Africa Accra
## 4715 2022-09-16 GHA Sub-Saharan Africa Accra
## 4716 2022-09-16 GHA Sub-Saharan Africa Accra
## 4717 2022-09-16 GHA Sub-Saharan Africa Accra
## 4718 2022-09-16 GHA Sub-Saharan Africa Accra
## 4719 2022-09-16 GHA Sub-Saharan Africa Accra
## 4720 2022-09-16 GHA Sub-Saharan Africa Accra
## 4721 2022-09-16 GHA Sub-Saharan Africa Accra
## 4722 2022-09-16 GHA Sub-Saharan Africa Accra
## 4723 2022-09-16 GHA Sub-Saharan Africa Accra
## 4724 2022-09-16 GHA Sub-Saharan Africa Accra
## 4725 2022-09-16 GHA Sub-Saharan Africa Accra
## 4726 2022-09-16 GHA Sub-Saharan Africa Accra
## 4727 2022-09-16 GHA Sub-Saharan Africa Accra
## 4728 2022-09-16 GHA Sub-Saharan Africa Accra
## 4729 2022-09-16 GHA Sub-Saharan Africa Accra
## 4730 2022-09-16 GHA Sub-Saharan Africa Accra
## 4731 2022-09-16 GHA Sub-Saharan Africa Accra
## 4732 2022-09-16 GHA Sub-Saharan Africa Accra
## 4733 2022-09-16 GHA Sub-Saharan Africa Accra
## 4734 2022-09-16 GHA Sub-Saharan Africa Accra
## 4735 2022-09-16 GHA Sub-Saharan Africa Accra
## 4736 2022-09-16 GHA Sub-Saharan Africa Accra
## 4737 2022-09-16 GHA Sub-Saharan Africa Accra
## 4738 2022-09-16 GHA Sub-Saharan Africa Accra
## 4739 2022-09-16 GHA Sub-Saharan Africa Accra
## 4740 2022-09-16 GHA Sub-Saharan Africa Accra
## 4741 2022-09-16 GHA Sub-Saharan Africa Accra
## 4742 2022-09-16 GHA Sub-Saharan Africa Accra
## 4743 2022-09-16 GHA Sub-Saharan Africa Accra
## 4744 2022-09-16 GHA Sub-Saharan Africa Accra
## 4745 2022-09-16 GHA Sub-Saharan Africa Accra
## 4746 2022-09-16 GHA Sub-Saharan Africa Accra
## 4747 2022-09-16 GHA Sub-Saharan Africa Accra
## 4748 2022-09-16 GHA Sub-Saharan Africa Accra
## 4749 2022-09-16 GHA Sub-Saharan Africa Accra
## 4750 2022-09-16 GHA Sub-Saharan Africa Accra
## 4751 2022-09-16 GHA Sub-Saharan Africa Accra
## 4752 2022-09-16 GHA Sub-Saharan Africa Accra
## 4753 2022-09-16 GHA Sub-Saharan Africa Accra
## 4754 2022-09-16 GHA Sub-Saharan Africa Accra
## 4755 2022-09-16 GHA Sub-Saharan Africa Accra
## 4756 2022-09-16 GHA Sub-Saharan Africa Accra
## 4757 2022-09-16 GHA Sub-Saharan Africa Accra
## 4758 2022-09-16 GHA Sub-Saharan Africa Accra
## 4759 2022-09-16 GHA Sub-Saharan Africa Accra
## 4760 2022-09-16 GHA Sub-Saharan Africa Accra
## 4761 2022-09-16 GHA Sub-Saharan Africa Accra
## 4762 2022-09-16 GHA Sub-Saharan Africa Accra
## 4763 2022-09-16 GHA Sub-Saharan Africa Accra
## 4764 2022-09-16 GHA Sub-Saharan Africa Accra
## 4765 2022-09-16 GHA Sub-Saharan Africa Accra
## 4766 2022-09-16 GHA Sub-Saharan Africa Accra
## 4767 2022-09-16 GHA Sub-Saharan Africa Accra
## 4768 2022-09-16 GHA Sub-Saharan Africa Accra
## 4769 2022-09-16 GHA Sub-Saharan Africa Accra
## 4770 2022-09-16 GHA Sub-Saharan Africa Accra
## 4771 2022-09-16 GHA Sub-Saharan Africa Accra
## 4772 2022-09-16 GHA Sub-Saharan Africa Accra
## 4773 2022-09-16 GHA Sub-Saharan Africa Accra
## 4774 2022-09-16 GHA Sub-Saharan Africa Accra
## 4775 2022-09-16 GIB Europe & Central Asia
## 4776 2022-09-16 GIB Europe & Central Asia
## 4777 2022-09-16 GIB Europe & Central Asia
## 4778 2022-09-16 GIB Europe & Central Asia
## 4779 2022-09-16 GIB Europe & Central Asia
## 4780 2022-09-16 GIB Europe & Central Asia
## 4781 2022-09-16 GIB Europe & Central Asia
## 4782 2022-09-16 GIB Europe & Central Asia
## 4783 2022-09-16 GIB Europe & Central Asia
## 4784 2022-09-16 GIB Europe & Central Asia
## 4785 2022-09-16 GIB Europe & Central Asia
## 4786 2022-09-16 GIB Europe & Central Asia
## 4787 2022-09-16 GIB Europe & Central Asia
## 4788 2022-09-16 GIB Europe & Central Asia
## 4789 2022-09-16 GIB Europe & Central Asia
## 4790 2022-09-16 GIB Europe & Central Asia
## 4791 2022-09-16 GIB Europe & Central Asia
## 4792 2022-09-16 GIB Europe & Central Asia
## 4793 2022-09-16 GIB Europe & Central Asia
## 4794 2022-09-16 GIB Europe & Central Asia
## 4795 2022-09-16 GIB Europe & Central Asia
## 4796 2022-09-16 GIB Europe & Central Asia
## 4797 2022-09-16 GIB Europe & Central Asia
## 4798 2022-09-16 GIB Europe & Central Asia
## 4799 2022-09-16 GIB Europe & Central Asia
## 4800 2022-09-16 GIB Europe & Central Asia
## 4801 2022-09-16 GIB Europe & Central Asia
## 4802 2022-09-16 GIB Europe & Central Asia
## 4803 2022-09-16 GIB Europe & Central Asia
## 4804 2022-09-16 GIB Europe & Central Asia
## 4805 2022-09-16 GIB Europe & Central Asia
## 4806 2022-09-16 GIB Europe & Central Asia
## 4807 2022-09-16 GIB Europe & Central Asia
## 4808 2022-09-16 GIB Europe & Central Asia
## 4809 2022-09-16 GIB Europe & Central Asia
## 4810 2022-09-16 GIB Europe & Central Asia
## 4811 2022-09-16 GIB Europe & Central Asia
## 4812 2022-09-16 GIB Europe & Central Asia
## 4813 2022-09-16 GIB Europe & Central Asia
## 4814 2022-09-16 GIB Europe & Central Asia
## 4815 2022-09-16 GIB Europe & Central Asia
## 4816 2022-09-16 GIB Europe & Central Asia
## 4817 2022-09-16 GIB Europe & Central Asia
## 4818 2022-09-16 GIB Europe & Central Asia
## 4819 2022-09-16 GIB Europe & Central Asia
## 4820 2022-09-16 GIB Europe & Central Asia
## 4821 2022-09-16 GIB Europe & Central Asia
## 4822 2022-09-16 GIB Europe & Central Asia
## 4823 2022-09-16 GIB Europe & Central Asia
## 4824 2022-09-16 GIB Europe & Central Asia
## 4825 2022-09-16 GIB Europe & Central Asia
## 4826 2022-09-16 GIB Europe & Central Asia
## 4827 2022-09-16 GIB Europe & Central Asia
## 4828 2022-09-16 GIB Europe & Central Asia
## 4829 2022-09-16 GIB Europe & Central Asia
## 4830 2022-09-16 GIB Europe & Central Asia
## 4831 2022-09-16 GIB Europe & Central Asia
## 4832 2022-09-16 GIB Europe & Central Asia
## 4833 2022-09-16 GIB Europe & Central Asia
## 4834 2022-09-16 GIB Europe & Central Asia
## 4835 2022-09-16 GIB Europe & Central Asia
## 4836 2022-09-16 GIB Europe & Central Asia
## 4837 2022-09-16 GRL Europe & Central Asia Nuuk
## 4838 2022-09-16 GRL Europe & Central Asia Nuuk
## 4839 2022-09-16 GRL Europe & Central Asia Nuuk
## 4840 2022-09-16 GRL Europe & Central Asia Nuuk
## 4841 2022-09-16 GRL Europe & Central Asia Nuuk
## 4842 2022-09-16 GRL Europe & Central Asia Nuuk
## 4843 2022-09-16 GRL Europe & Central Asia Nuuk
## 4844 2022-09-16 GRL Europe & Central Asia Nuuk
## 4845 2022-09-16 GRL Europe & Central Asia Nuuk
## 4846 2022-09-16 GRL Europe & Central Asia Nuuk
## 4847 2022-09-16 GRL Europe & Central Asia Nuuk
## 4848 2022-09-16 GRL Europe & Central Asia Nuuk
## 4849 2022-09-16 GRL Europe & Central Asia Nuuk
## 4850 2022-09-16 GRL Europe & Central Asia Nuuk
## 4851 2022-09-16 GRL Europe & Central Asia Nuuk
## 4852 2022-09-16 GRL Europe & Central Asia Nuuk
## 4853 2022-09-16 GRL Europe & Central Asia Nuuk
## 4854 2022-09-16 GRL Europe & Central Asia Nuuk
## 4855 2022-09-16 GRL Europe & Central Asia Nuuk
## 4856 2022-09-16 GRL Europe & Central Asia Nuuk
## 4857 2022-09-16 GRL Europe & Central Asia Nuuk
## 4858 2022-09-16 GRL Europe & Central Asia Nuuk
## 4859 2022-09-16 GRL Europe & Central Asia Nuuk
## 4860 2022-09-16 GRL Europe & Central Asia Nuuk
## 4861 2022-09-16 GRL Europe & Central Asia Nuuk
## 4862 2022-09-16 GRL Europe & Central Asia Nuuk
## 4863 2022-09-16 GRL Europe & Central Asia Nuuk
## 4864 2022-09-16 GRL Europe & Central Asia Nuuk
## 4865 2022-09-16 GRL Europe & Central Asia Nuuk
## 4866 2022-09-16 GRL Europe & Central Asia Nuuk
## 4867 2022-09-16 GRL Europe & Central Asia Nuuk
## 4868 2022-09-16 GRL Europe & Central Asia Nuuk
## 4869 2022-09-16 GRL Europe & Central Asia Nuuk
## 4870 2022-09-16 GRL Europe & Central Asia Nuuk
## 4871 2022-09-16 GRL Europe & Central Asia Nuuk
## 4872 2022-09-16 GRL Europe & Central Asia Nuuk
## 4873 2022-09-16 GRL Europe & Central Asia Nuuk
## 4874 2022-09-16 GRL Europe & Central Asia Nuuk
## 4875 2022-09-16 GRL Europe & Central Asia Nuuk
## 4876 2022-09-16 GRL Europe & Central Asia Nuuk
## 4877 2022-09-16 GRL Europe & Central Asia Nuuk
## 4878 2022-09-16 GRL Europe & Central Asia Nuuk
## 4879 2022-09-16 GRL Europe & Central Asia Nuuk
## 4880 2022-09-16 GRL Europe & Central Asia Nuuk
## 4881 2022-09-16 GRL Europe & Central Asia Nuuk
## 4882 2022-09-16 GRL Europe & Central Asia Nuuk
## 4883 2022-09-16 GRL Europe & Central Asia Nuuk
## 4884 2022-09-16 GRL Europe & Central Asia Nuuk
## 4885 2022-09-16 GRL Europe & Central Asia Nuuk
## 4886 2022-09-16 GRL Europe & Central Asia Nuuk
## 4887 2022-09-16 GRL Europe & Central Asia Nuuk
## 4888 2022-09-16 GRL Europe & Central Asia Nuuk
## 4889 2022-09-16 GRL Europe & Central Asia Nuuk
## 4890 2022-09-16 GRL Europe & Central Asia Nuuk
## 4891 2022-09-16 GRL Europe & Central Asia Nuuk
## 4892 2022-09-16 GRL Europe & Central Asia Nuuk
## 4893 2022-09-16 GRL Europe & Central Asia Nuuk
## 4894 2022-09-16 GRL Europe & Central Asia Nuuk
## 4895 2022-09-16 GRL Europe & Central Asia Nuuk
## 4896 2022-09-16 GRL Europe & Central Asia Nuuk
## 4897 2022-09-16 GRL Europe & Central Asia Nuuk
## 4898 2022-09-16 GRL Europe & Central Asia Nuuk
## 4899 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4900 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4901 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4902 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4903 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4904 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4905 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4906 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4907 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4908 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4909 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4910 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4911 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4912 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4913 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4914 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4915 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4916 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4917 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4918 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4919 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4920 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4921 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4922 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4923 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4924 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4925 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4926 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4927 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4928 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4929 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4930 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4931 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4932 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4933 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4934 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4935 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4936 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4937 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4938 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4939 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4940 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4941 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4942 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4943 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4944 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4945 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4946 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4947 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4948 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4949 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4950 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4951 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4952 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4953 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4954 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4955 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4956 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4957 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4958 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4959 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4960 2022-09-16 GMB Sub-Saharan Africa Banjul
## 4961 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4962 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4963 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4964 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4965 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4966 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4967 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4968 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4969 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4970 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4971 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4972 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4973 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4974 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4975 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4976 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4977 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4978 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4979 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4980 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4981 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4982 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4983 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4984 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4985 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4986 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4987 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4988 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4989 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4990 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4991 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4992 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4993 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4994 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4995 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4996 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4997 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4998 2022-09-16 GIN Sub-Saharan Africa Conakry
## 4999 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5000 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5001 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5002 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5003 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5004 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5005 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5006 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5007 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5008 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5009 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5010 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5011 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5012 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5013 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5014 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5015 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5016 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5017 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5018 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5019 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5020 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5021 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5022 2022-09-16 GIN Sub-Saharan Africa Conakry
## 5023 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5024 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5025 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5026 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5027 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5028 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5029 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5030 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5031 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5032 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5033 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5034 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5035 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5036 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5037 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5038 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5039 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5040 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5041 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5042 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5043 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5044 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5045 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5046 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5047 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5048 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5049 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5050 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5051 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5052 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5053 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5054 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5055 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5056 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5057 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5058 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5059 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5060 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5061 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5062 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5063 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5064 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5065 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5066 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5067 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5068 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5069 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5070 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5071 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5072 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5073 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5074 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5075 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5076 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5077 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5078 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5079 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5080 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5081 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5082 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5083 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5084 2022-09-16 GNQ Sub-Saharan Africa Malabo
## 5085 2022-09-16 GRC Europe & Central Asia Athens
## 5086 2022-09-16 GRC Europe & Central Asia Athens
## 5087 2022-09-16 GRC Europe & Central Asia Athens
## 5088 2022-09-16 GRC Europe & Central Asia Athens
## 5089 2022-09-16 GRC Europe & Central Asia Athens
## 5090 2022-09-16 GRC Europe & Central Asia Athens
## 5091 2022-09-16 GRC Europe & Central Asia Athens
## 5092 2022-09-16 GRC Europe & Central Asia Athens
## 5093 2022-09-16 GRC Europe & Central Asia Athens
## 5094 2022-09-16 GRC Europe & Central Asia Athens
## 5095 2022-09-16 GRC Europe & Central Asia Athens
## 5096 2022-09-16 GRC Europe & Central Asia Athens
## 5097 2022-09-16 GRC Europe & Central Asia Athens
## 5098 2022-09-16 GRC Europe & Central Asia Athens
## 5099 2022-09-16 GRC Europe & Central Asia Athens
## 5100 2022-09-16 GRC Europe & Central Asia Athens
## 5101 2022-09-16 GRC Europe & Central Asia Athens
## 5102 2022-09-16 GRC Europe & Central Asia Athens
## 5103 2022-09-16 GRC Europe & Central Asia Athens
## 5104 2022-09-16 GRC Europe & Central Asia Athens
## 5105 2022-09-16 GRC Europe & Central Asia Athens
## 5106 2022-09-16 GRC Europe & Central Asia Athens
## 5107 2022-09-16 GRC Europe & Central Asia Athens
## 5108 2022-09-16 GRC Europe & Central Asia Athens
## 5109 2022-09-16 GRC Europe & Central Asia Athens
## 5110 2022-09-16 GRC Europe & Central Asia Athens
## 5111 2022-09-16 GRC Europe & Central Asia Athens
## 5112 2022-09-16 GRC Europe & Central Asia Athens
## 5113 2022-09-16 GRC Europe & Central Asia Athens
## 5114 2022-09-16 GRC Europe & Central Asia Athens
## 5115 2022-09-16 GRC Europe & Central Asia Athens
## 5116 2022-09-16 GRC Europe & Central Asia Athens
## 5117 2022-09-16 GRC Europe & Central Asia Athens
## 5118 2022-09-16 GRC Europe & Central Asia Athens
## 5119 2022-09-16 GRC Europe & Central Asia Athens
## 5120 2022-09-16 GRC Europe & Central Asia Athens
## 5121 2022-09-16 GRC Europe & Central Asia Athens
## 5122 2022-09-16 GRC Europe & Central Asia Athens
## 5123 2022-09-16 GRC Europe & Central Asia Athens
## 5124 2022-09-16 GRC Europe & Central Asia Athens
## 5125 2022-09-16 GRC Europe & Central Asia Athens
## 5126 2022-09-16 GRC Europe & Central Asia Athens
## 5127 2022-09-16 GRC Europe & Central Asia Athens
## 5128 2022-09-16 GRC Europe & Central Asia Athens
## 5129 2022-09-16 GRC Europe & Central Asia Athens
## 5130 2022-09-16 GRC Europe & Central Asia Athens
## 5131 2022-09-16 GRC Europe & Central Asia Athens
## 5132 2022-09-16 GRC Europe & Central Asia Athens
## 5133 2022-09-16 GRC Europe & Central Asia Athens
## 5134 2022-09-16 GRC Europe & Central Asia Athens
## 5135 2022-09-16 GRC Europe & Central Asia Athens
## 5136 2022-09-16 GRC Europe & Central Asia Athens
## 5137 2022-09-16 GRC Europe & Central Asia Athens
## 5138 2022-09-16 GRC Europe & Central Asia Athens
## 5139 2022-09-16 GRC Europe & Central Asia Athens
## 5140 2022-09-16 GRC Europe & Central Asia Athens
## 5141 2022-09-16 GRC Europe & Central Asia Athens
## 5142 2022-09-16 GRC Europe & Central Asia Athens
## 5143 2022-09-16 GRC Europe & Central Asia Athens
## 5144 2022-09-16 GRC Europe & Central Asia Athens
## 5145 2022-09-16 GRC Europe & Central Asia Athens
## 5146 2022-09-16 GRC Europe & Central Asia Athens
## 5147 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5148 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5149 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5150 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5151 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5152 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5153 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5154 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5155 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5156 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5157 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5158 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5159 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5160 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5161 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5162 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5163 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5164 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5165 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5166 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5167 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5168 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5169 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5170 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5171 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5172 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5173 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5174 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5175 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5176 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5177 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5178 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5179 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5180 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5181 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5182 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5183 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5184 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5185 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5186 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5187 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5188 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5189 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5190 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5191 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5192 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5193 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5194 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5195 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5196 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5197 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5198 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5199 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5200 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5201 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5202 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5203 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5204 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5205 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5206 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5207 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5208 2022-09-16 GTM Latin America & Caribbean Guatemala City
## 5209 2022-09-16 GUM East Asia & Pacific Agana
## 5210 2022-09-16 GUM East Asia & Pacific Agana
## 5211 2022-09-16 GUM East Asia & Pacific Agana
## 5212 2022-09-16 GUM East Asia & Pacific Agana
## 5213 2022-09-16 GUM East Asia & Pacific Agana
## 5214 2022-09-16 GUM East Asia & Pacific Agana
## 5215 2022-09-16 GUM East Asia & Pacific Agana
## 5216 2022-09-16 GUM East Asia & Pacific Agana
## 5217 2022-09-16 GUM East Asia & Pacific Agana
## 5218 2022-09-16 GUM East Asia & Pacific Agana
## 5219 2022-09-16 GUM East Asia & Pacific Agana
## 5220 2022-09-16 GUM East Asia & Pacific Agana
## 5221 2022-09-16 GUM East Asia & Pacific Agana
## 5222 2022-09-16 GUM East Asia & Pacific Agana
## 5223 2022-09-16 GUM East Asia & Pacific Agana
## 5224 2022-09-16 GUM East Asia & Pacific Agana
## 5225 2022-09-16 GUM East Asia & Pacific Agana
## 5226 2022-09-16 GUM East Asia & Pacific Agana
## 5227 2022-09-16 GUM East Asia & Pacific Agana
## 5228 2022-09-16 GUM East Asia & Pacific Agana
## 5229 2022-09-16 GUM East Asia & Pacific Agana
## 5230 2022-09-16 GUM East Asia & Pacific Agana
## 5231 2022-09-16 GUM East Asia & Pacific Agana
## 5232 2022-09-16 GUM East Asia & Pacific Agana
## 5233 2022-09-16 GUM East Asia & Pacific Agana
## 5234 2022-09-16 GUM East Asia & Pacific Agana
## 5235 2022-09-16 GUM East Asia & Pacific Agana
## 5236 2022-09-16 GUM East Asia & Pacific Agana
## 5237 2022-09-16 GUM East Asia & Pacific Agana
## 5238 2022-09-16 GUM East Asia & Pacific Agana
## 5239 2022-09-16 GUM East Asia & Pacific Agana
## 5240 2022-09-16 GUM East Asia & Pacific Agana
## 5241 2022-09-16 GUM East Asia & Pacific Agana
## 5242 2022-09-16 GUM East Asia & Pacific Agana
## 5243 2022-09-16 GUM East Asia & Pacific Agana
## 5244 2022-09-16 GUM East Asia & Pacific Agana
## 5245 2022-09-16 GUM East Asia & Pacific Agana
## 5246 2022-09-16 GUM East Asia & Pacific Agana
## 5247 2022-09-16 GUM East Asia & Pacific Agana
## 5248 2022-09-16 GUM East Asia & Pacific Agana
## 5249 2022-09-16 GUM East Asia & Pacific Agana
## 5250 2022-09-16 GUM East Asia & Pacific Agana
## 5251 2022-09-16 GUM East Asia & Pacific Agana
## 5252 2022-09-16 GUM East Asia & Pacific Agana
## 5253 2022-09-16 GUM East Asia & Pacific Agana
## 5254 2022-09-16 GUM East Asia & Pacific Agana
## 5255 2022-09-16 GUM East Asia & Pacific Agana
## 5256 2022-09-16 GUM East Asia & Pacific Agana
## 5257 2022-09-16 GUM East Asia & Pacific Agana
## 5258 2022-09-16 GUM East Asia & Pacific Agana
## 5259 2022-09-16 GUM East Asia & Pacific Agana
## 5260 2022-09-16 GUM East Asia & Pacific Agana
## 5261 2022-09-16 GUM East Asia & Pacific Agana
## 5262 2022-09-16 GUM East Asia & Pacific Agana
## 5263 2022-09-16 GUM East Asia & Pacific Agana
## 5264 2022-09-16 GUM East Asia & Pacific Agana
## 5265 2022-09-16 GUM East Asia & Pacific Agana
## 5266 2022-09-16 GUM East Asia & Pacific Agana
## 5267 2022-09-16 GUM East Asia & Pacific Agana
## 5268 2022-09-16 GUM East Asia & Pacific Agana
## 5269 2022-09-16 GUM East Asia & Pacific Agana
## 5270 2022-09-16 GUM East Asia & Pacific Agana
## 5271 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5272 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5273 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5274 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5275 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5276 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5277 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5278 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5279 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5280 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5281 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5282 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5283 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5284 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5285 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5286 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5287 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5288 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5289 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5290 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5291 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5292 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5293 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5294 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5295 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5296 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5297 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5298 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5299 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5300 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5301 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5302 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5303 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5304 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5305 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5306 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5307 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5308 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5309 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5310 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5311 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5312 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5313 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5314 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5315 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5316 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5317 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5318 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5319 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5320 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5321 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5322 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5323 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5324 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5325 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5326 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5327 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5328 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5329 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5330 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5331 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5332 2022-09-16 GNB Sub-Saharan Africa Bissau
## 5333 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5334 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5335 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5336 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5337 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5338 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5339 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5340 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5341 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5342 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5343 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5344 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5345 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5346 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5347 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5348 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5349 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5350 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5351 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5352 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5353 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5354 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5355 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5356 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5357 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5358 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5359 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5360 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5361 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5362 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5363 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5364 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5365 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5366 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5367 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5368 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5369 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5370 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5371 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5372 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5373 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5374 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5375 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5376 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5377 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5378 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5379 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5380 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5381 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5382 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5383 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5384 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5385 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5386 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5387 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5388 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5389 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5390 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5391 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5392 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5393 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5394 2022-09-16 GUY Latin America & Caribbean Georgetown
## 5395 2022-09-16 HKG East Asia & Pacific
## 5396 2022-09-16 HKG East Asia & Pacific
## 5397 2022-09-16 HKG East Asia & Pacific
## 5398 2022-09-16 HKG East Asia & Pacific
## 5399 2022-09-16 HKG East Asia & Pacific
## 5400 2022-09-16 HKG East Asia & Pacific
## 5401 2022-09-16 HKG East Asia & Pacific
## 5402 2022-09-16 HKG East Asia & Pacific
## 5403 2022-09-16 HKG East Asia & Pacific
## 5404 2022-09-16 HKG East Asia & Pacific
## 5405 2022-09-16 HKG East Asia & Pacific
## 5406 2022-09-16 HKG East Asia & Pacific
## 5407 2022-09-16 HKG East Asia & Pacific
## 5408 2022-09-16 HKG East Asia & Pacific
## 5409 2022-09-16 HKG East Asia & Pacific
## 5410 2022-09-16 HKG East Asia & Pacific
## 5411 2022-09-16 HKG East Asia & Pacific
## 5412 2022-09-16 HKG East Asia & Pacific
## 5413 2022-09-16 HKG East Asia & Pacific
## 5414 2022-09-16 HKG East Asia & Pacific
## 5415 2022-09-16 HKG East Asia & Pacific
## 5416 2022-09-16 HKG East Asia & Pacific
## 5417 2022-09-16 HKG East Asia & Pacific
## 5418 2022-09-16 HKG East Asia & Pacific
## 5419 2022-09-16 HKG East Asia & Pacific
## 5420 2022-09-16 HKG East Asia & Pacific
## 5421 2022-09-16 HKG East Asia & Pacific
## 5422 2022-09-16 HKG East Asia & Pacific
## 5423 2022-09-16 HKG East Asia & Pacific
## 5424 2022-09-16 HKG East Asia & Pacific
## 5425 2022-09-16 HKG East Asia & Pacific
## 5426 2022-09-16 HKG East Asia & Pacific
## 5427 2022-09-16 HKG East Asia & Pacific
## 5428 2022-09-16 HKG East Asia & Pacific
## 5429 2022-09-16 HKG East Asia & Pacific
## 5430 2022-09-16 HKG East Asia & Pacific
## 5431 2022-09-16 HKG East Asia & Pacific
## 5432 2022-09-16 HKG East Asia & Pacific
## 5433 2022-09-16 HKG East Asia & Pacific
## 5434 2022-09-16 HKG East Asia & Pacific
## 5435 2022-09-16 HKG East Asia & Pacific
## 5436 2022-09-16 HKG East Asia & Pacific
## 5437 2022-09-16 HKG East Asia & Pacific
## 5438 2022-09-16 HKG East Asia & Pacific
## 5439 2022-09-16 HKG East Asia & Pacific
## 5440 2022-09-16 HKG East Asia & Pacific
## 5441 2022-09-16 HKG East Asia & Pacific
## 5442 2022-09-16 HKG East Asia & Pacific
## 5443 2022-09-16 HKG East Asia & Pacific
## 5444 2022-09-16 HKG East Asia & Pacific
## 5445 2022-09-16 HKG East Asia & Pacific
## 5446 2022-09-16 HKG East Asia & Pacific
## 5447 2022-09-16 HKG East Asia & Pacific
## 5448 2022-09-16 HKG East Asia & Pacific
## 5449 2022-09-16 HKG East Asia & Pacific
## 5450 2022-09-16 HKG East Asia & Pacific
## 5451 2022-09-16 HKG East Asia & Pacific
## 5452 2022-09-16 HKG East Asia & Pacific
## 5453 2022-09-16 HKG East Asia & Pacific
## 5454 2022-09-16 HKG East Asia & Pacific
## 5455 2022-09-16 HKG East Asia & Pacific
## 5456 2022-09-16 HKG East Asia & Pacific
## 5457 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5458 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5459 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5460 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5461 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5462 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5463 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5464 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5465 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5466 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5467 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5468 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5469 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5470 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5471 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5472 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5473 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5474 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5475 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5476 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5477 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5478 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5479 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5480 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5481 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5482 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5483 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5484 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5485 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5486 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5487 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5488 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5489 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5490 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5491 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5492 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5493 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5494 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5495 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5496 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5497 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5498 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5499 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5500 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5501 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5502 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5503 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5504 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5505 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5506 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5507 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5508 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5509 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5510 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5511 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5512 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5513 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5514 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5515 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5516 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5517 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5518 2022-09-16 HND Latin America & Caribbean Tegucigalpa
## 5519 2022-09-16 HRV Europe & Central Asia Zagreb
## 5520 2022-09-16 HRV Europe & Central Asia Zagreb
## 5521 2022-09-16 HRV Europe & Central Asia Zagreb
## 5522 2022-09-16 HRV Europe & Central Asia Zagreb
## 5523 2022-09-16 HRV Europe & Central Asia Zagreb
## 5524 2022-09-16 HRV Europe & Central Asia Zagreb
## 5525 2022-09-16 HRV Europe & Central Asia Zagreb
## 5526 2022-09-16 HRV Europe & Central Asia Zagreb
## 5527 2022-09-16 HRV Europe & Central Asia Zagreb
## 5528 2022-09-16 HRV Europe & Central Asia Zagreb
## 5529 2022-09-16 HRV Europe & Central Asia Zagreb
## 5530 2022-09-16 HRV Europe & Central Asia Zagreb
## 5531 2022-09-16 HRV Europe & Central Asia Zagreb
## 5532 2022-09-16 HRV Europe & Central Asia Zagreb
## 5533 2022-09-16 HRV Europe & Central Asia Zagreb
## 5534 2022-09-16 HRV Europe & Central Asia Zagreb
## 5535 2022-09-16 HRV Europe & Central Asia Zagreb
## 5536 2022-09-16 HRV Europe & Central Asia Zagreb
## 5537 2022-09-16 HRV Europe & Central Asia Zagreb
## 5538 2022-09-16 HRV Europe & Central Asia Zagreb
## 5539 2022-09-16 HRV Europe & Central Asia Zagreb
## 5540 2022-09-16 HRV Europe & Central Asia Zagreb
## 5541 2022-09-16 HRV Europe & Central Asia Zagreb
## 5542 2022-09-16 HRV Europe & Central Asia Zagreb
## 5543 2022-09-16 HRV Europe & Central Asia Zagreb
## 5544 2022-09-16 HRV Europe & Central Asia Zagreb
## 5545 2022-09-16 HRV Europe & Central Asia Zagreb
## 5546 2022-09-16 HRV Europe & Central Asia Zagreb
## 5547 2022-09-16 HRV Europe & Central Asia Zagreb
## 5548 2022-09-16 HRV Europe & Central Asia Zagreb
## 5549 2022-09-16 HRV Europe & Central Asia Zagreb
## 5550 2022-09-16 HRV Europe & Central Asia Zagreb
## 5551 2022-09-16 HRV Europe & Central Asia Zagreb
## 5552 2022-09-16 HRV Europe & Central Asia Zagreb
## 5553 2022-09-16 HRV Europe & Central Asia Zagreb
## 5554 2022-09-16 HRV Europe & Central Asia Zagreb
## 5555 2022-09-16 HRV Europe & Central Asia Zagreb
## 5556 2022-09-16 HRV Europe & Central Asia Zagreb
## 5557 2022-09-16 HRV Europe & Central Asia Zagreb
## 5558 2022-09-16 HRV Europe & Central Asia Zagreb
## 5559 2022-09-16 HRV Europe & Central Asia Zagreb
## 5560 2022-09-16 HRV Europe & Central Asia Zagreb
## 5561 2022-09-16 HRV Europe & Central Asia Zagreb
## 5562 2022-09-16 HRV Europe & Central Asia Zagreb
## 5563 2022-09-16 HRV Europe & Central Asia Zagreb
## 5564 2022-09-16 HRV Europe & Central Asia Zagreb
## 5565 2022-09-16 HRV Europe & Central Asia Zagreb
## 5566 2022-09-16 HRV Europe & Central Asia Zagreb
## 5567 2022-09-16 HRV Europe & Central Asia Zagreb
## 5568 2022-09-16 HRV Europe & Central Asia Zagreb
## 5569 2022-09-16 HRV Europe & Central Asia Zagreb
## 5570 2022-09-16 HRV Europe & Central Asia Zagreb
## 5571 2022-09-16 HRV Europe & Central Asia Zagreb
## 5572 2022-09-16 HRV Europe & Central Asia Zagreb
## 5573 2022-09-16 HRV Europe & Central Asia Zagreb
## 5574 2022-09-16 HRV Europe & Central Asia Zagreb
## 5575 2022-09-16 HRV Europe & Central Asia Zagreb
## 5576 2022-09-16 HRV Europe & Central Asia Zagreb
## 5577 2022-09-16 HRV Europe & Central Asia Zagreb
## 5578 2022-09-16 HRV Europe & Central Asia Zagreb
## 5579 2022-09-16 HRV Europe & Central Asia Zagreb
## 5580 2022-09-16 HRV Europe & Central Asia Zagreb
## 5581 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5582 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5583 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5584 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5585 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5586 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5587 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5588 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5589 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5590 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5591 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5592 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5593 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5594 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5595 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5596 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5597 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5598 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5599 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5600 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5601 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5602 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5603 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5604 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5605 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5606 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5607 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5608 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5609 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5610 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5611 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5612 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5613 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5614 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5615 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5616 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5617 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5618 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5619 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5620 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5621 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5622 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5623 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5624 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5625 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5626 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5627 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5628 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5629 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5630 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5631 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5632 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5633 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5634 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5635 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5636 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5637 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5638 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5639 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5640 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5641 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5642 2022-09-16 HTI Latin America & Caribbean Port-au-Prince
## 5643 2022-09-16 HUN Europe & Central Asia Budapest
## 5644 2022-09-16 HUN Europe & Central Asia Budapest
## 5645 2022-09-16 HUN Europe & Central Asia Budapest
## 5646 2022-09-16 HUN Europe & Central Asia Budapest
## 5647 2022-09-16 HUN Europe & Central Asia Budapest
## 5648 2022-09-16 HUN Europe & Central Asia Budapest
## 5649 2022-09-16 HUN Europe & Central Asia Budapest
## 5650 2022-09-16 HUN Europe & Central Asia Budapest
## 5651 2022-09-16 HUN Europe & Central Asia Budapest
## 5652 2022-09-16 HUN Europe & Central Asia Budapest
## 5653 2022-09-16 HUN Europe & Central Asia Budapest
## 5654 2022-09-16 HUN Europe & Central Asia Budapest
## 5655 2022-09-16 HUN Europe & Central Asia Budapest
## 5656 2022-09-16 HUN Europe & Central Asia Budapest
## 5657 2022-09-16 HUN Europe & Central Asia Budapest
## 5658 2022-09-16 HUN Europe & Central Asia Budapest
## 5659 2022-09-16 HUN Europe & Central Asia Budapest
## 5660 2022-09-16 HUN Europe & Central Asia Budapest
## 5661 2022-09-16 HUN Europe & Central Asia Budapest
## 5662 2022-09-16 HUN Europe & Central Asia Budapest
## 5663 2022-09-16 HUN Europe & Central Asia Budapest
## 5664 2022-09-16 HUN Europe & Central Asia Budapest
## 5665 2022-09-16 HUN Europe & Central Asia Budapest
## 5666 2022-09-16 HUN Europe & Central Asia Budapest
## 5667 2022-09-16 HUN Europe & Central Asia Budapest
## 5668 2022-09-16 HUN Europe & Central Asia Budapest
## 5669 2022-09-16 HUN Europe & Central Asia Budapest
## 5670 2022-09-16 HUN Europe & Central Asia Budapest
## 5671 2022-09-16 HUN Europe & Central Asia Budapest
## 5672 2022-09-16 HUN Europe & Central Asia Budapest
## 5673 2022-09-16 HUN Europe & Central Asia Budapest
## 5674 2022-09-16 HUN Europe & Central Asia Budapest
## 5675 2022-09-16 HUN Europe & Central Asia Budapest
## 5676 2022-09-16 HUN Europe & Central Asia Budapest
## 5677 2022-09-16 HUN Europe & Central Asia Budapest
## 5678 2022-09-16 HUN Europe & Central Asia Budapest
## 5679 2022-09-16 HUN Europe & Central Asia Budapest
## 5680 2022-09-16 HUN Europe & Central Asia Budapest
## 5681 2022-09-16 HUN Europe & Central Asia Budapest
## 5682 2022-09-16 HUN Europe & Central Asia Budapest
## 5683 2022-09-16 HUN Europe & Central Asia Budapest
## 5684 2022-09-16 HUN Europe & Central Asia Budapest
## 5685 2022-09-16 HUN Europe & Central Asia Budapest
## 5686 2022-09-16 HUN Europe & Central Asia Budapest
## 5687 2022-09-16 HUN Europe & Central Asia Budapest
## 5688 2022-09-16 HUN Europe & Central Asia Budapest
## 5689 2022-09-16 HUN Europe & Central Asia Budapest
## 5690 2022-09-16 HUN Europe & Central Asia Budapest
## 5691 2022-09-16 HUN Europe & Central Asia Budapest
## 5692 2022-09-16 HUN Europe & Central Asia Budapest
## 5693 2022-09-16 HUN Europe & Central Asia Budapest
## 5694 2022-09-16 HUN Europe & Central Asia Budapest
## 5695 2022-09-16 HUN Europe & Central Asia Budapest
## 5696 2022-09-16 HUN Europe & Central Asia Budapest
## 5697 2022-09-16 HUN Europe & Central Asia Budapest
## 5698 2022-09-16 HUN Europe & Central Asia Budapest
## 5699 2022-09-16 HUN Europe & Central Asia Budapest
## 5700 2022-09-16 HUN Europe & Central Asia Budapest
## 5701 2022-09-16 HUN Europe & Central Asia Budapest
## 5702 2022-09-16 HUN Europe & Central Asia Budapest
## 5703 2022-09-16 HUN Europe & Central Asia Budapest
## 5704 2022-09-16 HUN Europe & Central Asia Budapest
## 5705 2022-09-16 IDN East Asia & Pacific Jakarta
## 5706 2022-09-16 IDN East Asia & Pacific Jakarta
## 5707 2022-09-16 IDN East Asia & Pacific Jakarta
## 5708 2022-09-16 IDN East Asia & Pacific Jakarta
## 5709 2022-09-16 IDN East Asia & Pacific Jakarta
## 5710 2022-09-16 IDN East Asia & Pacific Jakarta
## 5711 2022-09-16 IDN East Asia & Pacific Jakarta
## 5712 2022-09-16 IDN East Asia & Pacific Jakarta
## 5713 2022-09-16 IDN East Asia & Pacific Jakarta
## 5714 2022-09-16 IDN East Asia & Pacific Jakarta
## 5715 2022-09-16 IDN East Asia & Pacific Jakarta
## 5716 2022-09-16 IDN East Asia & Pacific Jakarta
## 5717 2022-09-16 IDN East Asia & Pacific Jakarta
## 5718 2022-09-16 IDN East Asia & Pacific Jakarta
## 5719 2022-09-16 IDN East Asia & Pacific Jakarta
## 5720 2022-09-16 IDN East Asia & Pacific Jakarta
## 5721 2022-09-16 IDN East Asia & Pacific Jakarta
## 5722 2022-09-16 IDN East Asia & Pacific Jakarta
## 5723 2022-09-16 IDN East Asia & Pacific Jakarta
## 5724 2022-09-16 IDN East Asia & Pacific Jakarta
## 5725 2022-09-16 IDN East Asia & Pacific Jakarta
## 5726 2022-09-16 IDN East Asia & Pacific Jakarta
## 5727 2022-09-16 IDN East Asia & Pacific Jakarta
## 5728 2022-09-16 IDN East Asia & Pacific Jakarta
## 5729 2022-09-16 IDN East Asia & Pacific Jakarta
## 5730 2022-09-16 IDN East Asia & Pacific Jakarta
## 5731 2022-09-16 IDN East Asia & Pacific Jakarta
## 5732 2022-09-16 IDN East Asia & Pacific Jakarta
## 5733 2022-09-16 IDN East Asia & Pacific Jakarta
## 5734 2022-09-16 IDN East Asia & Pacific Jakarta
## 5735 2022-09-16 IDN East Asia & Pacific Jakarta
## 5736 2022-09-16 IDN East Asia & Pacific Jakarta
## 5737 2022-09-16 IDN East Asia & Pacific Jakarta
## 5738 2022-09-16 IDN East Asia & Pacific Jakarta
## 5739 2022-09-16 IDN East Asia & Pacific Jakarta
## 5740 2022-09-16 IDN East Asia & Pacific Jakarta
## 5741 2022-09-16 IDN East Asia & Pacific Jakarta
## 5742 2022-09-16 IDN East Asia & Pacific Jakarta
## 5743 2022-09-16 IDN East Asia & Pacific Jakarta
## 5744 2022-09-16 IDN East Asia & Pacific Jakarta
## 5745 2022-09-16 IDN East Asia & Pacific Jakarta
## 5746 2022-09-16 IDN East Asia & Pacific Jakarta
## 5747 2022-09-16 IDN East Asia & Pacific Jakarta
## 5748 2022-09-16 IDN East Asia & Pacific Jakarta
## 5749 2022-09-16 IDN East Asia & Pacific Jakarta
## 5750 2022-09-16 IDN East Asia & Pacific Jakarta
## 5751 2022-09-16 IDN East Asia & Pacific Jakarta
## 5752 2022-09-16 IDN East Asia & Pacific Jakarta
## 5753 2022-09-16 IDN East Asia & Pacific Jakarta
## 5754 2022-09-16 IDN East Asia & Pacific Jakarta
## 5755 2022-09-16 IDN East Asia & Pacific Jakarta
## 5756 2022-09-16 IDN East Asia & Pacific Jakarta
## 5757 2022-09-16 IDN East Asia & Pacific Jakarta
## 5758 2022-09-16 IDN East Asia & Pacific Jakarta
## 5759 2022-09-16 IDN East Asia & Pacific Jakarta
## 5760 2022-09-16 IDN East Asia & Pacific Jakarta
## 5761 2022-09-16 IDN East Asia & Pacific Jakarta
## 5762 2022-09-16 IDN East Asia & Pacific Jakarta
## 5763 2022-09-16 IDN East Asia & Pacific Jakarta
## 5764 2022-09-16 IDN East Asia & Pacific Jakarta
## 5765 2022-09-16 IDN East Asia & Pacific Jakarta
## 5766 2022-09-16 IDN East Asia & Pacific Jakarta
## 5767 2022-09-16 IRL Europe & Central Asia Dublin
## 5768 2022-09-16 IRL Europe & Central Asia Dublin
## 5769 2022-09-16 IRL Europe & Central Asia Dublin
## 5770 2022-09-16 IRL Europe & Central Asia Dublin
## 5771 2022-09-16 IRL Europe & Central Asia Dublin
## 5772 2022-09-16 IRL Europe & Central Asia Dublin
## 5773 2022-09-16 IRL Europe & Central Asia Dublin
## 5774 2022-09-16 IRL Europe & Central Asia Dublin
## 5775 2022-09-16 IRL Europe & Central Asia Dublin
## 5776 2022-09-16 IRL Europe & Central Asia Dublin
## 5777 2022-09-16 IRL Europe & Central Asia Dublin
## 5778 2022-09-16 IRL Europe & Central Asia Dublin
## 5779 2022-09-16 IRL Europe & Central Asia Dublin
## 5780 2022-09-16 IRL Europe & Central Asia Dublin
## 5781 2022-09-16 IRL Europe & Central Asia Dublin
## 5782 2022-09-16 IRL Europe & Central Asia Dublin
## 5783 2022-09-16 IRL Europe & Central Asia Dublin
## 5784 2022-09-16 IRL Europe & Central Asia Dublin
## 5785 2022-09-16 IRL Europe & Central Asia Dublin
## 5786 2022-09-16 IRL Europe & Central Asia Dublin
## 5787 2022-09-16 IRL Europe & Central Asia Dublin
## 5788 2022-09-16 IRL Europe & Central Asia Dublin
## 5789 2022-09-16 IRL Europe & Central Asia Dublin
## 5790 2022-09-16 IRL Europe & Central Asia Dublin
## 5791 2022-09-16 IRL Europe & Central Asia Dublin
## 5792 2022-09-16 IRL Europe & Central Asia Dublin
## 5793 2022-09-16 IRL Europe & Central Asia Dublin
## 5794 2022-09-16 IRL Europe & Central Asia Dublin
## 5795 2022-09-16 IRL Europe & Central Asia Dublin
## 5796 2022-09-16 IRL Europe & Central Asia Dublin
## 5797 2022-09-16 IRL Europe & Central Asia Dublin
## 5798 2022-09-16 IRL Europe & Central Asia Dublin
## 5799 2022-09-16 IRL Europe & Central Asia Dublin
## 5800 2022-09-16 IRL Europe & Central Asia Dublin
## 5801 2022-09-16 IRL Europe & Central Asia Dublin
## 5802 2022-09-16 IRL Europe & Central Asia Dublin
## 5803 2022-09-16 IRL Europe & Central Asia Dublin
## 5804 2022-09-16 IRL Europe & Central Asia Dublin
## 5805 2022-09-16 IRL Europe & Central Asia Dublin
## 5806 2022-09-16 IRL Europe & Central Asia Dublin
## 5807 2022-09-16 IRL Europe & Central Asia Dublin
## 5808 2022-09-16 IRL Europe & Central Asia Dublin
## 5809 2022-09-16 IRL Europe & Central Asia Dublin
## 5810 2022-09-16 IRL Europe & Central Asia Dublin
## 5811 2022-09-16 IRL Europe & Central Asia Dublin
## 5812 2022-09-16 IRL Europe & Central Asia Dublin
## 5813 2022-09-16 IRL Europe & Central Asia Dublin
## 5814 2022-09-16 IRL Europe & Central Asia Dublin
## 5815 2022-09-16 IRL Europe & Central Asia Dublin
## 5816 2022-09-16 IRL Europe & Central Asia Dublin
## 5817 2022-09-16 IRL Europe & Central Asia Dublin
## 5818 2022-09-16 IRL Europe & Central Asia Dublin
## 5819 2022-09-16 IRL Europe & Central Asia Dublin
## 5820 2022-09-16 IRL Europe & Central Asia Dublin
## 5821 2022-09-16 IRL Europe & Central Asia Dublin
## 5822 2022-09-16 IRL Europe & Central Asia Dublin
## 5823 2022-09-16 IRL Europe & Central Asia Dublin
## 5824 2022-09-16 IRL Europe & Central Asia Dublin
## 5825 2022-09-16 IRL Europe & Central Asia Dublin
## 5826 2022-09-16 IRL Europe & Central Asia Dublin
## 5827 2022-09-16 IRL Europe & Central Asia Dublin
## 5828 2022-09-16 IRL Europe & Central Asia Dublin
## 5829 2022-09-16 ISR Middle East & North Africa
## 5830 2022-09-16 ISR Middle East & North Africa
## 5831 2022-09-16 ISR Middle East & North Africa
## 5832 2022-09-16 ISR Middle East & North Africa
## 5833 2022-09-16 ISR Middle East & North Africa
## 5834 2022-09-16 ISR Middle East & North Africa
## 5835 2022-09-16 ISR Middle East & North Africa
## 5836 2022-09-16 ISR Middle East & North Africa
## 5837 2022-09-16 ISR Middle East & North Africa
## 5838 2022-09-16 ISR Middle East & North Africa
## 5839 2022-09-16 ISR Middle East & North Africa
## 5840 2022-09-16 ISR Middle East & North Africa
## 5841 2022-09-16 ISR Middle East & North Africa
## 5842 2022-09-16 ISR Middle East & North Africa
## 5843 2022-09-16 ISR Middle East & North Africa
## 5844 2022-09-16 ISR Middle East & North Africa
## 5845 2022-09-16 ISR Middle East & North Africa
## 5846 2022-09-16 ISR Middle East & North Africa
## 5847 2022-09-16 ISR Middle East & North Africa
## 5848 2022-09-16 ISR Middle East & North Africa
## 5849 2022-09-16 ISR Middle East & North Africa
## 5850 2022-09-16 ISR Middle East & North Africa
## 5851 2022-09-16 ISR Middle East & North Africa
## 5852 2022-09-16 ISR Middle East & North Africa
## 5853 2022-09-16 ISR Middle East & North Africa
## 5854 2022-09-16 ISR Middle East & North Africa
## 5855 2022-09-16 ISR Middle East & North Africa
## 5856 2022-09-16 ISR Middle East & North Africa
## 5857 2022-09-16 ISR Middle East & North Africa
## 5858 2022-09-16 ISR Middle East & North Africa
## 5859 2022-09-16 ISR Middle East & North Africa
## 5860 2022-09-16 ISR Middle East & North Africa
## 5861 2022-09-16 ISR Middle East & North Africa
## 5862 2022-09-16 ISR Middle East & North Africa
## 5863 2022-09-16 ISR Middle East & North Africa
## 5864 2022-09-16 ISR Middle East & North Africa
## 5865 2022-09-16 ISR Middle East & North Africa
## 5866 2022-09-16 ISR Middle East & North Africa
## 5867 2022-09-16 ISR Middle East & North Africa
## 5868 2022-09-16 ISR Middle East & North Africa
## 5869 2022-09-16 ISR Middle East & North Africa
## 5870 2022-09-16 ISR Middle East & North Africa
## 5871 2022-09-16 ISR Middle East & North Africa
## 5872 2022-09-16 ISR Middle East & North Africa
## 5873 2022-09-16 ISR Middle East & North Africa
## 5874 2022-09-16 ISR Middle East & North Africa
## 5875 2022-09-16 ISR Middle East & North Africa
## 5876 2022-09-16 ISR Middle East & North Africa
## 5877 2022-09-16 ISR Middle East & North Africa
## 5878 2022-09-16 ISR Middle East & North Africa
## 5879 2022-09-16 ISR Middle East & North Africa
## 5880 2022-09-16 ISR Middle East & North Africa
## 5881 2022-09-16 ISR Middle East & North Africa
## 5882 2022-09-16 ISR Middle East & North Africa
## 5883 2022-09-16 ISR Middle East & North Africa
## 5884 2022-09-16 ISR Middle East & North Africa
## 5885 2022-09-16 ISR Middle East & North Africa
## 5886 2022-09-16 ISR Middle East & North Africa
## 5887 2022-09-16 ISR Middle East & North Africa
## 5888 2022-09-16 ISR Middle East & North Africa
## 5889 2022-09-16 ISR Middle East & North Africa
## 5890 2022-09-16 ISR Middle East & North Africa
## 5891 2022-09-16 IMN Europe & Central Asia Douglas
## 5892 2022-09-16 IMN Europe & Central Asia Douglas
## 5893 2022-09-16 IMN Europe & Central Asia Douglas
## 5894 2022-09-16 IMN Europe & Central Asia Douglas
## 5895 2022-09-16 IMN Europe & Central Asia Douglas
## 5896 2022-09-16 IMN Europe & Central Asia Douglas
## 5897 2022-09-16 IMN Europe & Central Asia Douglas
## 5898 2022-09-16 IMN Europe & Central Asia Douglas
## 5899 2022-09-16 IMN Europe & Central Asia Douglas
## 5900 2022-09-16 IMN Europe & Central Asia Douglas
## 5901 2022-09-16 IMN Europe & Central Asia Douglas
## 5902 2022-09-16 IMN Europe & Central Asia Douglas
## 5903 2022-09-16 IMN Europe & Central Asia Douglas
## 5904 2022-09-16 IMN Europe & Central Asia Douglas
## 5905 2022-09-16 IMN Europe & Central Asia Douglas
## 5906 2022-09-16 IMN Europe & Central Asia Douglas
## 5907 2022-09-16 IMN Europe & Central Asia Douglas
## 5908 2022-09-16 IMN Europe & Central Asia Douglas
## 5909 2022-09-16 IMN Europe & Central Asia Douglas
## 5910 2022-09-16 IMN Europe & Central Asia Douglas
## 5911 2022-09-16 IMN Europe & Central Asia Douglas
## 5912 2022-09-16 IMN Europe & Central Asia Douglas
## 5913 2022-09-16 IMN Europe & Central Asia Douglas
## 5914 2022-09-16 IMN Europe & Central Asia Douglas
## 5915 2022-09-16 IMN Europe & Central Asia Douglas
## 5916 2022-09-16 IMN Europe & Central Asia Douglas
## 5917 2022-09-16 IMN Europe & Central Asia Douglas
## 5918 2022-09-16 IMN Europe & Central Asia Douglas
## 5919 2022-09-16 IMN Europe & Central Asia Douglas
## 5920 2022-09-16 IMN Europe & Central Asia Douglas
## 5921 2022-09-16 IMN Europe & Central Asia Douglas
## 5922 2022-09-16 IMN Europe & Central Asia Douglas
## 5923 2022-09-16 IMN Europe & Central Asia Douglas
## 5924 2022-09-16 IMN Europe & Central Asia Douglas
## 5925 2022-09-16 IMN Europe & Central Asia Douglas
## 5926 2022-09-16 IMN Europe & Central Asia Douglas
## 5927 2022-09-16 IMN Europe & Central Asia Douglas
## 5928 2022-09-16 IMN Europe & Central Asia Douglas
## 5929 2022-09-16 IMN Europe & Central Asia Douglas
## 5930 2022-09-16 IMN Europe & Central Asia Douglas
## 5931 2022-09-16 IMN Europe & Central Asia Douglas
## 5932 2022-09-16 IMN Europe & Central Asia Douglas
## 5933 2022-09-16 IMN Europe & Central Asia Douglas
## 5934 2022-09-16 IMN Europe & Central Asia Douglas
## 5935 2022-09-16 IMN Europe & Central Asia Douglas
## 5936 2022-09-16 IMN Europe & Central Asia Douglas
## 5937 2022-09-16 IMN Europe & Central Asia Douglas
## 5938 2022-09-16 IMN Europe & Central Asia Douglas
## 5939 2022-09-16 IMN Europe & Central Asia Douglas
## 5940 2022-09-16 IMN Europe & Central Asia Douglas
## 5941 2022-09-16 IMN Europe & Central Asia Douglas
## 5942 2022-09-16 IMN Europe & Central Asia Douglas
## 5943 2022-09-16 IMN Europe & Central Asia Douglas
## 5944 2022-09-16 IMN Europe & Central Asia Douglas
## 5945 2022-09-16 IMN Europe & Central Asia Douglas
## 5946 2022-09-16 IMN Europe & Central Asia Douglas
## 5947 2022-09-16 IMN Europe & Central Asia Douglas
## 5948 2022-09-16 IMN Europe & Central Asia Douglas
## 5949 2022-09-16 IMN Europe & Central Asia Douglas
## 5950 2022-09-16 IMN Europe & Central Asia Douglas
## 5951 2022-09-16 IMN Europe & Central Asia Douglas
## 5952 2022-09-16 IMN Europe & Central Asia Douglas
## 5953 2022-09-16 IND South Asia New Delhi
## 5954 2022-09-16 IND South Asia New Delhi
## 5955 2022-09-16 IND South Asia New Delhi
## 5956 2022-09-16 IND South Asia New Delhi
## 5957 2022-09-16 IND South Asia New Delhi
## 5958 2022-09-16 IND South Asia New Delhi
## 5959 2022-09-16 IND South Asia New Delhi
## 5960 2022-09-16 IND South Asia New Delhi
## 5961 2022-09-16 IND South Asia New Delhi
## 5962 2022-09-16 IND South Asia New Delhi
## 5963 2022-09-16 IND South Asia New Delhi
## 5964 2022-09-16 IND South Asia New Delhi
## 5965 2022-09-16 IND South Asia New Delhi
## 5966 2022-09-16 IND South Asia New Delhi
## 5967 2022-09-16 IND South Asia New Delhi
## 5968 2022-09-16 IND South Asia New Delhi
## 5969 2022-09-16 IND South Asia New Delhi
## 5970 2022-09-16 IND South Asia New Delhi
## 5971 2022-09-16 IND South Asia New Delhi
## 5972 2022-09-16 IND South Asia New Delhi
## 5973 2022-09-16 IND South Asia New Delhi
## 5974 2022-09-16 IND South Asia New Delhi
## 5975 2022-09-16 IND South Asia New Delhi
## 5976 2022-09-16 IND South Asia New Delhi
## 5977 2022-09-16 IND South Asia New Delhi
## 5978 2022-09-16 IND South Asia New Delhi
## 5979 2022-09-16 IND South Asia New Delhi
## 5980 2022-09-16 IND South Asia New Delhi
## 5981 2022-09-16 IND South Asia New Delhi
## 5982 2022-09-16 IND South Asia New Delhi
## 5983 2022-09-16 IND South Asia New Delhi
## 5984 2022-09-16 IND South Asia New Delhi
## 5985 2022-09-16 IND South Asia New Delhi
## 5986 2022-09-16 IND South Asia New Delhi
## 5987 2022-09-16 IND South Asia New Delhi
## 5988 2022-09-16 IND South Asia New Delhi
## 5989 2022-09-16 IND South Asia New Delhi
## 5990 2022-09-16 IND South Asia New Delhi
## 5991 2022-09-16 IND South Asia New Delhi
## 5992 2022-09-16 IND South Asia New Delhi
## 5993 2022-09-16 IND South Asia New Delhi
## 5994 2022-09-16 IND South Asia New Delhi
## 5995 2022-09-16 IND South Asia New Delhi
## 5996 2022-09-16 IND South Asia New Delhi
## 5997 2022-09-16 IND South Asia New Delhi
## 5998 2022-09-16 IND South Asia New Delhi
## 5999 2022-09-16 IND South Asia New Delhi
## 6000 2022-09-16 IND South Asia New Delhi
## 6001 2022-09-16 IND South Asia New Delhi
## 6002 2022-09-16 IND South Asia New Delhi
## 6003 2022-09-16 IND South Asia New Delhi
## 6004 2022-09-16 IND South Asia New Delhi
## 6005 2022-09-16 IND South Asia New Delhi
## 6006 2022-09-16 IND South Asia New Delhi
## 6007 2022-09-16 IND South Asia New Delhi
## 6008 2022-09-16 IND South Asia New Delhi
## 6009 2022-09-16 IND South Asia New Delhi
## 6010 2022-09-16 IND South Asia New Delhi
## 6011 2022-09-16 IND South Asia New Delhi
## 6012 2022-09-16 IND South Asia New Delhi
## 6013 2022-09-16 IND South Asia New Delhi
## 6014 2022-09-16 IND South Asia New Delhi
## 6015 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6016 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6017 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6018 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6019 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6020 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6021 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6022 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6023 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6024 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6025 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6026 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6027 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6028 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6029 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6030 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6031 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6032 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6033 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6034 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6035 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6036 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6037 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6038 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6039 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6040 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6041 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6042 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6043 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6044 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6045 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6046 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6047 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6048 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6049 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6050 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6051 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6052 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6053 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6054 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6055 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6056 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6057 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6058 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6059 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6060 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6061 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6062 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6063 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6064 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6065 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6066 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6067 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6068 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6069 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6070 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6071 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6072 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6073 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6074 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6075 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6076 2022-09-16 IRQ Middle East & North Africa Baghdad
## 6077 2022-09-16 IRN Middle East & North Africa Tehran
## 6078 2022-09-16 IRN Middle East & North Africa Tehran
## 6079 2022-09-16 IRN Middle East & North Africa Tehran
## 6080 2022-09-16 IRN Middle East & North Africa Tehran
## 6081 2022-09-16 IRN Middle East & North Africa Tehran
## 6082 2022-09-16 IRN Middle East & North Africa Tehran
## 6083 2022-09-16 IRN Middle East & North Africa Tehran
## 6084 2022-09-16 IRN Middle East & North Africa Tehran
## 6085 2022-09-16 IRN Middle East & North Africa Tehran
## 6086 2022-09-16 IRN Middle East & North Africa Tehran
## 6087 2022-09-16 IRN Middle East & North Africa Tehran
## 6088 2022-09-16 IRN Middle East & North Africa Tehran
## 6089 2022-09-16 IRN Middle East & North Africa Tehran
## 6090 2022-09-16 IRN Middle East & North Africa Tehran
## 6091 2022-09-16 IRN Middle East & North Africa Tehran
## 6092 2022-09-16 IRN Middle East & North Africa Tehran
## 6093 2022-09-16 IRN Middle East & North Africa Tehran
## 6094 2022-09-16 IRN Middle East & North Africa Tehran
## 6095 2022-09-16 IRN Middle East & North Africa Tehran
## 6096 2022-09-16 IRN Middle East & North Africa Tehran
## 6097 2022-09-16 IRN Middle East & North Africa Tehran
## 6098 2022-09-16 IRN Middle East & North Africa Tehran
## 6099 2022-09-16 IRN Middle East & North Africa Tehran
## 6100 2022-09-16 IRN Middle East & North Africa Tehran
## 6101 2022-09-16 IRN Middle East & North Africa Tehran
## 6102 2022-09-16 IRN Middle East & North Africa Tehran
## 6103 2022-09-16 IRN Middle East & North Africa Tehran
## 6104 2022-09-16 IRN Middle East & North Africa Tehran
## 6105 2022-09-16 IRN Middle East & North Africa Tehran
## 6106 2022-09-16 IRN Middle East & North Africa Tehran
## 6107 2022-09-16 IRN Middle East & North Africa Tehran
## 6108 2022-09-16 IRN Middle East & North Africa Tehran
## 6109 2022-09-16 IRN Middle East & North Africa Tehran
## 6110 2022-09-16 IRN Middle East & North Africa Tehran
## 6111 2022-09-16 IRN Middle East & North Africa Tehran
## 6112 2022-09-16 IRN Middle East & North Africa Tehran
## 6113 2022-09-16 IRN Middle East & North Africa Tehran
## 6114 2022-09-16 IRN Middle East & North Africa Tehran
## 6115 2022-09-16 IRN Middle East & North Africa Tehran
## 6116 2022-09-16 IRN Middle East & North Africa Tehran
## 6117 2022-09-16 IRN Middle East & North Africa Tehran
## 6118 2022-09-16 IRN Middle East & North Africa Tehran
## 6119 2022-09-16 IRN Middle East & North Africa Tehran
## 6120 2022-09-16 IRN Middle East & North Africa Tehran
## 6121 2022-09-16 IRN Middle East & North Africa Tehran
## 6122 2022-09-16 IRN Middle East & North Africa Tehran
## 6123 2022-09-16 IRN Middle East & North Africa Tehran
## 6124 2022-09-16 IRN Middle East & North Africa Tehran
## 6125 2022-09-16 IRN Middle East & North Africa Tehran
## 6126 2022-09-16 IRN Middle East & North Africa Tehran
## 6127 2022-09-16 IRN Middle East & North Africa Tehran
## 6128 2022-09-16 IRN Middle East & North Africa Tehran
## 6129 2022-09-16 IRN Middle East & North Africa Tehran
## 6130 2022-09-16 IRN Middle East & North Africa Tehran
## 6131 2022-09-16 IRN Middle East & North Africa Tehran
## 6132 2022-09-16 IRN Middle East & North Africa Tehran
## 6133 2022-09-16 IRN Middle East & North Africa Tehran
## 6134 2022-09-16 IRN Middle East & North Africa Tehran
## 6135 2022-09-16 IRN Middle East & North Africa Tehran
## 6136 2022-09-16 IRN Middle East & North Africa Tehran
## 6137 2022-09-16 IRN Middle East & North Africa Tehran
## 6138 2022-09-16 IRN Middle East & North Africa Tehran
## 6139 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6140 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6141 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6142 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6143 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6144 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6145 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6146 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6147 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6148 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6149 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6150 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6151 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6152 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6153 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6154 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6155 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6156 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6157 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6158 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6159 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6160 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6161 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6162 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6163 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6164 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6165 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6166 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6167 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6168 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6169 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6170 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6171 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6172 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6173 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6174 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6175 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6176 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6177 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6178 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6179 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6180 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6181 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6182 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6183 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6184 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6185 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6186 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6187 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6188 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6189 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6190 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6191 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6192 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6193 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6194 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6195 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6196 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6197 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6198 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6199 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6200 2022-09-16 ISL Europe & Central Asia Reykjavik
## 6201 2022-09-16 ITA Europe & Central Asia Rome
## 6202 2022-09-16 ITA Europe & Central Asia Rome
## 6203 2022-09-16 ITA Europe & Central Asia Rome
## 6204 2022-09-16 ITA Europe & Central Asia Rome
## 6205 2022-09-16 ITA Europe & Central Asia Rome
## 6206 2022-09-16 ITA Europe & Central Asia Rome
## 6207 2022-09-16 ITA Europe & Central Asia Rome
## 6208 2022-09-16 ITA Europe & Central Asia Rome
## 6209 2022-09-16 ITA Europe & Central Asia Rome
## 6210 2022-09-16 ITA Europe & Central Asia Rome
## 6211 2022-09-16 ITA Europe & Central Asia Rome
## 6212 2022-09-16 ITA Europe & Central Asia Rome
## 6213 2022-09-16 ITA Europe & Central Asia Rome
## 6214 2022-09-16 ITA Europe & Central Asia Rome
## 6215 2022-09-16 ITA Europe & Central Asia Rome
## 6216 2022-09-16 ITA Europe & Central Asia Rome
## 6217 2022-09-16 ITA Europe & Central Asia Rome
## 6218 2022-09-16 ITA Europe & Central Asia Rome
## 6219 2022-09-16 ITA Europe & Central Asia Rome
## 6220 2022-09-16 ITA Europe & Central Asia Rome
## 6221 2022-09-16 ITA Europe & Central Asia Rome
## 6222 2022-09-16 ITA Europe & Central Asia Rome
## 6223 2022-09-16 ITA Europe & Central Asia Rome
## 6224 2022-09-16 ITA Europe & Central Asia Rome
## 6225 2022-09-16 ITA Europe & Central Asia Rome
## 6226 2022-09-16 ITA Europe & Central Asia Rome
## 6227 2022-09-16 ITA Europe & Central Asia Rome
## 6228 2022-09-16 ITA Europe & Central Asia Rome
## 6229 2022-09-16 ITA Europe & Central Asia Rome
## 6230 2022-09-16 ITA Europe & Central Asia Rome
## 6231 2022-09-16 ITA Europe & Central Asia Rome
## 6232 2022-09-16 ITA Europe & Central Asia Rome
## 6233 2022-09-16 ITA Europe & Central Asia Rome
## 6234 2022-09-16 ITA Europe & Central Asia Rome
## 6235 2022-09-16 ITA Europe & Central Asia Rome
## 6236 2022-09-16 ITA Europe & Central Asia Rome
## 6237 2022-09-16 ITA Europe & Central Asia Rome
## 6238 2022-09-16 ITA Europe & Central Asia Rome
## 6239 2022-09-16 ITA Europe & Central Asia Rome
## 6240 2022-09-16 ITA Europe & Central Asia Rome
## 6241 2022-09-16 ITA Europe & Central Asia Rome
## 6242 2022-09-16 ITA Europe & Central Asia Rome
## 6243 2022-09-16 ITA Europe & Central Asia Rome
## 6244 2022-09-16 ITA Europe & Central Asia Rome
## 6245 2022-09-16 ITA Europe & Central Asia Rome
## 6246 2022-09-16 ITA Europe & Central Asia Rome
## 6247 2022-09-16 ITA Europe & Central Asia Rome
## 6248 2022-09-16 ITA Europe & Central Asia Rome
## 6249 2022-09-16 ITA Europe & Central Asia Rome
## 6250 2022-09-16 ITA Europe & Central Asia Rome
## 6251 2022-09-16 ITA Europe & Central Asia Rome
## 6252 2022-09-16 ITA Europe & Central Asia Rome
## 6253 2022-09-16 ITA Europe & Central Asia Rome
## 6254 2022-09-16 ITA Europe & Central Asia Rome
## 6255 2022-09-16 ITA Europe & Central Asia Rome
## 6256 2022-09-16 ITA Europe & Central Asia Rome
## 6257 2022-09-16 ITA Europe & Central Asia Rome
## 6258 2022-09-16 ITA Europe & Central Asia Rome
## 6259 2022-09-16 ITA Europe & Central Asia Rome
## 6260 2022-09-16 ITA Europe & Central Asia Rome
## 6261 2022-09-16 ITA Europe & Central Asia Rome
## 6262 2022-09-16 ITA Europe & Central Asia Rome
## 6263 2022-09-16 CHI Europe & Central Asia
## 6264 2022-09-16 CHI Europe & Central Asia
## 6265 2022-09-16 CHI Europe & Central Asia
## 6266 2022-09-16 CHI Europe & Central Asia
## 6267 2022-09-16 CHI Europe & Central Asia
## 6268 2022-09-16 CHI Europe & Central Asia
## 6269 2022-09-16 CHI Europe & Central Asia
## 6270 2022-09-16 CHI Europe & Central Asia
## 6271 2022-09-16 CHI Europe & Central Asia
## 6272 2022-09-16 CHI Europe & Central Asia
## 6273 2022-09-16 CHI Europe & Central Asia
## 6274 2022-09-16 CHI Europe & Central Asia
## 6275 2022-09-16 CHI Europe & Central Asia
## 6276 2022-09-16 CHI Europe & Central Asia
## 6277 2022-09-16 CHI Europe & Central Asia
## 6278 2022-09-16 CHI Europe & Central Asia
## 6279 2022-09-16 CHI Europe & Central Asia
## 6280 2022-09-16 CHI Europe & Central Asia
## 6281 2022-09-16 CHI Europe & Central Asia
## 6282 2022-09-16 CHI Europe & Central Asia
## 6283 2022-09-16 CHI Europe & Central Asia
## 6284 2022-09-16 CHI Europe & Central Asia
## 6285 2022-09-16 CHI Europe & Central Asia
## 6286 2022-09-16 CHI Europe & Central Asia
## 6287 2022-09-16 CHI Europe & Central Asia
## 6288 2022-09-16 CHI Europe & Central Asia
## 6289 2022-09-16 CHI Europe & Central Asia
## 6290 2022-09-16 CHI Europe & Central Asia
## 6291 2022-09-16 CHI Europe & Central Asia
## 6292 2022-09-16 CHI Europe & Central Asia
## 6293 2022-09-16 CHI Europe & Central Asia
## 6294 2022-09-16 CHI Europe & Central Asia
## 6295 2022-09-16 CHI Europe & Central Asia
## 6296 2022-09-16 CHI Europe & Central Asia
## 6297 2022-09-16 CHI Europe & Central Asia
## 6298 2022-09-16 CHI Europe & Central Asia
## 6299 2022-09-16 CHI Europe & Central Asia
## 6300 2022-09-16 CHI Europe & Central Asia
## 6301 2022-09-16 CHI Europe & Central Asia
## 6302 2022-09-16 CHI Europe & Central Asia
## 6303 2022-09-16 CHI Europe & Central Asia
## 6304 2022-09-16 CHI Europe & Central Asia
## 6305 2022-09-16 CHI Europe & Central Asia
## 6306 2022-09-16 CHI Europe & Central Asia
## 6307 2022-09-16 CHI Europe & Central Asia
## 6308 2022-09-16 CHI Europe & Central Asia
## 6309 2022-09-16 CHI Europe & Central Asia
## 6310 2022-09-16 CHI Europe & Central Asia
## 6311 2022-09-16 CHI Europe & Central Asia
## 6312 2022-09-16 CHI Europe & Central Asia
## 6313 2022-09-16 CHI Europe & Central Asia
## 6314 2022-09-16 CHI Europe & Central Asia
## 6315 2022-09-16 CHI Europe & Central Asia
## 6316 2022-09-16 CHI Europe & Central Asia
## 6317 2022-09-16 CHI Europe & Central Asia
## 6318 2022-09-16 CHI Europe & Central Asia
## 6319 2022-09-16 CHI Europe & Central Asia
## 6320 2022-09-16 CHI Europe & Central Asia
## 6321 2022-09-16 CHI Europe & Central Asia
## 6322 2022-09-16 CHI Europe & Central Asia
## 6323 2022-09-16 CHI Europe & Central Asia
## 6324 2022-09-16 CHI Europe & Central Asia
## 6325 2022-09-16 JAM Latin America & Caribbean Kingston
## 6326 2022-09-16 JAM Latin America & Caribbean Kingston
## 6327 2022-09-16 JAM Latin America & Caribbean Kingston
## 6328 2022-09-16 JAM Latin America & Caribbean Kingston
## 6329 2022-09-16 JAM Latin America & Caribbean Kingston
## 6330 2022-09-16 JAM Latin America & Caribbean Kingston
## 6331 2022-09-16 JAM Latin America & Caribbean Kingston
## 6332 2022-09-16 JAM Latin America & Caribbean Kingston
## 6333 2022-09-16 JAM Latin America & Caribbean Kingston
## 6334 2022-09-16 JAM Latin America & Caribbean Kingston
## 6335 2022-09-16 JAM Latin America & Caribbean Kingston
## 6336 2022-09-16 JAM Latin America & Caribbean Kingston
## 6337 2022-09-16 JAM Latin America & Caribbean Kingston
## 6338 2022-09-16 JAM Latin America & Caribbean Kingston
## 6339 2022-09-16 JAM Latin America & Caribbean Kingston
## 6340 2022-09-16 JAM Latin America & Caribbean Kingston
## 6341 2022-09-16 JAM Latin America & Caribbean Kingston
## 6342 2022-09-16 JAM Latin America & Caribbean Kingston
## 6343 2022-09-16 JAM Latin America & Caribbean Kingston
## 6344 2022-09-16 JAM Latin America & Caribbean Kingston
## 6345 2022-09-16 JAM Latin America & Caribbean Kingston
## 6346 2022-09-16 JAM Latin America & Caribbean Kingston
## 6347 2022-09-16 JAM Latin America & Caribbean Kingston
## 6348 2022-09-16 JAM Latin America & Caribbean Kingston
## 6349 2022-09-16 JAM Latin America & Caribbean Kingston
## 6350 2022-09-16 JAM Latin America & Caribbean Kingston
## 6351 2022-09-16 JAM Latin America & Caribbean Kingston
## 6352 2022-09-16 JAM Latin America & Caribbean Kingston
## 6353 2022-09-16 JAM Latin America & Caribbean Kingston
## 6354 2022-09-16 JAM Latin America & Caribbean Kingston
## 6355 2022-09-16 JAM Latin America & Caribbean Kingston
## 6356 2022-09-16 JAM Latin America & Caribbean Kingston
## 6357 2022-09-16 JAM Latin America & Caribbean Kingston
## 6358 2022-09-16 JAM Latin America & Caribbean Kingston
## 6359 2022-09-16 JAM Latin America & Caribbean Kingston
## 6360 2022-09-16 JAM Latin America & Caribbean Kingston
## 6361 2022-09-16 JAM Latin America & Caribbean Kingston
## 6362 2022-09-16 JAM Latin America & Caribbean Kingston
## 6363 2022-09-16 JAM Latin America & Caribbean Kingston
## 6364 2022-09-16 JAM Latin America & Caribbean Kingston
## 6365 2022-09-16 JAM Latin America & Caribbean Kingston
## 6366 2022-09-16 JAM Latin America & Caribbean Kingston
## 6367 2022-09-16 JAM Latin America & Caribbean Kingston
## 6368 2022-09-16 JAM Latin America & Caribbean Kingston
## 6369 2022-09-16 JAM Latin America & Caribbean Kingston
## 6370 2022-09-16 JAM Latin America & Caribbean Kingston
## 6371 2022-09-16 JAM Latin America & Caribbean Kingston
## 6372 2022-09-16 JAM Latin America & Caribbean Kingston
## 6373 2022-09-16 JAM Latin America & Caribbean Kingston
## 6374 2022-09-16 JAM Latin America & Caribbean Kingston
## 6375 2022-09-16 JAM Latin America & Caribbean Kingston
## 6376 2022-09-16 JAM Latin America & Caribbean Kingston
## 6377 2022-09-16 JAM Latin America & Caribbean Kingston
## 6378 2022-09-16 JAM Latin America & Caribbean Kingston
## 6379 2022-09-16 JAM Latin America & Caribbean Kingston
## 6380 2022-09-16 JAM Latin America & Caribbean Kingston
## 6381 2022-09-16 JAM Latin America & Caribbean Kingston
## 6382 2022-09-16 JAM Latin America & Caribbean Kingston
## 6383 2022-09-16 JAM Latin America & Caribbean Kingston
## 6384 2022-09-16 JAM Latin America & Caribbean Kingston
## 6385 2022-09-16 JAM Latin America & Caribbean Kingston
## 6386 2022-09-16 JAM Latin America & Caribbean Kingston
## 6387 2022-09-16 JOR Middle East & North Africa Amman
## 6388 2022-09-16 JOR Middle East & North Africa Amman
## 6389 2022-09-16 JOR Middle East & North Africa Amman
## 6390 2022-09-16 JOR Middle East & North Africa Amman
## 6391 2022-09-16 JOR Middle East & North Africa Amman
## 6392 2022-09-16 JOR Middle East & North Africa Amman
## 6393 2022-09-16 JOR Middle East & North Africa Amman
## 6394 2022-09-16 JOR Middle East & North Africa Amman
## 6395 2022-09-16 JOR Middle East & North Africa Amman
## 6396 2022-09-16 JOR Middle East & North Africa Amman
## 6397 2022-09-16 JOR Middle East & North Africa Amman
## 6398 2022-09-16 JOR Middle East & North Africa Amman
## 6399 2022-09-16 JOR Middle East & North Africa Amman
## 6400 2022-09-16 JOR Middle East & North Africa Amman
## 6401 2022-09-16 JOR Middle East & North Africa Amman
## 6402 2022-09-16 JOR Middle East & North Africa Amman
## 6403 2022-09-16 JOR Middle East & North Africa Amman
## 6404 2022-09-16 JOR Middle East & North Africa Amman
## 6405 2022-09-16 JOR Middle East & North Africa Amman
## 6406 2022-09-16 JOR Middle East & North Africa Amman
## 6407 2022-09-16 JOR Middle East & North Africa Amman
## 6408 2022-09-16 JOR Middle East & North Africa Amman
## 6409 2022-09-16 JOR Middle East & North Africa Amman
## 6410 2022-09-16 JOR Middle East & North Africa Amman
## 6411 2022-09-16 JOR Middle East & North Africa Amman
## 6412 2022-09-16 JOR Middle East & North Africa Amman
## 6413 2022-09-16 JOR Middle East & North Africa Amman
## 6414 2022-09-16 JOR Middle East & North Africa Amman
## 6415 2022-09-16 JOR Middle East & North Africa Amman
## 6416 2022-09-16 JOR Middle East & North Africa Amman
## 6417 2022-09-16 JOR Middle East & North Africa Amman
## 6418 2022-09-16 JOR Middle East & North Africa Amman
## 6419 2022-09-16 JOR Middle East & North Africa Amman
## 6420 2022-09-16 JOR Middle East & North Africa Amman
## 6421 2022-09-16 JOR Middle East & North Africa Amman
## 6422 2022-09-16 JOR Middle East & North Africa Amman
## 6423 2022-09-16 JOR Middle East & North Africa Amman
## 6424 2022-09-16 JOR Middle East & North Africa Amman
## 6425 2022-09-16 JOR Middle East & North Africa Amman
## 6426 2022-09-16 JOR Middle East & North Africa Amman
## 6427 2022-09-16 JOR Middle East & North Africa Amman
## 6428 2022-09-16 JOR Middle East & North Africa Amman
## 6429 2022-09-16 JOR Middle East & North Africa Amman
## 6430 2022-09-16 JOR Middle East & North Africa Amman
## 6431 2022-09-16 JOR Middle East & North Africa Amman
## 6432 2022-09-16 JOR Middle East & North Africa Amman
## 6433 2022-09-16 JOR Middle East & North Africa Amman
## 6434 2022-09-16 JOR Middle East & North Africa Amman
## 6435 2022-09-16 JOR Middle East & North Africa Amman
## 6436 2022-09-16 JOR Middle East & North Africa Amman
## 6437 2022-09-16 JOR Middle East & North Africa Amman
## 6438 2022-09-16 JOR Middle East & North Africa Amman
## 6439 2022-09-16 JOR Middle East & North Africa Amman
## 6440 2022-09-16 JOR Middle East & North Africa Amman
## 6441 2022-09-16 JOR Middle East & North Africa Amman
## 6442 2022-09-16 JOR Middle East & North Africa Amman
## 6443 2022-09-16 JOR Middle East & North Africa Amman
## 6444 2022-09-16 JOR Middle East & North Africa Amman
## 6445 2022-09-16 JOR Middle East & North Africa Amman
## 6446 2022-09-16 JOR Middle East & North Africa Amman
## 6447 2022-09-16 JOR Middle East & North Africa Amman
## 6448 2022-09-16 JOR Middle East & North Africa Amman
## 6449 2022-09-16 JPN East Asia & Pacific Tokyo
## 6450 2022-09-16 JPN East Asia & Pacific Tokyo
## 6451 2022-09-16 JPN East Asia & Pacific Tokyo
## 6452 2022-09-16 JPN East Asia & Pacific Tokyo
## 6453 2022-09-16 JPN East Asia & Pacific Tokyo
## 6454 2022-09-16 JPN East Asia & Pacific Tokyo
## 6455 2022-09-16 JPN East Asia & Pacific Tokyo
## 6456 2022-09-16 JPN East Asia & Pacific Tokyo
## 6457 2022-09-16 JPN East Asia & Pacific Tokyo
## 6458 2022-09-16 JPN East Asia & Pacific Tokyo
## 6459 2022-09-16 JPN East Asia & Pacific Tokyo
## 6460 2022-09-16 JPN East Asia & Pacific Tokyo
## 6461 2022-09-16 JPN East Asia & Pacific Tokyo
## 6462 2022-09-16 JPN East Asia & Pacific Tokyo
## 6463 2022-09-16 JPN East Asia & Pacific Tokyo
## 6464 2022-09-16 JPN East Asia & Pacific Tokyo
## 6465 2022-09-16 JPN East Asia & Pacific Tokyo
## 6466 2022-09-16 JPN East Asia & Pacific Tokyo
## 6467 2022-09-16 JPN East Asia & Pacific Tokyo
## 6468 2022-09-16 JPN East Asia & Pacific Tokyo
## 6469 2022-09-16 JPN East Asia & Pacific Tokyo
## 6470 2022-09-16 JPN East Asia & Pacific Tokyo
## 6471 2022-09-16 JPN East Asia & Pacific Tokyo
## 6472 2022-09-16 JPN East Asia & Pacific Tokyo
## 6473 2022-09-16 JPN East Asia & Pacific Tokyo
## 6474 2022-09-16 JPN East Asia & Pacific Tokyo
## 6475 2022-09-16 JPN East Asia & Pacific Tokyo
## 6476 2022-09-16 JPN East Asia & Pacific Tokyo
## 6477 2022-09-16 JPN East Asia & Pacific Tokyo
## 6478 2022-09-16 JPN East Asia & Pacific Tokyo
## 6479 2022-09-16 JPN East Asia & Pacific Tokyo
## 6480 2022-09-16 JPN East Asia & Pacific Tokyo
## 6481 2022-09-16 JPN East Asia & Pacific Tokyo
## 6482 2022-09-16 JPN East Asia & Pacific Tokyo
## 6483 2022-09-16 JPN East Asia & Pacific Tokyo
## 6484 2022-09-16 JPN East Asia & Pacific Tokyo
## 6485 2022-09-16 JPN East Asia & Pacific Tokyo
## 6486 2022-09-16 JPN East Asia & Pacific Tokyo
## 6487 2022-09-16 JPN East Asia & Pacific Tokyo
## 6488 2022-09-16 JPN East Asia & Pacific Tokyo
## 6489 2022-09-16 JPN East Asia & Pacific Tokyo
## 6490 2022-09-16 JPN East Asia & Pacific Tokyo
## 6491 2022-09-16 JPN East Asia & Pacific Tokyo
## 6492 2022-09-16 JPN East Asia & Pacific Tokyo
## 6493 2022-09-16 JPN East Asia & Pacific Tokyo
## 6494 2022-09-16 JPN East Asia & Pacific Tokyo
## 6495 2022-09-16 JPN East Asia & Pacific Tokyo
## 6496 2022-09-16 JPN East Asia & Pacific Tokyo
## 6497 2022-09-16 JPN East Asia & Pacific Tokyo
## 6498 2022-09-16 JPN East Asia & Pacific Tokyo
## 6499 2022-09-16 JPN East Asia & Pacific Tokyo
## 6500 2022-09-16 JPN East Asia & Pacific Tokyo
## 6501 2022-09-16 JPN East Asia & Pacific Tokyo
## 6502 2022-09-16 JPN East Asia & Pacific Tokyo
## 6503 2022-09-16 JPN East Asia & Pacific Tokyo
## 6504 2022-09-16 JPN East Asia & Pacific Tokyo
## 6505 2022-09-16 JPN East Asia & Pacific Tokyo
## 6506 2022-09-16 JPN East Asia & Pacific Tokyo
## 6507 2022-09-16 JPN East Asia & Pacific Tokyo
## 6508 2022-09-16 JPN East Asia & Pacific Tokyo
## 6509 2022-09-16 JPN East Asia & Pacific Tokyo
## 6510 2022-09-16 JPN East Asia & Pacific Tokyo
## 6511 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6512 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6513 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6514 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6515 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6516 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6517 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6518 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6519 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6520 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6521 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6522 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6523 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6524 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6525 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6526 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6527 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6528 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6529 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6530 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6531 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6532 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6533 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6534 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6535 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6536 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6537 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6538 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6539 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6540 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6541 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6542 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6543 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6544 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6545 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6546 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6547 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6548 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6549 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6550 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6551 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6552 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6553 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6554 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6555 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6556 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6557 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6558 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6559 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6560 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6561 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6562 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6563 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6564 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6565 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6566 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6567 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6568 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6569 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6570 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6571 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6572 2022-09-16 KEN Sub-Saharan Africa Nairobi
## 6573 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6574 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6575 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6576 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6577 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6578 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6579 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6580 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6581 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6582 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6583 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6584 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6585 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6586 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6587 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6588 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6589 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6590 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6591 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6592 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6593 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6594 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6595 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6596 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6597 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6598 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6599 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6600 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6601 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6602 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6603 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6604 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6605 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6606 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6607 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6608 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6609 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6610 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6611 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6612 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6613 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6614 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6615 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6616 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6617 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6618 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6619 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6620 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6621 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6622 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6623 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6624 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6625 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6626 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6627 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6628 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6629 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6630 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6631 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6632 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6633 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6634 2022-09-16 KGZ Europe & Central Asia Bishkek
## 6635 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6636 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6637 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6638 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6639 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6640 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6641 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6642 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6643 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6644 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6645 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6646 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6647 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6648 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6649 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6650 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6651 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6652 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6653 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6654 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6655 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6656 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6657 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6658 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6659 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6660 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6661 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6662 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6663 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6664 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6665 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6666 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6667 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6668 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6669 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6670 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6671 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6672 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6673 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6674 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6675 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6676 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6677 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6678 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6679 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6680 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6681 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6682 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6683 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6684 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6685 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6686 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6687 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6688 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6689 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6690 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6691 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6692 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6693 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6694 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6695 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6696 2022-09-16 KHM East Asia & Pacific Phnom Penh
## 6697 2022-09-16 KIR East Asia & Pacific Tarawa
## 6698 2022-09-16 KIR East Asia & Pacific Tarawa
## 6699 2022-09-16 KIR East Asia & Pacific Tarawa
## 6700 2022-09-16 KIR East Asia & Pacific Tarawa
## 6701 2022-09-16 KIR East Asia & Pacific Tarawa
## 6702 2022-09-16 KIR East Asia & Pacific Tarawa
## 6703 2022-09-16 KIR East Asia & Pacific Tarawa
## 6704 2022-09-16 KIR East Asia & Pacific Tarawa
## 6705 2022-09-16 KIR East Asia & Pacific Tarawa
## 6706 2022-09-16 KIR East Asia & Pacific Tarawa
## 6707 2022-09-16 KIR East Asia & Pacific Tarawa
## 6708 2022-09-16 KIR East Asia & Pacific Tarawa
## 6709 2022-09-16 KIR East Asia & Pacific Tarawa
## 6710 2022-09-16 KIR East Asia & Pacific Tarawa
## 6711 2022-09-16 KIR East Asia & Pacific Tarawa
## 6712 2022-09-16 KIR East Asia & Pacific Tarawa
## 6713 2022-09-16 KIR East Asia & Pacific Tarawa
## 6714 2022-09-16 KIR East Asia & Pacific Tarawa
## 6715 2022-09-16 KIR East Asia & Pacific Tarawa
## 6716 2022-09-16 KIR East Asia & Pacific Tarawa
## 6717 2022-09-16 KIR East Asia & Pacific Tarawa
## 6718 2022-09-16 KIR East Asia & Pacific Tarawa
## 6719 2022-09-16 KIR East Asia & Pacific Tarawa
## 6720 2022-09-16 KIR East Asia & Pacific Tarawa
## 6721 2022-09-16 KIR East Asia & Pacific Tarawa
## 6722 2022-09-16 KIR East Asia & Pacific Tarawa
## 6723 2022-09-16 KIR East Asia & Pacific Tarawa
## 6724 2022-09-16 KIR East Asia & Pacific Tarawa
## 6725 2022-09-16 KIR East Asia & Pacific Tarawa
## 6726 2022-09-16 KIR East Asia & Pacific Tarawa
## 6727 2022-09-16 KIR East Asia & Pacific Tarawa
## 6728 2022-09-16 KIR East Asia & Pacific Tarawa
## 6729 2022-09-16 KIR East Asia & Pacific Tarawa
## 6730 2022-09-16 KIR East Asia & Pacific Tarawa
## 6731 2022-09-16 KIR East Asia & Pacific Tarawa
## 6732 2022-09-16 KIR East Asia & Pacific Tarawa
## 6733 2022-09-16 KIR East Asia & Pacific Tarawa
## 6734 2022-09-16 KIR East Asia & Pacific Tarawa
## 6735 2022-09-16 KIR East Asia & Pacific Tarawa
## 6736 2022-09-16 KIR East Asia & Pacific Tarawa
## 6737 2022-09-16 KIR East Asia & Pacific Tarawa
## 6738 2022-09-16 KIR East Asia & Pacific Tarawa
## 6739 2022-09-16 KIR East Asia & Pacific Tarawa
## 6740 2022-09-16 KIR East Asia & Pacific Tarawa
## 6741 2022-09-16 KIR East Asia & Pacific Tarawa
## 6742 2022-09-16 KIR East Asia & Pacific Tarawa
## 6743 2022-09-16 KIR East Asia & Pacific Tarawa
## 6744 2022-09-16 KIR East Asia & Pacific Tarawa
## 6745 2022-09-16 KIR East Asia & Pacific Tarawa
## 6746 2022-09-16 KIR East Asia & Pacific Tarawa
## 6747 2022-09-16 KIR East Asia & Pacific Tarawa
## 6748 2022-09-16 KIR East Asia & Pacific Tarawa
## 6749 2022-09-16 KIR East Asia & Pacific Tarawa
## 6750 2022-09-16 KIR East Asia & Pacific Tarawa
## 6751 2022-09-16 KIR East Asia & Pacific Tarawa
## 6752 2022-09-16 KIR East Asia & Pacific Tarawa
## 6753 2022-09-16 KIR East Asia & Pacific Tarawa
## 6754 2022-09-16 KIR East Asia & Pacific Tarawa
## 6755 2022-09-16 KIR East Asia & Pacific Tarawa
## 6756 2022-09-16 KIR East Asia & Pacific Tarawa
## 6757 2022-09-16 KIR East Asia & Pacific Tarawa
## 6758 2022-09-16 KIR East Asia & Pacific Tarawa
## 6759 2022-09-16 COM Sub-Saharan Africa Moroni
## 6760 2022-09-16 COM Sub-Saharan Africa Moroni
## 6761 2022-09-16 COM Sub-Saharan Africa Moroni
## 6762 2022-09-16 COM Sub-Saharan Africa Moroni
## 6763 2022-09-16 COM Sub-Saharan Africa Moroni
## 6764 2022-09-16 COM Sub-Saharan Africa Moroni
## 6765 2022-09-16 COM Sub-Saharan Africa Moroni
## 6766 2022-09-16 COM Sub-Saharan Africa Moroni
## 6767 2022-09-16 COM Sub-Saharan Africa Moroni
## 6768 2022-09-16 COM Sub-Saharan Africa Moroni
## 6769 2022-09-16 COM Sub-Saharan Africa Moroni
## 6770 2022-09-16 COM Sub-Saharan Africa Moroni
## 6771 2022-09-16 COM Sub-Saharan Africa Moroni
## 6772 2022-09-16 COM Sub-Saharan Africa Moroni
## 6773 2022-09-16 COM Sub-Saharan Africa Moroni
## 6774 2022-09-16 COM Sub-Saharan Africa Moroni
## 6775 2022-09-16 COM Sub-Saharan Africa Moroni
## 6776 2022-09-16 COM Sub-Saharan Africa Moroni
## 6777 2022-09-16 COM Sub-Saharan Africa Moroni
## 6778 2022-09-16 COM Sub-Saharan Africa Moroni
## 6779 2022-09-16 COM Sub-Saharan Africa Moroni
## 6780 2022-09-16 COM Sub-Saharan Africa Moroni
## 6781 2022-09-16 COM Sub-Saharan Africa Moroni
## 6782 2022-09-16 COM Sub-Saharan Africa Moroni
## 6783 2022-09-16 COM Sub-Saharan Africa Moroni
## 6784 2022-09-16 COM Sub-Saharan Africa Moroni
## 6785 2022-09-16 COM Sub-Saharan Africa Moroni
## 6786 2022-09-16 COM Sub-Saharan Africa Moroni
## 6787 2022-09-16 COM Sub-Saharan Africa Moroni
## 6788 2022-09-16 COM Sub-Saharan Africa Moroni
## 6789 2022-09-16 COM Sub-Saharan Africa Moroni
## 6790 2022-09-16 COM Sub-Saharan Africa Moroni
## 6791 2022-09-16 COM Sub-Saharan Africa Moroni
## 6792 2022-09-16 COM Sub-Saharan Africa Moroni
## 6793 2022-09-16 COM Sub-Saharan Africa Moroni
## 6794 2022-09-16 COM Sub-Saharan Africa Moroni
## 6795 2022-09-16 COM Sub-Saharan Africa Moroni
## 6796 2022-09-16 COM Sub-Saharan Africa Moroni
## 6797 2022-09-16 COM Sub-Saharan Africa Moroni
## 6798 2022-09-16 COM Sub-Saharan Africa Moroni
## 6799 2022-09-16 COM Sub-Saharan Africa Moroni
## 6800 2022-09-16 COM Sub-Saharan Africa Moroni
## 6801 2022-09-16 COM Sub-Saharan Africa Moroni
## 6802 2022-09-16 COM Sub-Saharan Africa Moroni
## 6803 2022-09-16 COM Sub-Saharan Africa Moroni
## 6804 2022-09-16 COM Sub-Saharan Africa Moroni
## 6805 2022-09-16 COM Sub-Saharan Africa Moroni
## 6806 2022-09-16 COM Sub-Saharan Africa Moroni
## 6807 2022-09-16 COM Sub-Saharan Africa Moroni
## 6808 2022-09-16 COM Sub-Saharan Africa Moroni
## 6809 2022-09-16 COM Sub-Saharan Africa Moroni
## 6810 2022-09-16 COM Sub-Saharan Africa Moroni
## 6811 2022-09-16 COM Sub-Saharan Africa Moroni
## 6812 2022-09-16 COM Sub-Saharan Africa Moroni
## 6813 2022-09-16 COM Sub-Saharan Africa Moroni
## 6814 2022-09-16 COM Sub-Saharan Africa Moroni
## 6815 2022-09-16 COM Sub-Saharan Africa Moroni
## 6816 2022-09-16 COM Sub-Saharan Africa Moroni
## 6817 2022-09-16 COM Sub-Saharan Africa Moroni
## 6818 2022-09-16 COM Sub-Saharan Africa Moroni
## 6819 2022-09-16 COM Sub-Saharan Africa Moroni
## 6820 2022-09-16 COM Sub-Saharan Africa Moroni
## 6821 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6822 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6823 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6824 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6825 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6826 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6827 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6828 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6829 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6830 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6831 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6832 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6833 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6834 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6835 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6836 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6837 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6838 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6839 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6840 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6841 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6842 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6843 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6844 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6845 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6846 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6847 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6848 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6849 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6850 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6851 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6852 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6853 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6854 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6855 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6856 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6857 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6858 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6859 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6860 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6861 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6862 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6863 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6864 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6865 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6866 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6867 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6868 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6869 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6870 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6871 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6872 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6873 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6874 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6875 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6876 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6877 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6878 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6879 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6880 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6881 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6882 2022-09-16 KNA Latin America & Caribbean Basseterre
## 6883 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6884 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6885 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6886 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6887 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6888 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6889 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6890 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6891 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6892 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6893 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6894 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6895 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6896 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6897 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6898 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6899 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6900 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6901 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6902 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6903 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6904 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6905 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6906 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6907 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6908 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6909 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6910 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6911 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6912 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6913 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6914 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6915 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6916 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6917 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6918 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6919 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6920 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6921 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6922 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6923 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6924 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6925 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6926 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6927 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6928 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6929 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6930 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6931 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6932 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6933 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6934 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6935 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6936 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6937 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6938 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6939 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6940 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6941 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6942 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6943 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6944 2022-09-16 PRK East Asia & Pacific Pyongyang
## 6945 2022-09-16 KOR East Asia & Pacific Seoul
## 6946 2022-09-16 KOR East Asia & Pacific Seoul
## 6947 2022-09-16 KOR East Asia & Pacific Seoul
## 6948 2022-09-16 KOR East Asia & Pacific Seoul
## 6949 2022-09-16 KOR East Asia & Pacific Seoul
## 6950 2022-09-16 KOR East Asia & Pacific Seoul
## 6951 2022-09-16 KOR East Asia & Pacific Seoul
## 6952 2022-09-16 KOR East Asia & Pacific Seoul
## 6953 2022-09-16 KOR East Asia & Pacific Seoul
## 6954 2022-09-16 KOR East Asia & Pacific Seoul
## 6955 2022-09-16 KOR East Asia & Pacific Seoul
## 6956 2022-09-16 KOR East Asia & Pacific Seoul
## 6957 2022-09-16 KOR East Asia & Pacific Seoul
## 6958 2022-09-16 KOR East Asia & Pacific Seoul
## 6959 2022-09-16 KOR East Asia & Pacific Seoul
## 6960 2022-09-16 KOR East Asia & Pacific Seoul
## 6961 2022-09-16 KOR East Asia & Pacific Seoul
## 6962 2022-09-16 KOR East Asia & Pacific Seoul
## 6963 2022-09-16 KOR East Asia & Pacific Seoul
## 6964 2022-09-16 KOR East Asia & Pacific Seoul
## 6965 2022-09-16 KOR East Asia & Pacific Seoul
## 6966 2022-09-16 KOR East Asia & Pacific Seoul
## 6967 2022-09-16 KOR East Asia & Pacific Seoul
## 6968 2022-09-16 KOR East Asia & Pacific Seoul
## 6969 2022-09-16 KOR East Asia & Pacific Seoul
## 6970 2022-09-16 KOR East Asia & Pacific Seoul
## 6971 2022-09-16 KOR East Asia & Pacific Seoul
## 6972 2022-09-16 KOR East Asia & Pacific Seoul
## 6973 2022-09-16 KOR East Asia & Pacific Seoul
## 6974 2022-09-16 KOR East Asia & Pacific Seoul
## 6975 2022-09-16 KOR East Asia & Pacific Seoul
## 6976 2022-09-16 KOR East Asia & Pacific Seoul
## 6977 2022-09-16 KOR East Asia & Pacific Seoul
## 6978 2022-09-16 KOR East Asia & Pacific Seoul
## 6979 2022-09-16 KOR East Asia & Pacific Seoul
## 6980 2022-09-16 KOR East Asia & Pacific Seoul
## 6981 2022-09-16 KOR East Asia & Pacific Seoul
## 6982 2022-09-16 KOR East Asia & Pacific Seoul
## 6983 2022-09-16 KOR East Asia & Pacific Seoul
## 6984 2022-09-16 KOR East Asia & Pacific Seoul
## 6985 2022-09-16 KOR East Asia & Pacific Seoul
## 6986 2022-09-16 KOR East Asia & Pacific Seoul
## 6987 2022-09-16 KOR East Asia & Pacific Seoul
## 6988 2022-09-16 KOR East Asia & Pacific Seoul
## 6989 2022-09-16 KOR East Asia & Pacific Seoul
## 6990 2022-09-16 KOR East Asia & Pacific Seoul
## 6991 2022-09-16 KOR East Asia & Pacific Seoul
## 6992 2022-09-16 KOR East Asia & Pacific Seoul
## 6993 2022-09-16 KOR East Asia & Pacific Seoul
## 6994 2022-09-16 KOR East Asia & Pacific Seoul
## 6995 2022-09-16 KOR East Asia & Pacific Seoul
## 6996 2022-09-16 KOR East Asia & Pacific Seoul
## 6997 2022-09-16 KOR East Asia & Pacific Seoul
## 6998 2022-09-16 KOR East Asia & Pacific Seoul
## 6999 2022-09-16 KOR East Asia & Pacific Seoul
## 7000 2022-09-16 KOR East Asia & Pacific Seoul
## 7001 2022-09-16 KOR East Asia & Pacific Seoul
## 7002 2022-09-16 KOR East Asia & Pacific Seoul
## 7003 2022-09-16 KOR East Asia & Pacific Seoul
## 7004 2022-09-16 KOR East Asia & Pacific Seoul
## 7005 2022-09-16 KOR East Asia & Pacific Seoul
## 7006 2022-09-16 KOR East Asia & Pacific Seoul
## 7007 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7008 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7009 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7010 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7011 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7012 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7013 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7014 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7015 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7016 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7017 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7018 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7019 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7020 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7021 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7022 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7023 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7024 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7025 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7026 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7027 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7028 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7029 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7030 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7031 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7032 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7033 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7034 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7035 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7036 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7037 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7038 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7039 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7040 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7041 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7042 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7043 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7044 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7045 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7046 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7047 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7048 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7049 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7050 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7051 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7052 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7053 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7054 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7055 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7056 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7057 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7058 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7059 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7060 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7061 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7062 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7063 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7064 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7065 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7066 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7067 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7068 2022-09-16 KWT Middle East & North Africa Kuwait City
## 7069 2022-09-16 CYM Latin America & Caribbean George Town
## 7070 2022-09-16 CYM Latin America & Caribbean George Town
## 7071 2022-09-16 CYM Latin America & Caribbean George Town
## 7072 2022-09-16 CYM Latin America & Caribbean George Town
## 7073 2022-09-16 CYM Latin America & Caribbean George Town
## 7074 2022-09-16 CYM Latin America & Caribbean George Town
## 7075 2022-09-16 CYM Latin America & Caribbean George Town
## 7076 2022-09-16 CYM Latin America & Caribbean George Town
## 7077 2022-09-16 CYM Latin America & Caribbean George Town
## 7078 2022-09-16 CYM Latin America & Caribbean George Town
## 7079 2022-09-16 CYM Latin America & Caribbean George Town
## 7080 2022-09-16 CYM Latin America & Caribbean George Town
## 7081 2022-09-16 CYM Latin America & Caribbean George Town
## 7082 2022-09-16 CYM Latin America & Caribbean George Town
## 7083 2022-09-16 CYM Latin America & Caribbean George Town
## 7084 2022-09-16 CYM Latin America & Caribbean George Town
## 7085 2022-09-16 CYM Latin America & Caribbean George Town
## 7086 2022-09-16 CYM Latin America & Caribbean George Town
## 7087 2022-09-16 CYM Latin America & Caribbean George Town
## 7088 2022-09-16 CYM Latin America & Caribbean George Town
## 7089 2022-09-16 CYM Latin America & Caribbean George Town
## 7090 2022-09-16 CYM Latin America & Caribbean George Town
## 7091 2022-09-16 CYM Latin America & Caribbean George Town
## 7092 2022-09-16 CYM Latin America & Caribbean George Town
## 7093 2022-09-16 CYM Latin America & Caribbean George Town
## 7094 2022-09-16 CYM Latin America & Caribbean George Town
## 7095 2022-09-16 CYM Latin America & Caribbean George Town
## 7096 2022-09-16 CYM Latin America & Caribbean George Town
## 7097 2022-09-16 CYM Latin America & Caribbean George Town
## 7098 2022-09-16 CYM Latin America & Caribbean George Town
## 7099 2022-09-16 CYM Latin America & Caribbean George Town
## 7100 2022-09-16 CYM Latin America & Caribbean George Town
## 7101 2022-09-16 CYM Latin America & Caribbean George Town
## 7102 2022-09-16 CYM Latin America & Caribbean George Town
## 7103 2022-09-16 CYM Latin America & Caribbean George Town
## 7104 2022-09-16 CYM Latin America & Caribbean George Town
## 7105 2022-09-16 CYM Latin America & Caribbean George Town
## 7106 2022-09-16 CYM Latin America & Caribbean George Town
## 7107 2022-09-16 CYM Latin America & Caribbean George Town
## 7108 2022-09-16 CYM Latin America & Caribbean George Town
## 7109 2022-09-16 CYM Latin America & Caribbean George Town
## 7110 2022-09-16 CYM Latin America & Caribbean George Town
## 7111 2022-09-16 CYM Latin America & Caribbean George Town
## 7112 2022-09-16 CYM Latin America & Caribbean George Town
## 7113 2022-09-16 CYM Latin America & Caribbean George Town
## 7114 2022-09-16 CYM Latin America & Caribbean George Town
## 7115 2022-09-16 CYM Latin America & Caribbean George Town
## 7116 2022-09-16 CYM Latin America & Caribbean George Town
## 7117 2022-09-16 CYM Latin America & Caribbean George Town
## 7118 2022-09-16 CYM Latin America & Caribbean George Town
## 7119 2022-09-16 CYM Latin America & Caribbean George Town
## 7120 2022-09-16 CYM Latin America & Caribbean George Town
## 7121 2022-09-16 CYM Latin America & Caribbean George Town
## 7122 2022-09-16 CYM Latin America & Caribbean George Town
## 7123 2022-09-16 CYM Latin America & Caribbean George Town
## 7124 2022-09-16 CYM Latin America & Caribbean George Town
## 7125 2022-09-16 CYM Latin America & Caribbean George Town
## 7126 2022-09-16 CYM Latin America & Caribbean George Town
## 7127 2022-09-16 CYM Latin America & Caribbean George Town
## 7128 2022-09-16 CYM Latin America & Caribbean George Town
## 7129 2022-09-16 CYM Latin America & Caribbean George Town
## 7130 2022-09-16 CYM Latin America & Caribbean George Town
## 7131 2022-09-16 KAZ Europe & Central Asia Astana
## 7132 2022-09-16 KAZ Europe & Central Asia Astana
## 7133 2022-09-16 KAZ Europe & Central Asia Astana
## 7134 2022-09-16 KAZ Europe & Central Asia Astana
## 7135 2022-09-16 KAZ Europe & Central Asia Astana
## 7136 2022-09-16 KAZ Europe & Central Asia Astana
## 7137 2022-09-16 KAZ Europe & Central Asia Astana
## 7138 2022-09-16 KAZ Europe & Central Asia Astana
## 7139 2022-09-16 KAZ Europe & Central Asia Astana
## 7140 2022-09-16 KAZ Europe & Central Asia Astana
## 7141 2022-09-16 KAZ Europe & Central Asia Astana
## 7142 2022-09-16 KAZ Europe & Central Asia Astana
## 7143 2022-09-16 KAZ Europe & Central Asia Astana
## 7144 2022-09-16 KAZ Europe & Central Asia Astana
## 7145 2022-09-16 KAZ Europe & Central Asia Astana
## 7146 2022-09-16 KAZ Europe & Central Asia Astana
## 7147 2022-09-16 KAZ Europe & Central Asia Astana
## 7148 2022-09-16 KAZ Europe & Central Asia Astana
## 7149 2022-09-16 KAZ Europe & Central Asia Astana
## 7150 2022-09-16 KAZ Europe & Central Asia Astana
## 7151 2022-09-16 KAZ Europe & Central Asia Astana
## 7152 2022-09-16 KAZ Europe & Central Asia Astana
## 7153 2022-09-16 KAZ Europe & Central Asia Astana
## 7154 2022-09-16 KAZ Europe & Central Asia Astana
## 7155 2022-09-16 KAZ Europe & Central Asia Astana
## 7156 2022-09-16 KAZ Europe & Central Asia Astana
## 7157 2022-09-16 KAZ Europe & Central Asia Astana
## 7158 2022-09-16 KAZ Europe & Central Asia Astana
## 7159 2022-09-16 KAZ Europe & Central Asia Astana
## 7160 2022-09-16 KAZ Europe & Central Asia Astana
## 7161 2022-09-16 KAZ Europe & Central Asia Astana
## 7162 2022-09-16 KAZ Europe & Central Asia Astana
## 7163 2022-09-16 KAZ Europe & Central Asia Astana
## 7164 2022-09-16 KAZ Europe & Central Asia Astana
## 7165 2022-09-16 KAZ Europe & Central Asia Astana
## 7166 2022-09-16 KAZ Europe & Central Asia Astana
## 7167 2022-09-16 KAZ Europe & Central Asia Astana
## 7168 2022-09-16 KAZ Europe & Central Asia Astana
## 7169 2022-09-16 KAZ Europe & Central Asia Astana
## 7170 2022-09-16 KAZ Europe & Central Asia Astana
## 7171 2022-09-16 KAZ Europe & Central Asia Astana
## 7172 2022-09-16 KAZ Europe & Central Asia Astana
## 7173 2022-09-16 KAZ Europe & Central Asia Astana
## 7174 2022-09-16 KAZ Europe & Central Asia Astana
## 7175 2022-09-16 KAZ Europe & Central Asia Astana
## 7176 2022-09-16 KAZ Europe & Central Asia Astana
## 7177 2022-09-16 KAZ Europe & Central Asia Astana
## 7178 2022-09-16 KAZ Europe & Central Asia Astana
## 7179 2022-09-16 KAZ Europe & Central Asia Astana
## 7180 2022-09-16 KAZ Europe & Central Asia Astana
## 7181 2022-09-16 KAZ Europe & Central Asia Astana
## 7182 2022-09-16 KAZ Europe & Central Asia Astana
## 7183 2022-09-16 KAZ Europe & Central Asia Astana
## 7184 2022-09-16 KAZ Europe & Central Asia Astana
## 7185 2022-09-16 KAZ Europe & Central Asia Astana
## 7186 2022-09-16 KAZ Europe & Central Asia Astana
## 7187 2022-09-16 KAZ Europe & Central Asia Astana
## 7188 2022-09-16 KAZ Europe & Central Asia Astana
## 7189 2022-09-16 KAZ Europe & Central Asia Astana
## 7190 2022-09-16 KAZ Europe & Central Asia Astana
## 7191 2022-09-16 KAZ Europe & Central Asia Astana
## 7192 2022-09-16 KAZ Europe & Central Asia Astana
## 7193 2022-09-16 LAO East Asia & Pacific Vientiane
## 7194 2022-09-16 LAO East Asia & Pacific Vientiane
## 7195 2022-09-16 LAO East Asia & Pacific Vientiane
## 7196 2022-09-16 LAO East Asia & Pacific Vientiane
## 7197 2022-09-16 LAO East Asia & Pacific Vientiane
## 7198 2022-09-16 LAO East Asia & Pacific Vientiane
## 7199 2022-09-16 LAO East Asia & Pacific Vientiane
## 7200 2022-09-16 LAO East Asia & Pacific Vientiane
## 7201 2022-09-16 LAO East Asia & Pacific Vientiane
## 7202 2022-09-16 LAO East Asia & Pacific Vientiane
## 7203 2022-09-16 LAO East Asia & Pacific Vientiane
## 7204 2022-09-16 LAO East Asia & Pacific Vientiane
## 7205 2022-09-16 LAO East Asia & Pacific Vientiane
## 7206 2022-09-16 LAO East Asia & Pacific Vientiane
## 7207 2022-09-16 LAO East Asia & Pacific Vientiane
## 7208 2022-09-16 LAO East Asia & Pacific Vientiane
## 7209 2022-09-16 LAO East Asia & Pacific Vientiane
## 7210 2022-09-16 LAO East Asia & Pacific Vientiane
## 7211 2022-09-16 LAO East Asia & Pacific Vientiane
## 7212 2022-09-16 LAO East Asia & Pacific Vientiane
## 7213 2022-09-16 LAO East Asia & Pacific Vientiane
## 7214 2022-09-16 LAO East Asia & Pacific Vientiane
## 7215 2022-09-16 LAO East Asia & Pacific Vientiane
## 7216 2022-09-16 LAO East Asia & Pacific Vientiane
## 7217 2022-09-16 LAO East Asia & Pacific Vientiane
## 7218 2022-09-16 LAO East Asia & Pacific Vientiane
## 7219 2022-09-16 LAO East Asia & Pacific Vientiane
## 7220 2022-09-16 LAO East Asia & Pacific Vientiane
## 7221 2022-09-16 LAO East Asia & Pacific Vientiane
## 7222 2022-09-16 LAO East Asia & Pacific Vientiane
## 7223 2022-09-16 LAO East Asia & Pacific Vientiane
## 7224 2022-09-16 LAO East Asia & Pacific Vientiane
## 7225 2022-09-16 LAO East Asia & Pacific Vientiane
## 7226 2022-09-16 LAO East Asia & Pacific Vientiane
## 7227 2022-09-16 LAO East Asia & Pacific Vientiane
## 7228 2022-09-16 LAO East Asia & Pacific Vientiane
## 7229 2022-09-16 LAO East Asia & Pacific Vientiane
## 7230 2022-09-16 LAO East Asia & Pacific Vientiane
## 7231 2022-09-16 LAO East Asia & Pacific Vientiane
## 7232 2022-09-16 LAO East Asia & Pacific Vientiane
## 7233 2022-09-16 LAO East Asia & Pacific Vientiane
## 7234 2022-09-16 LAO East Asia & Pacific Vientiane
## 7235 2022-09-16 LAO East Asia & Pacific Vientiane
## 7236 2022-09-16 LAO East Asia & Pacific Vientiane
## 7237 2022-09-16 LAO East Asia & Pacific Vientiane
## 7238 2022-09-16 LAO East Asia & Pacific Vientiane
## 7239 2022-09-16 LAO East Asia & Pacific Vientiane
## 7240 2022-09-16 LAO East Asia & Pacific Vientiane
## 7241 2022-09-16 LAO East Asia & Pacific Vientiane
## 7242 2022-09-16 LAO East Asia & Pacific Vientiane
## 7243 2022-09-16 LAO East Asia & Pacific Vientiane
## 7244 2022-09-16 LAO East Asia & Pacific Vientiane
## 7245 2022-09-16 LAO East Asia & Pacific Vientiane
## 7246 2022-09-16 LAO East Asia & Pacific Vientiane
## 7247 2022-09-16 LAO East Asia & Pacific Vientiane
## 7248 2022-09-16 LAO East Asia & Pacific Vientiane
## 7249 2022-09-16 LAO East Asia & Pacific Vientiane
## 7250 2022-09-16 LAO East Asia & Pacific Vientiane
## 7251 2022-09-16 LAO East Asia & Pacific Vientiane
## 7252 2022-09-16 LAO East Asia & Pacific Vientiane
## 7253 2022-09-16 LAO East Asia & Pacific Vientiane
## 7254 2022-09-16 LAO East Asia & Pacific Vientiane
## 7255 2022-09-16 LBN Middle East & North Africa Beirut
## 7256 2022-09-16 LBN Middle East & North Africa Beirut
## 7257 2022-09-16 LBN Middle East & North Africa Beirut
## 7258 2022-09-16 LBN Middle East & North Africa Beirut
## 7259 2022-09-16 LBN Middle East & North Africa Beirut
## 7260 2022-09-16 LBN Middle East & North Africa Beirut
## 7261 2022-09-16 LBN Middle East & North Africa Beirut
## 7262 2022-09-16 LBN Middle East & North Africa Beirut
## 7263 2022-09-16 LBN Middle East & North Africa Beirut
## 7264 2022-09-16 LBN Middle East & North Africa Beirut
## 7265 2022-09-16 LBN Middle East & North Africa Beirut
## 7266 2022-09-16 LBN Middle East & North Africa Beirut
## 7267 2022-09-16 LBN Middle East & North Africa Beirut
## 7268 2022-09-16 LBN Middle East & North Africa Beirut
## 7269 2022-09-16 LBN Middle East & North Africa Beirut
## 7270 2022-09-16 LBN Middle East & North Africa Beirut
## 7271 2022-09-16 LBN Middle East & North Africa Beirut
## 7272 2022-09-16 LBN Middle East & North Africa Beirut
## 7273 2022-09-16 LBN Middle East & North Africa Beirut
## 7274 2022-09-16 LBN Middle East & North Africa Beirut
## 7275 2022-09-16 LBN Middle East & North Africa Beirut
## 7276 2022-09-16 LBN Middle East & North Africa Beirut
## 7277 2022-09-16 LBN Middle East & North Africa Beirut
## 7278 2022-09-16 LBN Middle East & North Africa Beirut
## 7279 2022-09-16 LBN Middle East & North Africa Beirut
## 7280 2022-09-16 LBN Middle East & North Africa Beirut
## 7281 2022-09-16 LBN Middle East & North Africa Beirut
## 7282 2022-09-16 LBN Middle East & North Africa Beirut
## 7283 2022-09-16 LBN Middle East & North Africa Beirut
## 7284 2022-09-16 LBN Middle East & North Africa Beirut
## 7285 2022-09-16 LBN Middle East & North Africa Beirut
## 7286 2022-09-16 LBN Middle East & North Africa Beirut
## 7287 2022-09-16 LBN Middle East & North Africa Beirut
## 7288 2022-09-16 LBN Middle East & North Africa Beirut
## 7289 2022-09-16 LBN Middle East & North Africa Beirut
## 7290 2022-09-16 LBN Middle East & North Africa Beirut
## 7291 2022-09-16 LBN Middle East & North Africa Beirut
## 7292 2022-09-16 LBN Middle East & North Africa Beirut
## 7293 2022-09-16 LBN Middle East & North Africa Beirut
## 7294 2022-09-16 LBN Middle East & North Africa Beirut
## 7295 2022-09-16 LBN Middle East & North Africa Beirut
## 7296 2022-09-16 LBN Middle East & North Africa Beirut
## 7297 2022-09-16 LBN Middle East & North Africa Beirut
## 7298 2022-09-16 LBN Middle East & North Africa Beirut
## 7299 2022-09-16 LBN Middle East & North Africa Beirut
## 7300 2022-09-16 LBN Middle East & North Africa Beirut
## 7301 2022-09-16 LBN Middle East & North Africa Beirut
## 7302 2022-09-16 LBN Middle East & North Africa Beirut
## 7303 2022-09-16 LBN Middle East & North Africa Beirut
## 7304 2022-09-16 LBN Middle East & North Africa Beirut
## 7305 2022-09-16 LBN Middle East & North Africa Beirut
## 7306 2022-09-16 LBN Middle East & North Africa Beirut
## 7307 2022-09-16 LBN Middle East & North Africa Beirut
## 7308 2022-09-16 LBN Middle East & North Africa Beirut
## 7309 2022-09-16 LBN Middle East & North Africa Beirut
## 7310 2022-09-16 LBN Middle East & North Africa Beirut
## 7311 2022-09-16 LBN Middle East & North Africa Beirut
## 7312 2022-09-16 LBN Middle East & North Africa Beirut
## 7313 2022-09-16 LBN Middle East & North Africa Beirut
## 7314 2022-09-16 LBN Middle East & North Africa Beirut
## 7315 2022-09-16 LBN Middle East & North Africa Beirut
## 7316 2022-09-16 LBN Middle East & North Africa Beirut
## 7317 2022-09-16 LCA Latin America & Caribbean Castries
## 7318 2022-09-16 LCA Latin America & Caribbean Castries
## 7319 2022-09-16 LCA Latin America & Caribbean Castries
## 7320 2022-09-16 LCA Latin America & Caribbean Castries
## 7321 2022-09-16 LCA Latin America & Caribbean Castries
## 7322 2022-09-16 LCA Latin America & Caribbean Castries
## 7323 2022-09-16 LCA Latin America & Caribbean Castries
## 7324 2022-09-16 LCA Latin America & Caribbean Castries
## 7325 2022-09-16 LCA Latin America & Caribbean Castries
## 7326 2022-09-16 LCA Latin America & Caribbean Castries
## 7327 2022-09-16 LCA Latin America & Caribbean Castries
## 7328 2022-09-16 LCA Latin America & Caribbean Castries
## 7329 2022-09-16 LCA Latin America & Caribbean Castries
## 7330 2022-09-16 LCA Latin America & Caribbean Castries
## 7331 2022-09-16 LCA Latin America & Caribbean Castries
## 7332 2022-09-16 LCA Latin America & Caribbean Castries
## 7333 2022-09-16 LCA Latin America & Caribbean Castries
## 7334 2022-09-16 LCA Latin America & Caribbean Castries
## 7335 2022-09-16 LCA Latin America & Caribbean Castries
## 7336 2022-09-16 LCA Latin America & Caribbean Castries
## 7337 2022-09-16 LCA Latin America & Caribbean Castries
## 7338 2022-09-16 LCA Latin America & Caribbean Castries
## 7339 2022-09-16 LCA Latin America & Caribbean Castries
## 7340 2022-09-16 LCA Latin America & Caribbean Castries
## 7341 2022-09-16 LCA Latin America & Caribbean Castries
## 7342 2022-09-16 LCA Latin America & Caribbean Castries
## 7343 2022-09-16 LCA Latin America & Caribbean Castries
## 7344 2022-09-16 LCA Latin America & Caribbean Castries
## 7345 2022-09-16 LCA Latin America & Caribbean Castries
## 7346 2022-09-16 LCA Latin America & Caribbean Castries
## 7347 2022-09-16 LCA Latin America & Caribbean Castries
## 7348 2022-09-16 LCA Latin America & Caribbean Castries
## 7349 2022-09-16 LCA Latin America & Caribbean Castries
## 7350 2022-09-16 LCA Latin America & Caribbean Castries
## 7351 2022-09-16 LCA Latin America & Caribbean Castries
## 7352 2022-09-16 LCA Latin America & Caribbean Castries
## 7353 2022-09-16 LCA Latin America & Caribbean Castries
## 7354 2022-09-16 LCA Latin America & Caribbean Castries
## 7355 2022-09-16 LCA Latin America & Caribbean Castries
## 7356 2022-09-16 LCA Latin America & Caribbean Castries
## 7357 2022-09-16 LCA Latin America & Caribbean Castries
## 7358 2022-09-16 LCA Latin America & Caribbean Castries
## 7359 2022-09-16 LCA Latin America & Caribbean Castries
## 7360 2022-09-16 LCA Latin America & Caribbean Castries
## 7361 2022-09-16 LCA Latin America & Caribbean Castries
## 7362 2022-09-16 LCA Latin America & Caribbean Castries
## 7363 2022-09-16 LCA Latin America & Caribbean Castries
## 7364 2022-09-16 LCA Latin America & Caribbean Castries
## 7365 2022-09-16 LCA Latin America & Caribbean Castries
## 7366 2022-09-16 LCA Latin America & Caribbean Castries
## 7367 2022-09-16 LCA Latin America & Caribbean Castries
## 7368 2022-09-16 LCA Latin America & Caribbean Castries
## 7369 2022-09-16 LCA Latin America & Caribbean Castries
## 7370 2022-09-16 LCA Latin America & Caribbean Castries
## 7371 2022-09-16 LCA Latin America & Caribbean Castries
## 7372 2022-09-16 LCA Latin America & Caribbean Castries
## 7373 2022-09-16 LCA Latin America & Caribbean Castries
## 7374 2022-09-16 LCA Latin America & Caribbean Castries
## 7375 2022-09-16 LCA Latin America & Caribbean Castries
## 7376 2022-09-16 LCA Latin America & Caribbean Castries
## 7377 2022-09-16 LCA Latin America & Caribbean Castries
## 7378 2022-09-16 LCA Latin America & Caribbean Castries
## 7379 2022-09-16 LIE Europe & Central Asia Vaduz
## 7380 2022-09-16 LIE Europe & Central Asia Vaduz
## 7381 2022-09-16 LIE Europe & Central Asia Vaduz
## 7382 2022-09-16 LIE Europe & Central Asia Vaduz
## 7383 2022-09-16 LIE Europe & Central Asia Vaduz
## 7384 2022-09-16 LIE Europe & Central Asia Vaduz
## 7385 2022-09-16 LIE Europe & Central Asia Vaduz
## 7386 2022-09-16 LIE Europe & Central Asia Vaduz
## 7387 2022-09-16 LIE Europe & Central Asia Vaduz
## 7388 2022-09-16 LIE Europe & Central Asia Vaduz
## 7389 2022-09-16 LIE Europe & Central Asia Vaduz
## 7390 2022-09-16 LIE Europe & Central Asia Vaduz
## 7391 2022-09-16 LIE Europe & Central Asia Vaduz
## 7392 2022-09-16 LIE Europe & Central Asia Vaduz
## 7393 2022-09-16 LIE Europe & Central Asia Vaduz
## 7394 2022-09-16 LIE Europe & Central Asia Vaduz
## 7395 2022-09-16 LIE Europe & Central Asia Vaduz
## 7396 2022-09-16 LIE Europe & Central Asia Vaduz
## 7397 2022-09-16 LIE Europe & Central Asia Vaduz
## 7398 2022-09-16 LIE Europe & Central Asia Vaduz
## 7399 2022-09-16 LIE Europe & Central Asia Vaduz
## 7400 2022-09-16 LIE Europe & Central Asia Vaduz
## 7401 2022-09-16 LIE Europe & Central Asia Vaduz
## 7402 2022-09-16 LIE Europe & Central Asia Vaduz
## 7403 2022-09-16 LIE Europe & Central Asia Vaduz
## 7404 2022-09-16 LIE Europe & Central Asia Vaduz
## 7405 2022-09-16 LIE Europe & Central Asia Vaduz
## 7406 2022-09-16 LIE Europe & Central Asia Vaduz
## 7407 2022-09-16 LIE Europe & Central Asia Vaduz
## 7408 2022-09-16 LIE Europe & Central Asia Vaduz
## 7409 2022-09-16 LIE Europe & Central Asia Vaduz
## 7410 2022-09-16 LIE Europe & Central Asia Vaduz
## 7411 2022-09-16 LIE Europe & Central Asia Vaduz
## 7412 2022-09-16 LIE Europe & Central Asia Vaduz
## 7413 2022-09-16 LIE Europe & Central Asia Vaduz
## 7414 2022-09-16 LIE Europe & Central Asia Vaduz
## 7415 2022-09-16 LIE Europe & Central Asia Vaduz
## 7416 2022-09-16 LIE Europe & Central Asia Vaduz
## 7417 2022-09-16 LIE Europe & Central Asia Vaduz
## 7418 2022-09-16 LIE Europe & Central Asia Vaduz
## 7419 2022-09-16 LIE Europe & Central Asia Vaduz
## 7420 2022-09-16 LIE Europe & Central Asia Vaduz
## 7421 2022-09-16 LIE Europe & Central Asia Vaduz
## 7422 2022-09-16 LIE Europe & Central Asia Vaduz
## 7423 2022-09-16 LIE Europe & Central Asia Vaduz
## 7424 2022-09-16 LIE Europe & Central Asia Vaduz
## 7425 2022-09-16 LIE Europe & Central Asia Vaduz
## 7426 2022-09-16 LIE Europe & Central Asia Vaduz
## 7427 2022-09-16 LIE Europe & Central Asia Vaduz
## 7428 2022-09-16 LIE Europe & Central Asia Vaduz
## 7429 2022-09-16 LIE Europe & Central Asia Vaduz
## 7430 2022-09-16 LIE Europe & Central Asia Vaduz
## 7431 2022-09-16 LIE Europe & Central Asia Vaduz
## 7432 2022-09-16 LIE Europe & Central Asia Vaduz
## 7433 2022-09-16 LIE Europe & Central Asia Vaduz
## 7434 2022-09-16 LIE Europe & Central Asia Vaduz
## 7435 2022-09-16 LIE Europe & Central Asia Vaduz
## 7436 2022-09-16 LIE Europe & Central Asia Vaduz
## 7437 2022-09-16 LIE Europe & Central Asia Vaduz
## 7438 2022-09-16 LIE Europe & Central Asia Vaduz
## 7439 2022-09-16 LIE Europe & Central Asia Vaduz
## 7440 2022-09-16 LIE Europe & Central Asia Vaduz
## 7441 2022-09-16 LKA South Asia Colombo
## 7442 2022-09-16 LKA South Asia Colombo
## 7443 2022-09-16 LKA South Asia Colombo
## 7444 2022-09-16 LKA South Asia Colombo
## 7445 2022-09-16 LKA South Asia Colombo
## 7446 2022-09-16 LKA South Asia Colombo
## 7447 2022-09-16 LKA South Asia Colombo
## 7448 2022-09-16 LKA South Asia Colombo
## 7449 2022-09-16 LKA South Asia Colombo
## 7450 2022-09-16 LKA South Asia Colombo
## 7451 2022-09-16 LKA South Asia Colombo
## 7452 2022-09-16 LKA South Asia Colombo
## 7453 2022-09-16 LKA South Asia Colombo
## 7454 2022-09-16 LKA South Asia Colombo
## 7455 2022-09-16 LKA South Asia Colombo
## 7456 2022-09-16 LKA South Asia Colombo
## 7457 2022-09-16 LKA South Asia Colombo
## 7458 2022-09-16 LKA South Asia Colombo
## 7459 2022-09-16 LKA South Asia Colombo
## 7460 2022-09-16 LKA South Asia Colombo
## 7461 2022-09-16 LKA South Asia Colombo
## 7462 2022-09-16 LKA South Asia Colombo
## 7463 2022-09-16 LKA South Asia Colombo
## 7464 2022-09-16 LKA South Asia Colombo
## 7465 2022-09-16 LKA South Asia Colombo
## 7466 2022-09-16 LKA South Asia Colombo
## 7467 2022-09-16 LKA South Asia Colombo
## 7468 2022-09-16 LKA South Asia Colombo
## 7469 2022-09-16 LKA South Asia Colombo
## 7470 2022-09-16 LKA South Asia Colombo
## 7471 2022-09-16 LKA South Asia Colombo
## 7472 2022-09-16 LKA South Asia Colombo
## 7473 2022-09-16 LKA South Asia Colombo
## 7474 2022-09-16 LKA South Asia Colombo
## 7475 2022-09-16 LKA South Asia Colombo
## 7476 2022-09-16 LKA South Asia Colombo
## 7477 2022-09-16 LKA South Asia Colombo
## 7478 2022-09-16 LKA South Asia Colombo
## 7479 2022-09-16 LKA South Asia Colombo
## 7480 2022-09-16 LKA South Asia Colombo
## 7481 2022-09-16 LKA South Asia Colombo
## 7482 2022-09-16 LKA South Asia Colombo
## 7483 2022-09-16 LKA South Asia Colombo
## 7484 2022-09-16 LKA South Asia Colombo
## 7485 2022-09-16 LKA South Asia Colombo
## 7486 2022-09-16 LKA South Asia Colombo
## 7487 2022-09-16 LKA South Asia Colombo
## 7488 2022-09-16 LKA South Asia Colombo
## 7489 2022-09-16 LKA South Asia Colombo
## 7490 2022-09-16 LKA South Asia Colombo
## 7491 2022-09-16 LKA South Asia Colombo
## 7492 2022-09-16 LKA South Asia Colombo
## 7493 2022-09-16 LKA South Asia Colombo
## 7494 2022-09-16 LKA South Asia Colombo
## 7495 2022-09-16 LKA South Asia Colombo
## 7496 2022-09-16 LKA South Asia Colombo
## 7497 2022-09-16 LKA South Asia Colombo
## 7498 2022-09-16 LKA South Asia Colombo
## 7499 2022-09-16 LKA South Asia Colombo
## 7500 2022-09-16 LKA South Asia Colombo
## 7501 2022-09-16 LKA South Asia Colombo
## 7502 2022-09-16 LKA South Asia Colombo
## 7503 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7504 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7505 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7506 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7507 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7508 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7509 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7510 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7511 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7512 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7513 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7514 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7515 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7516 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7517 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7518 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7519 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7520 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7521 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7522 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7523 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7524 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7525 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7526 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7527 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7528 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7529 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7530 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7531 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7532 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7533 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7534 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7535 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7536 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7537 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7538 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7539 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7540 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7541 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7542 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7543 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7544 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7545 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7546 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7547 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7548 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7549 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7550 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7551 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7552 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7553 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7554 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7555 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7556 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7557 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7558 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7559 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7560 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7561 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7562 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7563 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7564 2022-09-16 LBR Sub-Saharan Africa Monrovia
## 7565 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7566 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7567 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7568 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7569 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7570 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7571 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7572 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7573 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7574 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7575 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7576 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7577 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7578 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7579 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7580 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7581 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7582 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7583 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7584 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7585 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7586 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7587 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7588 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7589 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7590 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7591 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7592 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7593 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7594 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7595 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7596 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7597 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7598 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7599 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7600 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7601 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7602 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7603 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7604 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7605 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7606 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7607 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7608 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7609 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7610 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7611 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7612 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7613 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7614 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7615 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7616 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7617 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7618 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7619 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7620 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7621 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7622 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7623 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7624 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7625 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7626 2022-09-16 LSO Sub-Saharan Africa Maseru
## 7627 2022-09-16 LTU Europe & Central Asia Vilnius
## 7628 2022-09-16 LTU Europe & Central Asia Vilnius
## 7629 2022-09-16 LTU Europe & Central Asia Vilnius
## 7630 2022-09-16 LTU Europe & Central Asia Vilnius
## 7631 2022-09-16 LTU Europe & Central Asia Vilnius
## 7632 2022-09-16 LTU Europe & Central Asia Vilnius
## 7633 2022-09-16 LTU Europe & Central Asia Vilnius
## 7634 2022-09-16 LTU Europe & Central Asia Vilnius
## 7635 2022-09-16 LTU Europe & Central Asia Vilnius
## 7636 2022-09-16 LTU Europe & Central Asia Vilnius
## 7637 2022-09-16 LTU Europe & Central Asia Vilnius
## 7638 2022-09-16 LTU Europe & Central Asia Vilnius
## 7639 2022-09-16 LTU Europe & Central Asia Vilnius
## 7640 2022-09-16 LTU Europe & Central Asia Vilnius
## 7641 2022-09-16 LTU Europe & Central Asia Vilnius
## 7642 2022-09-16 LTU Europe & Central Asia Vilnius
## 7643 2022-09-16 LTU Europe & Central Asia Vilnius
## 7644 2022-09-16 LTU Europe & Central Asia Vilnius
## 7645 2022-09-16 LTU Europe & Central Asia Vilnius
## 7646 2022-09-16 LTU Europe & Central Asia Vilnius
## 7647 2022-09-16 LTU Europe & Central Asia Vilnius
## 7648 2022-09-16 LTU Europe & Central Asia Vilnius
## 7649 2022-09-16 LTU Europe & Central Asia Vilnius
## 7650 2022-09-16 LTU Europe & Central Asia Vilnius
## 7651 2022-09-16 LTU Europe & Central Asia Vilnius
## 7652 2022-09-16 LTU Europe & Central Asia Vilnius
## 7653 2022-09-16 LTU Europe & Central Asia Vilnius
## 7654 2022-09-16 LTU Europe & Central Asia Vilnius
## 7655 2022-09-16 LTU Europe & Central Asia Vilnius
## 7656 2022-09-16 LTU Europe & Central Asia Vilnius
## 7657 2022-09-16 LTU Europe & Central Asia Vilnius
## 7658 2022-09-16 LTU Europe & Central Asia Vilnius
## 7659 2022-09-16 LTU Europe & Central Asia Vilnius
## 7660 2022-09-16 LTU Europe & Central Asia Vilnius
## 7661 2022-09-16 LTU Europe & Central Asia Vilnius
## 7662 2022-09-16 LTU Europe & Central Asia Vilnius
## 7663 2022-09-16 LTU Europe & Central Asia Vilnius
## 7664 2022-09-16 LTU Europe & Central Asia Vilnius
## 7665 2022-09-16 LTU Europe & Central Asia Vilnius
## 7666 2022-09-16 LTU Europe & Central Asia Vilnius
## 7667 2022-09-16 LTU Europe & Central Asia Vilnius
## 7668 2022-09-16 LTU Europe & Central Asia Vilnius
## 7669 2022-09-16 LTU Europe & Central Asia Vilnius
## 7670 2022-09-16 LTU Europe & Central Asia Vilnius
## 7671 2022-09-16 LTU Europe & Central Asia Vilnius
## 7672 2022-09-16 LTU Europe & Central Asia Vilnius
## 7673 2022-09-16 LTU Europe & Central Asia Vilnius
## 7674 2022-09-16 LTU Europe & Central Asia Vilnius
## 7675 2022-09-16 LTU Europe & Central Asia Vilnius
## 7676 2022-09-16 LTU Europe & Central Asia Vilnius
## 7677 2022-09-16 LTU Europe & Central Asia Vilnius
## 7678 2022-09-16 LTU Europe & Central Asia Vilnius
## 7679 2022-09-16 LTU Europe & Central Asia Vilnius
## 7680 2022-09-16 LTU Europe & Central Asia Vilnius
## 7681 2022-09-16 LTU Europe & Central Asia Vilnius
## 7682 2022-09-16 LTU Europe & Central Asia Vilnius
## 7683 2022-09-16 LTU Europe & Central Asia Vilnius
## 7684 2022-09-16 LTU Europe & Central Asia Vilnius
## 7685 2022-09-16 LTU Europe & Central Asia Vilnius
## 7686 2022-09-16 LTU Europe & Central Asia Vilnius
## 7687 2022-09-16 LTU Europe & Central Asia Vilnius
## 7688 2022-09-16 LTU Europe & Central Asia Vilnius
## 7689 2022-09-16 LUX Europe & Central Asia Luxembourg
## 7690 2022-09-16 LUX Europe & Central Asia Luxembourg
## 7691 2022-09-16 LUX Europe & Central Asia Luxembourg
## 7692 2022-09-16 LUX Europe & Central Asia Luxembourg
## longitude latitude income lending
## 1 Aggregates Aggregates
## 2 Aggregates Aggregates
## 3 Aggregates Aggregates
## 4 Aggregates Aggregates
## 5 Aggregates Aggregates
## 6 Aggregates Aggregates
## 7 Aggregates Aggregates
## 8 Aggregates Aggregates
## 9 Aggregates Aggregates
## 10 Aggregates Aggregates
## 11 Aggregates Aggregates
## 12 Aggregates Aggregates
## 13 Aggregates Aggregates
## 14 Aggregates Aggregates
## 15 Aggregates Aggregates
## 16 Aggregates Aggregates
## 17 Aggregates Aggregates
## 18 Aggregates Aggregates
## 19 Aggregates Aggregates
## 20 Aggregates Aggregates
## 21 Aggregates Aggregates
## 22 Aggregates Aggregates
## 23 Aggregates Aggregates
## 24 Aggregates Aggregates
## 25 Aggregates Aggregates
## 26 Aggregates Aggregates
## 27 Aggregates Aggregates
## 28 Aggregates Aggregates
## 29 Aggregates Aggregates
## 30 Aggregates Aggregates
## 31 Aggregates Aggregates
## 32 Aggregates Aggregates
## 33 Aggregates Aggregates
## 34 Aggregates Aggregates
## 35 Aggregates Aggregates
## 36 Aggregates Aggregates
## 37 Aggregates Aggregates
## 38 Aggregates Aggregates
## 39 Aggregates Aggregates
## 40 Aggregates Aggregates
## 41 Aggregates Aggregates
## 42 Aggregates Aggregates
## 43 Aggregates Aggregates
## 44 Aggregates Aggregates
## 45 Aggregates Aggregates
## 46 Aggregates Aggregates
## 47 Aggregates Aggregates
## 48 Aggregates Aggregates
## 49 Aggregates Aggregates
## 50 Aggregates Aggregates
## 51 Aggregates Aggregates
## 52 Aggregates Aggregates
## 53 Aggregates Aggregates
## 54 Aggregates Aggregates
## 55 Aggregates Aggregates
## 56 Aggregates Aggregates
## 57 Aggregates Aggregates
## 58 Aggregates Aggregates
## 59 Aggregates Aggregates
## 60 Aggregates Aggregates
## 61 Aggregates Aggregates
## 62 Aggregates Aggregates
## 63 Aggregates Aggregates
## 64 Aggregates Aggregates
## 65 Aggregates Aggregates
## 66 Aggregates Aggregates
## 67 Aggregates Aggregates
## 68 Aggregates Aggregates
## 69 Aggregates Aggregates
## 70 Aggregates Aggregates
## 71 Aggregates Aggregates
## 72 Aggregates Aggregates
## 73 Aggregates Aggregates
## 74 Aggregates Aggregates
## 75 Aggregates Aggregates
## 76 Aggregates Aggregates
## 77 Aggregates Aggregates
## 78 Aggregates Aggregates
## 79 Aggregates Aggregates
## 80 Aggregates Aggregates
## 81 Aggregates Aggregates
## 82 Aggregates Aggregates
## 83 Aggregates Aggregates
## 84 Aggregates Aggregates
## 85 Aggregates Aggregates
## 86 Aggregates Aggregates
## 87 Aggregates Aggregates
## 88 Aggregates Aggregates
## 89 Aggregates Aggregates
## 90 Aggregates Aggregates
## 91 Aggregates Aggregates
## 92 Aggregates Aggregates
## 93 Aggregates Aggregates
## 94 Aggregates Aggregates
## 95 Aggregates Aggregates
## 96 Aggregates Aggregates
## 97 Aggregates Aggregates
## 98 Aggregates Aggregates
## 99 Aggregates Aggregates
## 100 Aggregates Aggregates
## 101 Aggregates Aggregates
## 102 Aggregates Aggregates
## 103 Aggregates Aggregates
## 104 Aggregates Aggregates
## 105 Aggregates Aggregates
## 106 Aggregates Aggregates
## 107 Aggregates Aggregates
## 108 Aggregates Aggregates
## 109 Aggregates Aggregates
## 110 Aggregates Aggregates
## 111 Aggregates Aggregates
## 112 Aggregates Aggregates
## 113 Aggregates Aggregates
## 114 Aggregates Aggregates
## 115 Aggregates Aggregates
## 116 Aggregates Aggregates
## 117 Aggregates Aggregates
## 118 Aggregates Aggregates
## 119 Aggregates Aggregates
## 120 Aggregates Aggregates
## 121 Aggregates Aggregates
## 122 Aggregates Aggregates
## 123 Aggregates Aggregates
## 124 Aggregates Aggregates
## 125 Aggregates Aggregates
## 126 Aggregates Aggregates
## 127 Aggregates Aggregates
## 128 Aggregates Aggregates
## 129 Aggregates Aggregates
## 130 Aggregates Aggregates
## 131 Aggregates Aggregates
## 132 Aggregates Aggregates
## 133 Aggregates Aggregates
## 134 Aggregates Aggregates
## 135 Aggregates Aggregates
## 136 Aggregates Aggregates
## 137 Aggregates Aggregates
## 138 Aggregates Aggregates
## 139 Aggregates Aggregates
## 140 Aggregates Aggregates
## 141 Aggregates Aggregates
## 142 Aggregates Aggregates
## 143 Aggregates Aggregates
## 144 Aggregates Aggregates
## 145 Aggregates Aggregates
## 146 Aggregates Aggregates
## 147 Aggregates Aggregates
## 148 Aggregates Aggregates
## 149 Aggregates Aggregates
## 150 Aggregates Aggregates
## 151 Aggregates Aggregates
## 152 Aggregates Aggregates
## 153 Aggregates Aggregates
## 154 Aggregates Aggregates
## 155 Aggregates Aggregates
## 156 Aggregates Aggregates
## 157 Aggregates Aggregates
## 158 Aggregates Aggregates
## 159 Aggregates Aggregates
## 160 Aggregates Aggregates
## 161 Aggregates Aggregates
## 162 Aggregates Aggregates
## 163 Aggregates Aggregates
## 164 Aggregates Aggregates
## 165 Aggregates Aggregates
## 166 Aggregates Aggregates
## 167 Aggregates Aggregates
## 168 Aggregates Aggregates
## 169 Aggregates Aggregates
## 170 Aggregates Aggregates
## 171 Aggregates Aggregates
## 172 Aggregates Aggregates
## 173 Aggregates Aggregates
## 174 Aggregates Aggregates
## 175 Aggregates Aggregates
## 176 Aggregates Aggregates
## 177 Aggregates Aggregates
## 178 Aggregates Aggregates
## 179 Aggregates Aggregates
## 180 Aggregates Aggregates
## 181 Aggregates Aggregates
## 182 Aggregates Aggregates
## 183 Aggregates Aggregates
## 184 Aggregates Aggregates
## 185 Aggregates Aggregates
## 186 Aggregates Aggregates
## 187 Aggregates Aggregates
## 188 Aggregates Aggregates
## 189 Aggregates Aggregates
## 190 Aggregates Aggregates
## 191 Aggregates Aggregates
## 192 Aggregates Aggregates
## 193 Aggregates Aggregates
## 194 Aggregates Aggregates
## 195 Aggregates Aggregates
## 196 Aggregates Aggregates
## 197 Aggregates Aggregates
## 198 Aggregates Aggregates
## 199 Aggregates Aggregates
## 200 Aggregates Aggregates
## 201 Aggregates Aggregates
## 202 Aggregates Aggregates
## 203 Aggregates Aggregates
## 204 Aggregates Aggregates
## 205 Aggregates Aggregates
## 206 Aggregates Aggregates
## 207 Aggregates Aggregates
## 208 Aggregates Aggregates
## 209 Aggregates Aggregates
## 210 Aggregates Aggregates
## 211 Aggregates Aggregates
## 212 Aggregates Aggregates
## 213 Aggregates Aggregates
## 214 Aggregates Aggregates
## 215 Aggregates Aggregates
## 216 Aggregates Aggregates
## 217 Aggregates Aggregates
## 218 Aggregates Aggregates
## 219 Aggregates Aggregates
## 220 Aggregates Aggregates
## 221 Aggregates Aggregates
## 222 Aggregates Aggregates
## 223 Aggregates Aggregates
## 224 Aggregates Aggregates
## 225 Aggregates Aggregates
## 226 Aggregates Aggregates
## 227 Aggregates Aggregates
## 228 Aggregates Aggregates
## 229 Aggregates Aggregates
## 230 Aggregates Aggregates
## 231 Aggregates Aggregates
## 232 Aggregates Aggregates
## 233 Aggregates Aggregates
## 234 Aggregates Aggregates
## 235 Aggregates Aggregates
## 236 Aggregates Aggregates
## 237 Aggregates Aggregates
## 238 Aggregates Aggregates
## 239 Aggregates Aggregates
## 240 Aggregates Aggregates
## 241 Aggregates Aggregates
## 242 Aggregates Aggregates
## 243 Aggregates Aggregates
## 244 Aggregates Aggregates
## 245 Aggregates Aggregates
## 246 Aggregates Aggregates
## 247 Aggregates Aggregates
## 248 Aggregates Aggregates
## 249 Aggregates Aggregates
## 250 Aggregates Aggregates
## 251 Aggregates Aggregates
## 252 Aggregates Aggregates
## 253 Aggregates Aggregates
## 254 Aggregates Aggregates
## 255 Aggregates Aggregates
## 256 Aggregates Aggregates
## 257 Aggregates Aggregates
## 258 Aggregates Aggregates
## 259 Aggregates Aggregates
## 260 Aggregates Aggregates
## 261 Aggregates Aggregates
## 262 Aggregates Aggregates
## 263 Aggregates Aggregates
## 264 Aggregates Aggregates
## 265 Aggregates Aggregates
## 266 Aggregates Aggregates
## 267 Aggregates Aggregates
## 268 Aggregates Aggregates
## 269 Aggregates Aggregates
## 270 Aggregates Aggregates
## 271 Aggregates Aggregates
## 272 Aggregates Aggregates
## 273 Aggregates Aggregates
## 274 Aggregates Aggregates
## 275 Aggregates Aggregates
## 276 Aggregates Aggregates
## 277 Aggregates Aggregates
## 278 Aggregates Aggregates
## 279 Aggregates Aggregates
## 280 Aggregates Aggregates
## 281 Aggregates Aggregates
## 282 Aggregates Aggregates
## 283 Aggregates Aggregates
## 284 Aggregates Aggregates
## 285 Aggregates Aggregates
## 286 Aggregates Aggregates
## 287 Aggregates Aggregates
## 288 Aggregates Aggregates
## 289 Aggregates Aggregates
## 290 Aggregates Aggregates
## 291 Aggregates Aggregates
## 292 Aggregates Aggregates
## 293 Aggregates Aggregates
## 294 Aggregates Aggregates
## 295 Aggregates Aggregates
## 296 Aggregates Aggregates
## 297 Aggregates Aggregates
## 298 Aggregates Aggregates
## 299 Aggregates Aggregates
## 300 Aggregates Aggregates
## 301 Aggregates Aggregates
## 302 Aggregates Aggregates
## 303 Aggregates Aggregates
## 304 Aggregates Aggregates
## 305 Aggregates Aggregates
## 306 Aggregates Aggregates
## 307 Aggregates Aggregates
## 308 Aggregates Aggregates
## 309 Aggregates Aggregates
## 310 Aggregates Aggregates
## 311 1.5218 42.5075 High income Not classified
## 312 1.5218 42.5075 High income Not classified
## 313 1.5218 42.5075 High income Not classified
## 314 1.5218 42.5075 High income Not classified
## 315 1.5218 42.5075 High income Not classified
## 316 1.5218 42.5075 High income Not classified
## 317 1.5218 42.5075 High income Not classified
## 318 1.5218 42.5075 High income Not classified
## 319 1.5218 42.5075 High income Not classified
## 320 1.5218 42.5075 High income Not classified
## 321 1.5218 42.5075 High income Not classified
## 322 1.5218 42.5075 High income Not classified
## 323 1.5218 42.5075 High income Not classified
## 324 1.5218 42.5075 High income Not classified
## 325 1.5218 42.5075 High income Not classified
## 326 1.5218 42.5075 High income Not classified
## 327 1.5218 42.5075 High income Not classified
## 328 1.5218 42.5075 High income Not classified
## 329 1.5218 42.5075 High income Not classified
## 330 1.5218 42.5075 High income Not classified
## 331 1.5218 42.5075 High income Not classified
## 332 1.5218 42.5075 High income Not classified
## 333 1.5218 42.5075 High income Not classified
## 334 1.5218 42.5075 High income Not classified
## 335 1.5218 42.5075 High income Not classified
## 336 1.5218 42.5075 High income Not classified
## 337 1.5218 42.5075 High income Not classified
## 338 1.5218 42.5075 High income Not classified
## 339 1.5218 42.5075 High income Not classified
## 340 1.5218 42.5075 High income Not classified
## 341 1.5218 42.5075 High income Not classified
## 342 1.5218 42.5075 High income Not classified
## 343 1.5218 42.5075 High income Not classified
## 344 1.5218 42.5075 High income Not classified
## 345 1.5218 42.5075 High income Not classified
## 346 1.5218 42.5075 High income Not classified
## 347 1.5218 42.5075 High income Not classified
## 348 1.5218 42.5075 High income Not classified
## 349 1.5218 42.5075 High income Not classified
## 350 1.5218 42.5075 High income Not classified
## 351 1.5218 42.5075 High income Not classified
## 352 1.5218 42.5075 High income Not classified
## 353 1.5218 42.5075 High income Not classified
## 354 1.5218 42.5075 High income Not classified
## 355 1.5218 42.5075 High income Not classified
## 356 1.5218 42.5075 High income Not classified
## 357 1.5218 42.5075 High income Not classified
## 358 1.5218 42.5075 High income Not classified
## 359 1.5218 42.5075 High income Not classified
## 360 1.5218 42.5075 High income Not classified
## 361 1.5218 42.5075 High income Not classified
## 362 1.5218 42.5075 High income Not classified
## 363 1.5218 42.5075 High income Not classified
## 364 1.5218 42.5075 High income Not classified
## 365 1.5218 42.5075 High income Not classified
## 366 1.5218 42.5075 High income Not classified
## 367 1.5218 42.5075 High income Not classified
## 368 1.5218 42.5075 High income Not classified
## 369 1.5218 42.5075 High income Not classified
## 370 1.5218 42.5075 High income Not classified
## 371 1.5218 42.5075 High income Not classified
## 372 1.5218 42.5075 High income Not classified
## 373 54.3705 24.4764 High income Not classified
## 374 54.3705 24.4764 High income Not classified
## 375 54.3705 24.4764 High income Not classified
## 376 54.3705 24.4764 High income Not classified
## 377 54.3705 24.4764 High income Not classified
## 378 54.3705 24.4764 High income Not classified
## 379 54.3705 24.4764 High income Not classified
## 380 54.3705 24.4764 High income Not classified
## 381 54.3705 24.4764 High income Not classified
## 382 54.3705 24.4764 High income Not classified
## 383 54.3705 24.4764 High income Not classified
## 384 54.3705 24.4764 High income Not classified
## 385 54.3705 24.4764 High income Not classified
## 386 54.3705 24.4764 High income Not classified
## 387 54.3705 24.4764 High income Not classified
## 388 54.3705 24.4764 High income Not classified
## 389 54.3705 24.4764 High income Not classified
## 390 54.3705 24.4764 High income Not classified
## 391 54.3705 24.4764 High income Not classified
## 392 54.3705 24.4764 High income Not classified
## 393 54.3705 24.4764 High income Not classified
## 394 54.3705 24.4764 High income Not classified
## 395 54.3705 24.4764 High income Not classified
## 396 54.3705 24.4764 High income Not classified
## 397 54.3705 24.4764 High income Not classified
## 398 54.3705 24.4764 High income Not classified
## 399 54.3705 24.4764 High income Not classified
## 400 54.3705 24.4764 High income Not classified
## 401 54.3705 24.4764 High income Not classified
## 402 54.3705 24.4764 High income Not classified
## 403 54.3705 24.4764 High income Not classified
## 404 54.3705 24.4764 High income Not classified
## 405 54.3705 24.4764 High income Not classified
## 406 54.3705 24.4764 High income Not classified
## 407 54.3705 24.4764 High income Not classified
## 408 54.3705 24.4764 High income Not classified
## 409 54.3705 24.4764 High income Not classified
## 410 54.3705 24.4764 High income Not classified
## 411 54.3705 24.4764 High income Not classified
## 412 54.3705 24.4764 High income Not classified
## 413 54.3705 24.4764 High income Not classified
## 414 54.3705 24.4764 High income Not classified
## 415 54.3705 24.4764 High income Not classified
## 416 54.3705 24.4764 High income Not classified
## 417 54.3705 24.4764 High income Not classified
## 418 54.3705 24.4764 High income Not classified
## 419 54.3705 24.4764 High income Not classified
## 420 54.3705 24.4764 High income Not classified
## 421 54.3705 24.4764 High income Not classified
## 422 54.3705 24.4764 High income Not classified
## 423 54.3705 24.4764 High income Not classified
## 424 54.3705 24.4764 High income Not classified
## 425 54.3705 24.4764 High income Not classified
## 426 54.3705 24.4764 High income Not classified
## 427 54.3705 24.4764 High income Not classified
## 428 54.3705 24.4764 High income Not classified
## 429 54.3705 24.4764 High income Not classified
## 430 54.3705 24.4764 High income Not classified
## 431 54.3705 24.4764 High income Not classified
## 432 54.3705 24.4764 High income Not classified
## 433 54.3705 24.4764 High income Not classified
## 434 54.3705 24.4764 High income Not classified
## 435 69.1761 34.5228 Low income IDA
## 436 69.1761 34.5228 Low income IDA
## 437 69.1761 34.5228 Low income IDA
## 438 69.1761 34.5228 Low income IDA
## 439 69.1761 34.5228 Low income IDA
## 440 69.1761 34.5228 Low income IDA
## 441 69.1761 34.5228 Low income IDA
## 442 69.1761 34.5228 Low income IDA
## 443 69.1761 34.5228 Low income IDA
## 444 69.1761 34.5228 Low income IDA
## 445 69.1761 34.5228 Low income IDA
## 446 69.1761 34.5228 Low income IDA
## 447 69.1761 34.5228 Low income IDA
## 448 69.1761 34.5228 Low income IDA
## 449 69.1761 34.5228 Low income IDA
## 450 69.1761 34.5228 Low income IDA
## 451 69.1761 34.5228 Low income IDA
## 452 69.1761 34.5228 Low income IDA
## 453 69.1761 34.5228 Low income IDA
## 454 69.1761 34.5228 Low income IDA
## 455 69.1761 34.5228 Low income IDA
## 456 69.1761 34.5228 Low income IDA
## 457 69.1761 34.5228 Low income IDA
## 458 69.1761 34.5228 Low income IDA
## 459 69.1761 34.5228 Low income IDA
## 460 69.1761 34.5228 Low income IDA
## 461 69.1761 34.5228 Low income IDA
## 462 69.1761 34.5228 Low income IDA
## 463 69.1761 34.5228 Low income IDA
## 464 69.1761 34.5228 Low income IDA
## 465 69.1761 34.5228 Low income IDA
## 466 69.1761 34.5228 Low income IDA
## 467 69.1761 34.5228 Low income IDA
## 468 69.1761 34.5228 Low income IDA
## 469 69.1761 34.5228 Low income IDA
## 470 69.1761 34.5228 Low income IDA
## 471 69.1761 34.5228 Low income IDA
## 472 69.1761 34.5228 Low income IDA
## 473 69.1761 34.5228 Low income IDA
## 474 69.1761 34.5228 Low income IDA
## 475 69.1761 34.5228 Low income IDA
## 476 69.1761 34.5228 Low income IDA
## 477 69.1761 34.5228 Low income IDA
## 478 69.1761 34.5228 Low income IDA
## 479 69.1761 34.5228 Low income IDA
## 480 69.1761 34.5228 Low income IDA
## 481 69.1761 34.5228 Low income IDA
## 482 69.1761 34.5228 Low income IDA
## 483 69.1761 34.5228 Low income IDA
## 484 69.1761 34.5228 Low income IDA
## 485 69.1761 34.5228 Low income IDA
## 486 69.1761 34.5228 Low income IDA
## 487 69.1761 34.5228 Low income IDA
## 488 69.1761 34.5228 Low income IDA
## 489 69.1761 34.5228 Low income IDA
## 490 69.1761 34.5228 Low income IDA
## 491 69.1761 34.5228 Low income IDA
## 492 69.1761 34.5228 Low income IDA
## 493 69.1761 34.5228 Low income IDA
## 494 69.1761 34.5228 Low income IDA
## 495 69.1761 34.5228 Low income IDA
## 496 69.1761 34.5228 Low income IDA
## 497 -61.8456 17.1175 High income IBRD
## 498 -61.8456 17.1175 High income IBRD
## 499 -61.8456 17.1175 High income IBRD
## 500 -61.8456 17.1175 High income IBRD
## 501 -61.8456 17.1175 High income IBRD
## 502 -61.8456 17.1175 High income IBRD
## 503 -61.8456 17.1175 High income IBRD
## 504 -61.8456 17.1175 High income IBRD
## 505 -61.8456 17.1175 High income IBRD
## 506 -61.8456 17.1175 High income IBRD
## 507 -61.8456 17.1175 High income IBRD
## 508 -61.8456 17.1175 High income IBRD
## 509 -61.8456 17.1175 High income IBRD
## 510 -61.8456 17.1175 High income IBRD
## 511 -61.8456 17.1175 High income IBRD
## 512 -61.8456 17.1175 High income IBRD
## 513 -61.8456 17.1175 High income IBRD
## 514 -61.8456 17.1175 High income IBRD
## 515 -61.8456 17.1175 High income IBRD
## 516 -61.8456 17.1175 High income IBRD
## 517 -61.8456 17.1175 High income IBRD
## 518 -61.8456 17.1175 High income IBRD
## 519 -61.8456 17.1175 High income IBRD
## 520 -61.8456 17.1175 High income IBRD
## 521 -61.8456 17.1175 High income IBRD
## 522 -61.8456 17.1175 High income IBRD
## 523 -61.8456 17.1175 High income IBRD
## 524 -61.8456 17.1175 High income IBRD
## 525 -61.8456 17.1175 High income IBRD
## 526 -61.8456 17.1175 High income IBRD
## 527 -61.8456 17.1175 High income IBRD
## 528 -61.8456 17.1175 High income IBRD
## 529 -61.8456 17.1175 High income IBRD
## 530 -61.8456 17.1175 High income IBRD
## 531 -61.8456 17.1175 High income IBRD
## 532 -61.8456 17.1175 High income IBRD
## 533 -61.8456 17.1175 High income IBRD
## 534 -61.8456 17.1175 High income IBRD
## 535 -61.8456 17.1175 High income IBRD
## 536 -61.8456 17.1175 High income IBRD
## 537 -61.8456 17.1175 High income IBRD
## 538 -61.8456 17.1175 High income IBRD
## 539 -61.8456 17.1175 High income IBRD
## 540 -61.8456 17.1175 High income IBRD
## 541 -61.8456 17.1175 High income IBRD
## 542 -61.8456 17.1175 High income IBRD
## 543 -61.8456 17.1175 High income IBRD
## 544 -61.8456 17.1175 High income IBRD
## 545 -61.8456 17.1175 High income IBRD
## 546 -61.8456 17.1175 High income IBRD
## 547 -61.8456 17.1175 High income IBRD
## 548 -61.8456 17.1175 High income IBRD
## 549 -61.8456 17.1175 High income IBRD
## 550 -61.8456 17.1175 High income IBRD
## 551 -61.8456 17.1175 High income IBRD
## 552 -61.8456 17.1175 High income IBRD
## 553 -61.8456 17.1175 High income IBRD
## 554 -61.8456 17.1175 High income IBRD
## 555 -61.8456 17.1175 High income IBRD
## 556 -61.8456 17.1175 High income IBRD
## 557 -61.8456 17.1175 High income IBRD
## 558 -61.8456 17.1175 High income IBRD
## 559 19.8172 41.3317 Upper middle income IBRD
## 560 19.8172 41.3317 Upper middle income IBRD
## 561 19.8172 41.3317 Upper middle income IBRD
## 562 19.8172 41.3317 Upper middle income IBRD
## 563 19.8172 41.3317 Upper middle income IBRD
## 564 19.8172 41.3317 Upper middle income IBRD
## 565 19.8172 41.3317 Upper middle income IBRD
## 566 19.8172 41.3317 Upper middle income IBRD
## 567 19.8172 41.3317 Upper middle income IBRD
## 568 19.8172 41.3317 Upper middle income IBRD
## 569 19.8172 41.3317 Upper middle income IBRD
## 570 19.8172 41.3317 Upper middle income IBRD
## 571 19.8172 41.3317 Upper middle income IBRD
## 572 19.8172 41.3317 Upper middle income IBRD
## 573 19.8172 41.3317 Upper middle income IBRD
## 574 19.8172 41.3317 Upper middle income IBRD
## 575 19.8172 41.3317 Upper middle income IBRD
## 576 19.8172 41.3317 Upper middle income IBRD
## 577 19.8172 41.3317 Upper middle income IBRD
## 578 19.8172 41.3317 Upper middle income IBRD
## 579 19.8172 41.3317 Upper middle income IBRD
## 580 19.8172 41.3317 Upper middle income IBRD
## 581 19.8172 41.3317 Upper middle income IBRD
## 582 19.8172 41.3317 Upper middle income IBRD
## 583 19.8172 41.3317 Upper middle income IBRD
## 584 19.8172 41.3317 Upper middle income IBRD
## 585 19.8172 41.3317 Upper middle income IBRD
## 586 19.8172 41.3317 Upper middle income IBRD
## 587 19.8172 41.3317 Upper middle income IBRD
## 588 19.8172 41.3317 Upper middle income IBRD
## 589 19.8172 41.3317 Upper middle income IBRD
## 590 19.8172 41.3317 Upper middle income IBRD
## 591 19.8172 41.3317 Upper middle income IBRD
## 592 19.8172 41.3317 Upper middle income IBRD
## 593 19.8172 41.3317 Upper middle income IBRD
## 594 19.8172 41.3317 Upper middle income IBRD
## 595 19.8172 41.3317 Upper middle income IBRD
## 596 19.8172 41.3317 Upper middle income IBRD
## 597 19.8172 41.3317 Upper middle income IBRD
## 598 19.8172 41.3317 Upper middle income IBRD
## 599 19.8172 41.3317 Upper middle income IBRD
## 600 19.8172 41.3317 Upper middle income IBRD
## 601 19.8172 41.3317 Upper middle income IBRD
## 602 19.8172 41.3317 Upper middle income IBRD
## 603 19.8172 41.3317 Upper middle income IBRD
## 604 19.8172 41.3317 Upper middle income IBRD
## 605 19.8172 41.3317 Upper middle income IBRD
## 606 19.8172 41.3317 Upper middle income IBRD
## 607 19.8172 41.3317 Upper middle income IBRD
## 608 19.8172 41.3317 Upper middle income IBRD
## 609 19.8172 41.3317 Upper middle income IBRD
## 610 19.8172 41.3317 Upper middle income IBRD
## 611 19.8172 41.3317 Upper middle income IBRD
## 612 19.8172 41.3317 Upper middle income IBRD
## 613 19.8172 41.3317 Upper middle income IBRD
## 614 19.8172 41.3317 Upper middle income IBRD
## 615 19.8172 41.3317 Upper middle income IBRD
## 616 19.8172 41.3317 Upper middle income IBRD
## 617 19.8172 41.3317 Upper middle income IBRD
## 618 19.8172 41.3317 Upper middle income IBRD
## 619 19.8172 41.3317 Upper middle income IBRD
## 620 19.8172 41.3317 Upper middle income IBRD
## 621 44.509 40.1596 Upper middle income IBRD
## 622 44.509 40.1596 Upper middle income IBRD
## 623 44.509 40.1596 Upper middle income IBRD
## 624 44.509 40.1596 Upper middle income IBRD
## 625 44.509 40.1596 Upper middle income IBRD
## 626 44.509 40.1596 Upper middle income IBRD
## 627 44.509 40.1596 Upper middle income IBRD
## 628 44.509 40.1596 Upper middle income IBRD
## 629 44.509 40.1596 Upper middle income IBRD
## 630 44.509 40.1596 Upper middle income IBRD
## 631 44.509 40.1596 Upper middle income IBRD
## 632 44.509 40.1596 Upper middle income IBRD
## 633 44.509 40.1596 Upper middle income IBRD
## 634 44.509 40.1596 Upper middle income IBRD
## 635 44.509 40.1596 Upper middle income IBRD
## 636 44.509 40.1596 Upper middle income IBRD
## 637 44.509 40.1596 Upper middle income IBRD
## 638 44.509 40.1596 Upper middle income IBRD
## 639 44.509 40.1596 Upper middle income IBRD
## 640 44.509 40.1596 Upper middle income IBRD
## 641 44.509 40.1596 Upper middle income IBRD
## 642 44.509 40.1596 Upper middle income IBRD
## 643 44.509 40.1596 Upper middle income IBRD
## 644 44.509 40.1596 Upper middle income IBRD
## 645 44.509 40.1596 Upper middle income IBRD
## 646 44.509 40.1596 Upper middle income IBRD
## 647 44.509 40.1596 Upper middle income IBRD
## 648 44.509 40.1596 Upper middle income IBRD
## 649 44.509 40.1596 Upper middle income IBRD
## 650 44.509 40.1596 Upper middle income IBRD
## 651 44.509 40.1596 Upper middle income IBRD
## 652 44.509 40.1596 Upper middle income IBRD
## 653 44.509 40.1596 Upper middle income IBRD
## 654 44.509 40.1596 Upper middle income IBRD
## 655 44.509 40.1596 Upper middle income IBRD
## 656 44.509 40.1596 Upper middle income IBRD
## 657 44.509 40.1596 Upper middle income IBRD
## 658 44.509 40.1596 Upper middle income IBRD
## 659 44.509 40.1596 Upper middle income IBRD
## 660 44.509 40.1596 Upper middle income IBRD
## 661 44.509 40.1596 Upper middle income IBRD
## 662 44.509 40.1596 Upper middle income IBRD
## 663 44.509 40.1596 Upper middle income IBRD
## 664 44.509 40.1596 Upper middle income IBRD
## 665 44.509 40.1596 Upper middle income IBRD
## 666 44.509 40.1596 Upper middle income IBRD
## 667 44.509 40.1596 Upper middle income IBRD
## 668 44.509 40.1596 Upper middle income IBRD
## 669 44.509 40.1596 Upper middle income IBRD
## 670 44.509 40.1596 Upper middle income IBRD
## 671 44.509 40.1596 Upper middle income IBRD
## 672 44.509 40.1596 Upper middle income IBRD
## 673 44.509 40.1596 Upper middle income IBRD
## 674 44.509 40.1596 Upper middle income IBRD
## 675 44.509 40.1596 Upper middle income IBRD
## 676 44.509 40.1596 Upper middle income IBRD
## 677 44.509 40.1596 Upper middle income IBRD
## 678 44.509 40.1596 Upper middle income IBRD
## 679 44.509 40.1596 Upper middle income IBRD
## 680 44.509 40.1596 Upper middle income IBRD
## 681 44.509 40.1596 Upper middle income IBRD
## 682 44.509 40.1596 Upper middle income IBRD
## 683 13.242 -8.81155 Lower middle income IBRD
## 684 13.242 -8.81155 Lower middle income IBRD
## 685 13.242 -8.81155 Lower middle income IBRD
## 686 13.242 -8.81155 Lower middle income IBRD
## 687 13.242 -8.81155 Lower middle income IBRD
## 688 13.242 -8.81155 Lower middle income IBRD
## 689 13.242 -8.81155 Lower middle income IBRD
## 690 13.242 -8.81155 Lower middle income IBRD
## 691 13.242 -8.81155 Lower middle income IBRD
## 692 13.242 -8.81155 Lower middle income IBRD
## 693 13.242 -8.81155 Lower middle income IBRD
## 694 13.242 -8.81155 Lower middle income IBRD
## 695 13.242 -8.81155 Lower middle income IBRD
## 696 13.242 -8.81155 Lower middle income IBRD
## 697 13.242 -8.81155 Lower middle income IBRD
## 698 13.242 -8.81155 Lower middle income IBRD
## 699 13.242 -8.81155 Lower middle income IBRD
## 700 13.242 -8.81155 Lower middle income IBRD
## 701 13.242 -8.81155 Lower middle income IBRD
## 702 13.242 -8.81155 Lower middle income IBRD
## 703 13.242 -8.81155 Lower middle income IBRD
## 704 13.242 -8.81155 Lower middle income IBRD
## 705 13.242 -8.81155 Lower middle income IBRD
## 706 13.242 -8.81155 Lower middle income IBRD
## 707 13.242 -8.81155 Lower middle income IBRD
## 708 13.242 -8.81155 Lower middle income IBRD
## 709 13.242 -8.81155 Lower middle income IBRD
## 710 13.242 -8.81155 Lower middle income IBRD
## 711 13.242 -8.81155 Lower middle income IBRD
## 712 13.242 -8.81155 Lower middle income IBRD
## 713 13.242 -8.81155 Lower middle income IBRD
## 714 13.242 -8.81155 Lower middle income IBRD
## 715 13.242 -8.81155 Lower middle income IBRD
## 716 13.242 -8.81155 Lower middle income IBRD
## 717 13.242 -8.81155 Lower middle income IBRD
## 718 13.242 -8.81155 Lower middle income IBRD
## 719 13.242 -8.81155 Lower middle income IBRD
## 720 13.242 -8.81155 Lower middle income IBRD
## 721 13.242 -8.81155 Lower middle income IBRD
## 722 13.242 -8.81155 Lower middle income IBRD
## 723 13.242 -8.81155 Lower middle income IBRD
## 724 13.242 -8.81155 Lower middle income IBRD
## 725 13.242 -8.81155 Lower middle income IBRD
## 726 13.242 -8.81155 Lower middle income IBRD
## 727 13.242 -8.81155 Lower middle income IBRD
## 728 13.242 -8.81155 Lower middle income IBRD
## 729 13.242 -8.81155 Lower middle income IBRD
## 730 13.242 -8.81155 Lower middle income IBRD
## 731 13.242 -8.81155 Lower middle income IBRD
## 732 13.242 -8.81155 Lower middle income IBRD
## 733 13.242 -8.81155 Lower middle income IBRD
## 734 13.242 -8.81155 Lower middle income IBRD
## 735 13.242 -8.81155 Lower middle income IBRD
## 736 13.242 -8.81155 Lower middle income IBRD
## 737 13.242 -8.81155 Lower middle income IBRD
## 738 13.242 -8.81155 Lower middle income IBRD
## 739 13.242 -8.81155 Lower middle income IBRD
## 740 13.242 -8.81155 Lower middle income IBRD
## 741 13.242 -8.81155 Lower middle income IBRD
## 742 13.242 -8.81155 Lower middle income IBRD
## 743 13.242 -8.81155 Lower middle income IBRD
## 744 13.242 -8.81155 Lower middle income IBRD
## 745 -58.4173 -34.6118 Upper middle income IBRD
## 746 -58.4173 -34.6118 Upper middle income IBRD
## 747 -58.4173 -34.6118 Upper middle income IBRD
## 748 -58.4173 -34.6118 Upper middle income IBRD
## 749 -58.4173 -34.6118 Upper middle income IBRD
## 750 -58.4173 -34.6118 Upper middle income IBRD
## 751 -58.4173 -34.6118 Upper middle income IBRD
## 752 -58.4173 -34.6118 Upper middle income IBRD
## 753 -58.4173 -34.6118 Upper middle income IBRD
## 754 -58.4173 -34.6118 Upper middle income IBRD
## 755 -58.4173 -34.6118 Upper middle income IBRD
## 756 -58.4173 -34.6118 Upper middle income IBRD
## 757 -58.4173 -34.6118 Upper middle income IBRD
## 758 -58.4173 -34.6118 Upper middle income IBRD
## 759 -58.4173 -34.6118 Upper middle income IBRD
## 760 -58.4173 -34.6118 Upper middle income IBRD
## 761 -58.4173 -34.6118 Upper middle income IBRD
## 762 -58.4173 -34.6118 Upper middle income IBRD
## 763 -58.4173 -34.6118 Upper middle income IBRD
## 764 -58.4173 -34.6118 Upper middle income IBRD
## 765 -58.4173 -34.6118 Upper middle income IBRD
## 766 -58.4173 -34.6118 Upper middle income IBRD
## 767 -58.4173 -34.6118 Upper middle income IBRD
## 768 -58.4173 -34.6118 Upper middle income IBRD
## 769 -58.4173 -34.6118 Upper middle income IBRD
## 770 -58.4173 -34.6118 Upper middle income IBRD
## 771 -58.4173 -34.6118 Upper middle income IBRD
## 772 -58.4173 -34.6118 Upper middle income IBRD
## 773 -58.4173 -34.6118 Upper middle income IBRD
## 774 -58.4173 -34.6118 Upper middle income IBRD
## 775 -58.4173 -34.6118 Upper middle income IBRD
## 776 -58.4173 -34.6118 Upper middle income IBRD
## 777 -58.4173 -34.6118 Upper middle income IBRD
## 778 -58.4173 -34.6118 Upper middle income IBRD
## 779 -58.4173 -34.6118 Upper middle income IBRD
## 780 -58.4173 -34.6118 Upper middle income IBRD
## 781 -58.4173 -34.6118 Upper middle income IBRD
## 782 -58.4173 -34.6118 Upper middle income IBRD
## 783 -58.4173 -34.6118 Upper middle income IBRD
## 784 -58.4173 -34.6118 Upper middle income IBRD
## 785 -58.4173 -34.6118 Upper middle income IBRD
## 786 -58.4173 -34.6118 Upper middle income IBRD
## 787 -58.4173 -34.6118 Upper middle income IBRD
## 788 -58.4173 -34.6118 Upper middle income IBRD
## 789 -58.4173 -34.6118 Upper middle income IBRD
## 790 -58.4173 -34.6118 Upper middle income IBRD
## 791 -58.4173 -34.6118 Upper middle income IBRD
## 792 -58.4173 -34.6118 Upper middle income IBRD
## 793 -58.4173 -34.6118 Upper middle income IBRD
## 794 -58.4173 -34.6118 Upper middle income IBRD
## 795 -58.4173 -34.6118 Upper middle income IBRD
## 796 -58.4173 -34.6118 Upper middle income IBRD
## 797 -58.4173 -34.6118 Upper middle income IBRD
## 798 -58.4173 -34.6118 Upper middle income IBRD
## 799 -58.4173 -34.6118 Upper middle income IBRD
## 800 -58.4173 -34.6118 Upper middle income IBRD
## 801 -58.4173 -34.6118 Upper middle income IBRD
## 802 -58.4173 -34.6118 Upper middle income IBRD
## 803 -58.4173 -34.6118 Upper middle income IBRD
## 804 -58.4173 -34.6118 Upper middle income IBRD
## 805 -58.4173 -34.6118 Upper middle income IBRD
## 806 -58.4173 -34.6118 Upper middle income IBRD
## 807 -170.691 -14.2846 Upper middle income Not classified
## 808 -170.691 -14.2846 Upper middle income Not classified
## 809 -170.691 -14.2846 Upper middle income Not classified
## 810 -170.691 -14.2846 Upper middle income Not classified
## 811 -170.691 -14.2846 Upper middle income Not classified
## 812 -170.691 -14.2846 Upper middle income Not classified
## 813 -170.691 -14.2846 Upper middle income Not classified
## 814 -170.691 -14.2846 Upper middle income Not classified
## 815 -170.691 -14.2846 Upper middle income Not classified
## 816 -170.691 -14.2846 Upper middle income Not classified
## 817 -170.691 -14.2846 Upper middle income Not classified
## 818 -170.691 -14.2846 Upper middle income Not classified
## 819 -170.691 -14.2846 Upper middle income Not classified
## 820 -170.691 -14.2846 Upper middle income Not classified
## 821 -170.691 -14.2846 Upper middle income Not classified
## 822 -170.691 -14.2846 Upper middle income Not classified
## 823 -170.691 -14.2846 Upper middle income Not classified
## 824 -170.691 -14.2846 Upper middle income Not classified
## 825 -170.691 -14.2846 Upper middle income Not classified
## 826 -170.691 -14.2846 Upper middle income Not classified
## 827 -170.691 -14.2846 Upper middle income Not classified
## 828 -170.691 -14.2846 Upper middle income Not classified
## 829 -170.691 -14.2846 Upper middle income Not classified
## 830 -170.691 -14.2846 Upper middle income Not classified
## 831 -170.691 -14.2846 Upper middle income Not classified
## 832 -170.691 -14.2846 Upper middle income Not classified
## 833 -170.691 -14.2846 Upper middle income Not classified
## 834 -170.691 -14.2846 Upper middle income Not classified
## 835 -170.691 -14.2846 Upper middle income Not classified
## 836 -170.691 -14.2846 Upper middle income Not classified
## 837 -170.691 -14.2846 Upper middle income Not classified
## 838 -170.691 -14.2846 Upper middle income Not classified
## 839 -170.691 -14.2846 Upper middle income Not classified
## 840 -170.691 -14.2846 Upper middle income Not classified
## 841 -170.691 -14.2846 Upper middle income Not classified
## 842 -170.691 -14.2846 Upper middle income Not classified
## 843 -170.691 -14.2846 Upper middle income Not classified
## 844 -170.691 -14.2846 Upper middle income Not classified
## 845 -170.691 -14.2846 Upper middle income Not classified
## 846 -170.691 -14.2846 Upper middle income Not classified
## 847 -170.691 -14.2846 Upper middle income Not classified
## 848 -170.691 -14.2846 Upper middle income Not classified
## 849 -170.691 -14.2846 Upper middle income Not classified
## 850 -170.691 -14.2846 Upper middle income Not classified
## 851 -170.691 -14.2846 Upper middle income Not classified
## 852 -170.691 -14.2846 Upper middle income Not classified
## 853 -170.691 -14.2846 Upper middle income Not classified
## 854 -170.691 -14.2846 Upper middle income Not classified
## 855 -170.691 -14.2846 Upper middle income Not classified
## 856 -170.691 -14.2846 Upper middle income Not classified
## 857 -170.691 -14.2846 Upper middle income Not classified
## 858 -170.691 -14.2846 Upper middle income Not classified
## 859 -170.691 -14.2846 Upper middle income Not classified
## 860 -170.691 -14.2846 Upper middle income Not classified
## 861 -170.691 -14.2846 Upper middle income Not classified
## 862 -170.691 -14.2846 Upper middle income Not classified
## 863 -170.691 -14.2846 Upper middle income Not classified
## 864 -170.691 -14.2846 Upper middle income Not classified
## 865 -170.691 -14.2846 Upper middle income Not classified
## 866 -170.691 -14.2846 Upper middle income Not classified
## 867 -170.691 -14.2846 Upper middle income Not classified
## 868 -170.691 -14.2846 Upper middle income Not classified
## 869 16.3798 48.2201 High income Not classified
## 870 16.3798 48.2201 High income Not classified
## 871 16.3798 48.2201 High income Not classified
## 872 16.3798 48.2201 High income Not classified
## 873 16.3798 48.2201 High income Not classified
## 874 16.3798 48.2201 High income Not classified
## 875 16.3798 48.2201 High income Not classified
## 876 16.3798 48.2201 High income Not classified
## 877 16.3798 48.2201 High income Not classified
## 878 16.3798 48.2201 High income Not classified
## 879 16.3798 48.2201 High income Not classified
## 880 16.3798 48.2201 High income Not classified
## 881 16.3798 48.2201 High income Not classified
## 882 16.3798 48.2201 High income Not classified
## 883 16.3798 48.2201 High income Not classified
## 884 16.3798 48.2201 High income Not classified
## 885 16.3798 48.2201 High income Not classified
## 886 16.3798 48.2201 High income Not classified
## 887 16.3798 48.2201 High income Not classified
## 888 16.3798 48.2201 High income Not classified
## 889 16.3798 48.2201 High income Not classified
## 890 16.3798 48.2201 High income Not classified
## 891 16.3798 48.2201 High income Not classified
## 892 16.3798 48.2201 High income Not classified
## 893 16.3798 48.2201 High income Not classified
## 894 16.3798 48.2201 High income Not classified
## 895 16.3798 48.2201 High income Not classified
## 896 16.3798 48.2201 High income Not classified
## 897 16.3798 48.2201 High income Not classified
## 898 16.3798 48.2201 High income Not classified
## 899 16.3798 48.2201 High income Not classified
## 900 16.3798 48.2201 High income Not classified
## 901 16.3798 48.2201 High income Not classified
## 902 16.3798 48.2201 High income Not classified
## 903 16.3798 48.2201 High income Not classified
## 904 16.3798 48.2201 High income Not classified
## 905 16.3798 48.2201 High income Not classified
## 906 16.3798 48.2201 High income Not classified
## 907 16.3798 48.2201 High income Not classified
## 908 16.3798 48.2201 High income Not classified
## 909 16.3798 48.2201 High income Not classified
## 910 16.3798 48.2201 High income Not classified
## 911 16.3798 48.2201 High income Not classified
## 912 16.3798 48.2201 High income Not classified
## 913 16.3798 48.2201 High income Not classified
## 914 16.3798 48.2201 High income Not classified
## 915 16.3798 48.2201 High income Not classified
## 916 16.3798 48.2201 High income Not classified
## 917 16.3798 48.2201 High income Not classified
## 918 16.3798 48.2201 High income Not classified
## 919 16.3798 48.2201 High income Not classified
## 920 16.3798 48.2201 High income Not classified
## 921 16.3798 48.2201 High income Not classified
## 922 16.3798 48.2201 High income Not classified
## 923 16.3798 48.2201 High income Not classified
## 924 16.3798 48.2201 High income Not classified
## 925 16.3798 48.2201 High income Not classified
## 926 16.3798 48.2201 High income Not classified
## 927 16.3798 48.2201 High income Not classified
## 928 16.3798 48.2201 High income Not classified
## 929 16.3798 48.2201 High income Not classified
## 930 16.3798 48.2201 High income Not classified
## 931 149.129 -35.282 High income Not classified
## 932 149.129 -35.282 High income Not classified
## 933 149.129 -35.282 High income Not classified
## 934 149.129 -35.282 High income Not classified
## 935 149.129 -35.282 High income Not classified
## 936 149.129 -35.282 High income Not classified
## 937 149.129 -35.282 High income Not classified
## 938 149.129 -35.282 High income Not classified
## 939 149.129 -35.282 High income Not classified
## 940 149.129 -35.282 High income Not classified
## 941 149.129 -35.282 High income Not classified
## 942 149.129 -35.282 High income Not classified
## 943 149.129 -35.282 High income Not classified
## 944 149.129 -35.282 High income Not classified
## 945 149.129 -35.282 High income Not classified
## 946 149.129 -35.282 High income Not classified
## 947 149.129 -35.282 High income Not classified
## 948 149.129 -35.282 High income Not classified
## 949 149.129 -35.282 High income Not classified
## 950 149.129 -35.282 High income Not classified
## 951 149.129 -35.282 High income Not classified
## 952 149.129 -35.282 High income Not classified
## 953 149.129 -35.282 High income Not classified
## 954 149.129 -35.282 High income Not classified
## 955 149.129 -35.282 High income Not classified
## 956 149.129 -35.282 High income Not classified
## 957 149.129 -35.282 High income Not classified
## 958 149.129 -35.282 High income Not classified
## 959 149.129 -35.282 High income Not classified
## 960 149.129 -35.282 High income Not classified
## 961 149.129 -35.282 High income Not classified
## 962 149.129 -35.282 High income Not classified
## 963 149.129 -35.282 High income Not classified
## 964 149.129 -35.282 High income Not classified
## 965 149.129 -35.282 High income Not classified
## 966 149.129 -35.282 High income Not classified
## 967 149.129 -35.282 High income Not classified
## 968 149.129 -35.282 High income Not classified
## 969 149.129 -35.282 High income Not classified
## 970 149.129 -35.282 High income Not classified
## 971 149.129 -35.282 High income Not classified
## 972 149.129 -35.282 High income Not classified
## 973 149.129 -35.282 High income Not classified
## 974 149.129 -35.282 High income Not classified
## 975 149.129 -35.282 High income Not classified
## 976 149.129 -35.282 High income Not classified
## 977 149.129 -35.282 High income Not classified
## 978 149.129 -35.282 High income Not classified
## 979 149.129 -35.282 High income Not classified
## 980 149.129 -35.282 High income Not classified
## 981 149.129 -35.282 High income Not classified
## 982 149.129 -35.282 High income Not classified
## 983 149.129 -35.282 High income Not classified
## 984 149.129 -35.282 High income Not classified
## 985 149.129 -35.282 High income Not classified
## 986 149.129 -35.282 High income Not classified
## 987 149.129 -35.282 High income Not classified
## 988 149.129 -35.282 High income Not classified
## 989 149.129 -35.282 High income Not classified
## 990 149.129 -35.282 High income Not classified
## 991 149.129 -35.282 High income Not classified
## 992 149.129 -35.282 High income Not classified
## 993 -70.0167 12.5167 High income Not classified
## 994 -70.0167 12.5167 High income Not classified
## 995 -70.0167 12.5167 High income Not classified
## 996 -70.0167 12.5167 High income Not classified
## 997 -70.0167 12.5167 High income Not classified
## 998 -70.0167 12.5167 High income Not classified
## 999 -70.0167 12.5167 High income Not classified
## 1000 -70.0167 12.5167 High income Not classified
## 1001 -70.0167 12.5167 High income Not classified
## 1002 -70.0167 12.5167 High income Not classified
## 1003 -70.0167 12.5167 High income Not classified
## 1004 -70.0167 12.5167 High income Not classified
## 1005 -70.0167 12.5167 High income Not classified
## 1006 -70.0167 12.5167 High income Not classified
## 1007 -70.0167 12.5167 High income Not classified
## 1008 -70.0167 12.5167 High income Not classified
## 1009 -70.0167 12.5167 High income Not classified
## 1010 -70.0167 12.5167 High income Not classified
## 1011 -70.0167 12.5167 High income Not classified
## 1012 -70.0167 12.5167 High income Not classified
## 1013 -70.0167 12.5167 High income Not classified
## 1014 -70.0167 12.5167 High income Not classified
## 1015 -70.0167 12.5167 High income Not classified
## 1016 -70.0167 12.5167 High income Not classified
## 1017 -70.0167 12.5167 High income Not classified
## 1018 -70.0167 12.5167 High income Not classified
## 1019 -70.0167 12.5167 High income Not classified
## 1020 -70.0167 12.5167 High income Not classified
## 1021 -70.0167 12.5167 High income Not classified
## 1022 -70.0167 12.5167 High income Not classified
## 1023 -70.0167 12.5167 High income Not classified
## 1024 -70.0167 12.5167 High income Not classified
## 1025 -70.0167 12.5167 High income Not classified
## 1026 -70.0167 12.5167 High income Not classified
## 1027 -70.0167 12.5167 High income Not classified
## 1028 -70.0167 12.5167 High income Not classified
## 1029 -70.0167 12.5167 High income Not classified
## 1030 -70.0167 12.5167 High income Not classified
## 1031 -70.0167 12.5167 High income Not classified
## 1032 -70.0167 12.5167 High income Not classified
## 1033 -70.0167 12.5167 High income Not classified
## 1034 -70.0167 12.5167 High income Not classified
## 1035 -70.0167 12.5167 High income Not classified
## 1036 -70.0167 12.5167 High income Not classified
## 1037 -70.0167 12.5167 High income Not classified
## 1038 -70.0167 12.5167 High income Not classified
## 1039 -70.0167 12.5167 High income Not classified
## 1040 -70.0167 12.5167 High income Not classified
## 1041 -70.0167 12.5167 High income Not classified
## 1042 -70.0167 12.5167 High income Not classified
## 1043 -70.0167 12.5167 High income Not classified
## 1044 -70.0167 12.5167 High income Not classified
## 1045 -70.0167 12.5167 High income Not classified
## 1046 -70.0167 12.5167 High income Not classified
## 1047 -70.0167 12.5167 High income Not classified
## 1048 -70.0167 12.5167 High income Not classified
## 1049 -70.0167 12.5167 High income Not classified
## 1050 -70.0167 12.5167 High income Not classified
## 1051 -70.0167 12.5167 High income Not classified
## 1052 -70.0167 12.5167 High income Not classified
## 1053 -70.0167 12.5167 High income Not classified
## 1054 -70.0167 12.5167 High income Not classified
## 1055 49.8932 40.3834 Upper middle income IBRD
## 1056 49.8932 40.3834 Upper middle income IBRD
## 1057 49.8932 40.3834 Upper middle income IBRD
## 1058 49.8932 40.3834 Upper middle income IBRD
## 1059 49.8932 40.3834 Upper middle income IBRD
## 1060 49.8932 40.3834 Upper middle income IBRD
## 1061 49.8932 40.3834 Upper middle income IBRD
## 1062 49.8932 40.3834 Upper middle income IBRD
## 1063 49.8932 40.3834 Upper middle income IBRD
## 1064 49.8932 40.3834 Upper middle income IBRD
## 1065 49.8932 40.3834 Upper middle income IBRD
## 1066 49.8932 40.3834 Upper middle income IBRD
## 1067 49.8932 40.3834 Upper middle income IBRD
## 1068 49.8932 40.3834 Upper middle income IBRD
## 1069 49.8932 40.3834 Upper middle income IBRD
## 1070 49.8932 40.3834 Upper middle income IBRD
## 1071 49.8932 40.3834 Upper middle income IBRD
## 1072 49.8932 40.3834 Upper middle income IBRD
## 1073 49.8932 40.3834 Upper middle income IBRD
## 1074 49.8932 40.3834 Upper middle income IBRD
## 1075 49.8932 40.3834 Upper middle income IBRD
## 1076 49.8932 40.3834 Upper middle income IBRD
## 1077 49.8932 40.3834 Upper middle income IBRD
## 1078 49.8932 40.3834 Upper middle income IBRD
## 1079 49.8932 40.3834 Upper middle income IBRD
## 1080 49.8932 40.3834 Upper middle income IBRD
## 1081 49.8932 40.3834 Upper middle income IBRD
## 1082 49.8932 40.3834 Upper middle income IBRD
## 1083 49.8932 40.3834 Upper middle income IBRD
## 1084 49.8932 40.3834 Upper middle income IBRD
## 1085 49.8932 40.3834 Upper middle income IBRD
## 1086 49.8932 40.3834 Upper middle income IBRD
## 1087 49.8932 40.3834 Upper middle income IBRD
## 1088 49.8932 40.3834 Upper middle income IBRD
## 1089 49.8932 40.3834 Upper middle income IBRD
## 1090 49.8932 40.3834 Upper middle income IBRD
## 1091 49.8932 40.3834 Upper middle income IBRD
## 1092 49.8932 40.3834 Upper middle income IBRD
## 1093 49.8932 40.3834 Upper middle income IBRD
## 1094 49.8932 40.3834 Upper middle income IBRD
## 1095 49.8932 40.3834 Upper middle income IBRD
## 1096 49.8932 40.3834 Upper middle income IBRD
## 1097 49.8932 40.3834 Upper middle income IBRD
## 1098 49.8932 40.3834 Upper middle income IBRD
## 1099 49.8932 40.3834 Upper middle income IBRD
## 1100 49.8932 40.3834 Upper middle income IBRD
## 1101 49.8932 40.3834 Upper middle income IBRD
## 1102 49.8932 40.3834 Upper middle income IBRD
## 1103 49.8932 40.3834 Upper middle income IBRD
## 1104 49.8932 40.3834 Upper middle income IBRD
## 1105 49.8932 40.3834 Upper middle income IBRD
## 1106 49.8932 40.3834 Upper middle income IBRD
## 1107 49.8932 40.3834 Upper middle income IBRD
## 1108 49.8932 40.3834 Upper middle income IBRD
## 1109 49.8932 40.3834 Upper middle income IBRD
## 1110 49.8932 40.3834 Upper middle income IBRD
## 1111 49.8932 40.3834 Upper middle income IBRD
## 1112 49.8932 40.3834 Upper middle income IBRD
## 1113 49.8932 40.3834 Upper middle income IBRD
## 1114 49.8932 40.3834 Upper middle income IBRD
## 1115 49.8932 40.3834 Upper middle income IBRD
## 1116 49.8932 40.3834 Upper middle income IBRD
## 1117 Aggregates Aggregates
## 1118 Aggregates Aggregates
## 1119 Aggregates Aggregates
## 1120 Aggregates Aggregates
## 1121 Aggregates Aggregates
## 1122 Aggregates Aggregates
## 1123 Aggregates Aggregates
## 1124 Aggregates Aggregates
## 1125 Aggregates Aggregates
## 1126 Aggregates Aggregates
## 1127 Aggregates Aggregates
## 1128 Aggregates Aggregates
## 1129 Aggregates Aggregates
## 1130 Aggregates Aggregates
## 1131 Aggregates Aggregates
## 1132 Aggregates Aggregates
## 1133 Aggregates Aggregates
## 1134 Aggregates Aggregates
## 1135 Aggregates Aggregates
## 1136 Aggregates Aggregates
## 1137 Aggregates Aggregates
## 1138 Aggregates Aggregates
## 1139 Aggregates Aggregates
## 1140 Aggregates Aggregates
## 1141 Aggregates Aggregates
## 1142 Aggregates Aggregates
## 1143 Aggregates Aggregates
## 1144 Aggregates Aggregates
## 1145 Aggregates Aggregates
## 1146 Aggregates Aggregates
## 1147 Aggregates Aggregates
## 1148 Aggregates Aggregates
## 1149 Aggregates Aggregates
## 1150 Aggregates Aggregates
## 1151 Aggregates Aggregates
## 1152 Aggregates Aggregates
## 1153 Aggregates Aggregates
## 1154 Aggregates Aggregates
## 1155 Aggregates Aggregates
## 1156 Aggregates Aggregates
## 1157 Aggregates Aggregates
## 1158 Aggregates Aggregates
## 1159 Aggregates Aggregates
## 1160 Aggregates Aggregates
## 1161 Aggregates Aggregates
## 1162 Aggregates Aggregates
## 1163 Aggregates Aggregates
## 1164 Aggregates Aggregates
## 1165 Aggregates Aggregates
## 1166 Aggregates Aggregates
## 1167 Aggregates Aggregates
## 1168 Aggregates Aggregates
## 1169 Aggregates Aggregates
## 1170 Aggregates Aggregates
## 1171 Aggregates Aggregates
## 1172 Aggregates Aggregates
## 1173 Aggregates Aggregates
## 1174 Aggregates Aggregates
## 1175 Aggregates Aggregates
## 1176 Aggregates Aggregates
## 1177 Aggregates Aggregates
## 1178 Aggregates Aggregates
## 1179 18.4214 43.8607 Upper middle income IBRD
## 1180 18.4214 43.8607 Upper middle income IBRD
## 1181 18.4214 43.8607 Upper middle income IBRD
## 1182 18.4214 43.8607 Upper middle income IBRD
## 1183 18.4214 43.8607 Upper middle income IBRD
## 1184 18.4214 43.8607 Upper middle income IBRD
## 1185 18.4214 43.8607 Upper middle income IBRD
## 1186 18.4214 43.8607 Upper middle income IBRD
## 1187 18.4214 43.8607 Upper middle income IBRD
## 1188 18.4214 43.8607 Upper middle income IBRD
## 1189 18.4214 43.8607 Upper middle income IBRD
## 1190 18.4214 43.8607 Upper middle income IBRD
## 1191 18.4214 43.8607 Upper middle income IBRD
## 1192 18.4214 43.8607 Upper middle income IBRD
## 1193 18.4214 43.8607 Upper middle income IBRD
## 1194 18.4214 43.8607 Upper middle income IBRD
## 1195 18.4214 43.8607 Upper middle income IBRD
## 1196 18.4214 43.8607 Upper middle income IBRD
## 1197 18.4214 43.8607 Upper middle income IBRD
## 1198 18.4214 43.8607 Upper middle income IBRD
## 1199 18.4214 43.8607 Upper middle income IBRD
## 1200 18.4214 43.8607 Upper middle income IBRD
## 1201 18.4214 43.8607 Upper middle income IBRD
## 1202 18.4214 43.8607 Upper middle income IBRD
## 1203 18.4214 43.8607 Upper middle income IBRD
## 1204 18.4214 43.8607 Upper middle income IBRD
## 1205 18.4214 43.8607 Upper middle income IBRD
## 1206 18.4214 43.8607 Upper middle income IBRD
## 1207 18.4214 43.8607 Upper middle income IBRD
## 1208 18.4214 43.8607 Upper middle income IBRD
## 1209 18.4214 43.8607 Upper middle income IBRD
## 1210 18.4214 43.8607 Upper middle income IBRD
## 1211 18.4214 43.8607 Upper middle income IBRD
## 1212 18.4214 43.8607 Upper middle income IBRD
## 1213 18.4214 43.8607 Upper middle income IBRD
## 1214 18.4214 43.8607 Upper middle income IBRD
## 1215 18.4214 43.8607 Upper middle income IBRD
## 1216 18.4214 43.8607 Upper middle income IBRD
## 1217 18.4214 43.8607 Upper middle income IBRD
## 1218 18.4214 43.8607 Upper middle income IBRD
## 1219 18.4214 43.8607 Upper middle income IBRD
## 1220 18.4214 43.8607 Upper middle income IBRD
## 1221 18.4214 43.8607 Upper middle income IBRD
## 1222 18.4214 43.8607 Upper middle income IBRD
## 1223 18.4214 43.8607 Upper middle income IBRD
## 1224 18.4214 43.8607 Upper middle income IBRD
## 1225 18.4214 43.8607 Upper middle income IBRD
## 1226 18.4214 43.8607 Upper middle income IBRD
## 1227 18.4214 43.8607 Upper middle income IBRD
## 1228 18.4214 43.8607 Upper middle income IBRD
## 1229 18.4214 43.8607 Upper middle income IBRD
## 1230 18.4214 43.8607 Upper middle income IBRD
## 1231 18.4214 43.8607 Upper middle income IBRD
## 1232 18.4214 43.8607 Upper middle income IBRD
## 1233 18.4214 43.8607 Upper middle income IBRD
## 1234 18.4214 43.8607 Upper middle income IBRD
## 1235 18.4214 43.8607 Upper middle income IBRD
## 1236 18.4214 43.8607 Upper middle income IBRD
## 1237 18.4214 43.8607 Upper middle income IBRD
## 1238 18.4214 43.8607 Upper middle income IBRD
## 1239 18.4214 43.8607 Upper middle income IBRD
## 1240 18.4214 43.8607 Upper middle income IBRD
## 1241 -59.6105 13.0935 High income Not classified
## 1242 -59.6105 13.0935 High income Not classified
## 1243 -59.6105 13.0935 High income Not classified
## 1244 -59.6105 13.0935 High income Not classified
## 1245 -59.6105 13.0935 High income Not classified
## 1246 -59.6105 13.0935 High income Not classified
## 1247 -59.6105 13.0935 High income Not classified
## 1248 -59.6105 13.0935 High income Not classified
## 1249 -59.6105 13.0935 High income Not classified
## 1250 -59.6105 13.0935 High income Not classified
## 1251 -59.6105 13.0935 High income Not classified
## 1252 -59.6105 13.0935 High income Not classified
## 1253 -59.6105 13.0935 High income Not classified
## 1254 -59.6105 13.0935 High income Not classified
## 1255 -59.6105 13.0935 High income Not classified
## 1256 -59.6105 13.0935 High income Not classified
## 1257 -59.6105 13.0935 High income Not classified
## 1258 -59.6105 13.0935 High income Not classified
## 1259 -59.6105 13.0935 High income Not classified
## 1260 -59.6105 13.0935 High income Not classified
## 1261 -59.6105 13.0935 High income Not classified
## 1262 -59.6105 13.0935 High income Not classified
## 1263 -59.6105 13.0935 High income Not classified
## 1264 -59.6105 13.0935 High income Not classified
## 1265 -59.6105 13.0935 High income Not classified
## 1266 -59.6105 13.0935 High income Not classified
## 1267 -59.6105 13.0935 High income Not classified
## 1268 -59.6105 13.0935 High income Not classified
## 1269 -59.6105 13.0935 High income Not classified
## 1270 -59.6105 13.0935 High income Not classified
## 1271 -59.6105 13.0935 High income Not classified
## 1272 -59.6105 13.0935 High income Not classified
## 1273 -59.6105 13.0935 High income Not classified
## 1274 -59.6105 13.0935 High income Not classified
## 1275 -59.6105 13.0935 High income Not classified
## 1276 -59.6105 13.0935 High income Not classified
## 1277 -59.6105 13.0935 High income Not classified
## 1278 -59.6105 13.0935 High income Not classified
## 1279 -59.6105 13.0935 High income Not classified
## 1280 -59.6105 13.0935 High income Not classified
## 1281 -59.6105 13.0935 High income Not classified
## 1282 -59.6105 13.0935 High income Not classified
## 1283 -59.6105 13.0935 High income Not classified
## 1284 -59.6105 13.0935 High income Not classified
## 1285 -59.6105 13.0935 High income Not classified
## 1286 -59.6105 13.0935 High income Not classified
## 1287 -59.6105 13.0935 High income Not classified
## 1288 -59.6105 13.0935 High income Not classified
## 1289 -59.6105 13.0935 High income Not classified
## 1290 -59.6105 13.0935 High income Not classified
## 1291 -59.6105 13.0935 High income Not classified
## 1292 -59.6105 13.0935 High income Not classified
## 1293 -59.6105 13.0935 High income Not classified
## 1294 -59.6105 13.0935 High income Not classified
## 1295 -59.6105 13.0935 High income Not classified
## 1296 -59.6105 13.0935 High income Not classified
## 1297 -59.6105 13.0935 High income Not classified
## 1298 -59.6105 13.0935 High income Not classified
## 1299 -59.6105 13.0935 High income Not classified
## 1300 -59.6105 13.0935 High income Not classified
## 1301 -59.6105 13.0935 High income Not classified
## 1302 -59.6105 13.0935 High income Not classified
## 1303 90.4113 23.7055 Lower middle income IDA
## 1304 90.4113 23.7055 Lower middle income IDA
## 1305 90.4113 23.7055 Lower middle income IDA
## 1306 90.4113 23.7055 Lower middle income IDA
## 1307 90.4113 23.7055 Lower middle income IDA
## 1308 90.4113 23.7055 Lower middle income IDA
## 1309 90.4113 23.7055 Lower middle income IDA
## 1310 90.4113 23.7055 Lower middle income IDA
## 1311 90.4113 23.7055 Lower middle income IDA
## 1312 90.4113 23.7055 Lower middle income IDA
## 1313 90.4113 23.7055 Lower middle income IDA
## 1314 90.4113 23.7055 Lower middle income IDA
## 1315 90.4113 23.7055 Lower middle income IDA
## 1316 90.4113 23.7055 Lower middle income IDA
## 1317 90.4113 23.7055 Lower middle income IDA
## 1318 90.4113 23.7055 Lower middle income IDA
## 1319 90.4113 23.7055 Lower middle income IDA
## 1320 90.4113 23.7055 Lower middle income IDA
## 1321 90.4113 23.7055 Lower middle income IDA
## 1322 90.4113 23.7055 Lower middle income IDA
## 1323 90.4113 23.7055 Lower middle income IDA
## 1324 90.4113 23.7055 Lower middle income IDA
## 1325 90.4113 23.7055 Lower middle income IDA
## 1326 90.4113 23.7055 Lower middle income IDA
## 1327 90.4113 23.7055 Lower middle income IDA
## 1328 90.4113 23.7055 Lower middle income IDA
## 1329 90.4113 23.7055 Lower middle income IDA
## 1330 90.4113 23.7055 Lower middle income IDA
## 1331 90.4113 23.7055 Lower middle income IDA
## 1332 90.4113 23.7055 Lower middle income IDA
## 1333 90.4113 23.7055 Lower middle income IDA
## 1334 90.4113 23.7055 Lower middle income IDA
## 1335 90.4113 23.7055 Lower middle income IDA
## 1336 90.4113 23.7055 Lower middle income IDA
## 1337 90.4113 23.7055 Lower middle income IDA
## 1338 90.4113 23.7055 Lower middle income IDA
## 1339 90.4113 23.7055 Lower middle income IDA
## 1340 90.4113 23.7055 Lower middle income IDA
## 1341 90.4113 23.7055 Lower middle income IDA
## 1342 90.4113 23.7055 Lower middle income IDA
## 1343 90.4113 23.7055 Lower middle income IDA
## 1344 90.4113 23.7055 Lower middle income IDA
## 1345 90.4113 23.7055 Lower middle income IDA
## 1346 90.4113 23.7055 Lower middle income IDA
## 1347 90.4113 23.7055 Lower middle income IDA
## 1348 90.4113 23.7055 Lower middle income IDA
## 1349 90.4113 23.7055 Lower middle income IDA
## 1350 90.4113 23.7055 Lower middle income IDA
## 1351 90.4113 23.7055 Lower middle income IDA
## 1352 90.4113 23.7055 Lower middle income IDA
## 1353 90.4113 23.7055 Lower middle income IDA
## 1354 90.4113 23.7055 Lower middle income IDA
## 1355 90.4113 23.7055 Lower middle income IDA
## 1356 90.4113 23.7055 Lower middle income IDA
## 1357 90.4113 23.7055 Lower middle income IDA
## 1358 90.4113 23.7055 Lower middle income IDA
## 1359 90.4113 23.7055 Lower middle income IDA
## 1360 90.4113 23.7055 Lower middle income IDA
## 1361 90.4113 23.7055 Lower middle income IDA
## 1362 90.4113 23.7055 Lower middle income IDA
## 1363 90.4113 23.7055 Lower middle income IDA
## 1364 90.4113 23.7055 Lower middle income IDA
## 1365 4.36761 50.8371 High income Not classified
## 1366 4.36761 50.8371 High income Not classified
## 1367 4.36761 50.8371 High income Not classified
## 1368 4.36761 50.8371 High income Not classified
## 1369 4.36761 50.8371 High income Not classified
## 1370 4.36761 50.8371 High income Not classified
## 1371 4.36761 50.8371 High income Not classified
## 1372 4.36761 50.8371 High income Not classified
## 1373 4.36761 50.8371 High income Not classified
## 1374 4.36761 50.8371 High income Not classified
## 1375 4.36761 50.8371 High income Not classified
## 1376 4.36761 50.8371 High income Not classified
## 1377 4.36761 50.8371 High income Not classified
## 1378 4.36761 50.8371 High income Not classified
## 1379 4.36761 50.8371 High income Not classified
## 1380 4.36761 50.8371 High income Not classified
## 1381 4.36761 50.8371 High income Not classified
## 1382 4.36761 50.8371 High income Not classified
## 1383 4.36761 50.8371 High income Not classified
## 1384 4.36761 50.8371 High income Not classified
## 1385 4.36761 50.8371 High income Not classified
## 1386 4.36761 50.8371 High income Not classified
## 1387 4.36761 50.8371 High income Not classified
## 1388 4.36761 50.8371 High income Not classified
## 1389 4.36761 50.8371 High income Not classified
## 1390 4.36761 50.8371 High income Not classified
## 1391 4.36761 50.8371 High income Not classified
## 1392 4.36761 50.8371 High income Not classified
## 1393 4.36761 50.8371 High income Not classified
## 1394 4.36761 50.8371 High income Not classified
## 1395 4.36761 50.8371 High income Not classified
## 1396 4.36761 50.8371 High income Not classified
## 1397 4.36761 50.8371 High income Not classified
## 1398 4.36761 50.8371 High income Not classified
## 1399 4.36761 50.8371 High income Not classified
## 1400 4.36761 50.8371 High income Not classified
## 1401 4.36761 50.8371 High income Not classified
## 1402 4.36761 50.8371 High income Not classified
## 1403 4.36761 50.8371 High income Not classified
## 1404 4.36761 50.8371 High income Not classified
## 1405 4.36761 50.8371 High income Not classified
## 1406 4.36761 50.8371 High income Not classified
## 1407 4.36761 50.8371 High income Not classified
## 1408 4.36761 50.8371 High income Not classified
## 1409 4.36761 50.8371 High income Not classified
## 1410 4.36761 50.8371 High income Not classified
## 1411 4.36761 50.8371 High income Not classified
## 1412 4.36761 50.8371 High income Not classified
## 1413 4.36761 50.8371 High income Not classified
## 1414 4.36761 50.8371 High income Not classified
## 1415 4.36761 50.8371 High income Not classified
## 1416 4.36761 50.8371 High income Not classified
## 1417 4.36761 50.8371 High income Not classified
## 1418 4.36761 50.8371 High income Not classified
## 1419 4.36761 50.8371 High income Not classified
## 1420 4.36761 50.8371 High income Not classified
## 1421 4.36761 50.8371 High income Not classified
## 1422 4.36761 50.8371 High income Not classified
## 1423 4.36761 50.8371 High income Not classified
## 1424 4.36761 50.8371 High income Not classified
## 1425 4.36761 50.8371 High income Not classified
## 1426 4.36761 50.8371 High income Not classified
## 1427 -1.53395 12.3605 Low income IDA
## 1428 -1.53395 12.3605 Low income IDA
## 1429 -1.53395 12.3605 Low income IDA
## 1430 -1.53395 12.3605 Low income IDA
## 1431 -1.53395 12.3605 Low income IDA
## 1432 -1.53395 12.3605 Low income IDA
## 1433 -1.53395 12.3605 Low income IDA
## 1434 -1.53395 12.3605 Low income IDA
## 1435 -1.53395 12.3605 Low income IDA
## 1436 -1.53395 12.3605 Low income IDA
## 1437 -1.53395 12.3605 Low income IDA
## 1438 -1.53395 12.3605 Low income IDA
## 1439 -1.53395 12.3605 Low income IDA
## 1440 -1.53395 12.3605 Low income IDA
## 1441 -1.53395 12.3605 Low income IDA
## 1442 -1.53395 12.3605 Low income IDA
## 1443 -1.53395 12.3605 Low income IDA
## 1444 -1.53395 12.3605 Low income IDA
## 1445 -1.53395 12.3605 Low income IDA
## 1446 -1.53395 12.3605 Low income IDA
## 1447 -1.53395 12.3605 Low income IDA
## 1448 -1.53395 12.3605 Low income IDA
## 1449 -1.53395 12.3605 Low income IDA
## 1450 -1.53395 12.3605 Low income IDA
## 1451 -1.53395 12.3605 Low income IDA
## 1452 -1.53395 12.3605 Low income IDA
## 1453 -1.53395 12.3605 Low income IDA
## 1454 -1.53395 12.3605 Low income IDA
## 1455 -1.53395 12.3605 Low income IDA
## 1456 -1.53395 12.3605 Low income IDA
## 1457 -1.53395 12.3605 Low income IDA
## 1458 -1.53395 12.3605 Low income IDA
## 1459 -1.53395 12.3605 Low income IDA
## 1460 -1.53395 12.3605 Low income IDA
## 1461 -1.53395 12.3605 Low income IDA
## 1462 -1.53395 12.3605 Low income IDA
## 1463 -1.53395 12.3605 Low income IDA
## 1464 -1.53395 12.3605 Low income IDA
## 1465 -1.53395 12.3605 Low income IDA
## 1466 -1.53395 12.3605 Low income IDA
## 1467 -1.53395 12.3605 Low income IDA
## 1468 -1.53395 12.3605 Low income IDA
## 1469 -1.53395 12.3605 Low income IDA
## 1470 -1.53395 12.3605 Low income IDA
## 1471 -1.53395 12.3605 Low income IDA
## 1472 -1.53395 12.3605 Low income IDA
## 1473 -1.53395 12.3605 Low income IDA
## 1474 -1.53395 12.3605 Low income IDA
## 1475 -1.53395 12.3605 Low income IDA
## 1476 -1.53395 12.3605 Low income IDA
## 1477 -1.53395 12.3605 Low income IDA
## 1478 -1.53395 12.3605 Low income IDA
## 1479 -1.53395 12.3605 Low income IDA
## 1480 -1.53395 12.3605 Low income IDA
## 1481 -1.53395 12.3605 Low income IDA
## 1482 -1.53395 12.3605 Low income IDA
## 1483 -1.53395 12.3605 Low income IDA
## 1484 -1.53395 12.3605 Low income IDA
## 1485 -1.53395 12.3605 Low income IDA
## 1486 -1.53395 12.3605 Low income IDA
## 1487 -1.53395 12.3605 Low income IDA
## 1488 -1.53395 12.3605 Low income IDA
## 1489 23.3238 42.7105 Upper middle income IBRD
## 1490 23.3238 42.7105 Upper middle income IBRD
## 1491 23.3238 42.7105 Upper middle income IBRD
## 1492 23.3238 42.7105 Upper middle income IBRD
## 1493 23.3238 42.7105 Upper middle income IBRD
## 1494 23.3238 42.7105 Upper middle income IBRD
## 1495 23.3238 42.7105 Upper middle income IBRD
## 1496 23.3238 42.7105 Upper middle income IBRD
## 1497 23.3238 42.7105 Upper middle income IBRD
## 1498 23.3238 42.7105 Upper middle income IBRD
## 1499 23.3238 42.7105 Upper middle income IBRD
## 1500 23.3238 42.7105 Upper middle income IBRD
## 1501 23.3238 42.7105 Upper middle income IBRD
## 1502 23.3238 42.7105 Upper middle income IBRD
## 1503 23.3238 42.7105 Upper middle income IBRD
## 1504 23.3238 42.7105 Upper middle income IBRD
## 1505 23.3238 42.7105 Upper middle income IBRD
## 1506 23.3238 42.7105 Upper middle income IBRD
## 1507 23.3238 42.7105 Upper middle income IBRD
## 1508 23.3238 42.7105 Upper middle income IBRD
## 1509 23.3238 42.7105 Upper middle income IBRD
## 1510 23.3238 42.7105 Upper middle income IBRD
## 1511 23.3238 42.7105 Upper middle income IBRD
## 1512 23.3238 42.7105 Upper middle income IBRD
## 1513 23.3238 42.7105 Upper middle income IBRD
## 1514 23.3238 42.7105 Upper middle income IBRD
## 1515 23.3238 42.7105 Upper middle income IBRD
## 1516 23.3238 42.7105 Upper middle income IBRD
## 1517 23.3238 42.7105 Upper middle income IBRD
## 1518 23.3238 42.7105 Upper middle income IBRD
## 1519 23.3238 42.7105 Upper middle income IBRD
## 1520 23.3238 42.7105 Upper middle income IBRD
## 1521 23.3238 42.7105 Upper middle income IBRD
## 1522 23.3238 42.7105 Upper middle income IBRD
## 1523 23.3238 42.7105 Upper middle income IBRD
## 1524 23.3238 42.7105 Upper middle income IBRD
## 1525 23.3238 42.7105 Upper middle income IBRD
## 1526 23.3238 42.7105 Upper middle income IBRD
## 1527 23.3238 42.7105 Upper middle income IBRD
## 1528 23.3238 42.7105 Upper middle income IBRD
## 1529 23.3238 42.7105 Upper middle income IBRD
## 1530 23.3238 42.7105 Upper middle income IBRD
## 1531 23.3238 42.7105 Upper middle income IBRD
## 1532 23.3238 42.7105 Upper middle income IBRD
## 1533 23.3238 42.7105 Upper middle income IBRD
## 1534 23.3238 42.7105 Upper middle income IBRD
## 1535 23.3238 42.7105 Upper middle income IBRD
## 1536 23.3238 42.7105 Upper middle income IBRD
## 1537 23.3238 42.7105 Upper middle income IBRD
## 1538 23.3238 42.7105 Upper middle income IBRD
## 1539 23.3238 42.7105 Upper middle income IBRD
## 1540 23.3238 42.7105 Upper middle income IBRD
## 1541 23.3238 42.7105 Upper middle income IBRD
## 1542 23.3238 42.7105 Upper middle income IBRD
## 1543 23.3238 42.7105 Upper middle income IBRD
## 1544 23.3238 42.7105 Upper middle income IBRD
## 1545 23.3238 42.7105 Upper middle income IBRD
## 1546 23.3238 42.7105 Upper middle income IBRD
## 1547 23.3238 42.7105 Upper middle income IBRD
## 1548 23.3238 42.7105 Upper middle income IBRD
## 1549 23.3238 42.7105 Upper middle income IBRD
## 1550 23.3238 42.7105 Upper middle income IBRD
## 1551 50.5354 26.1921 High income Not classified
## 1552 50.5354 26.1921 High income Not classified
## 1553 50.5354 26.1921 High income Not classified
## 1554 50.5354 26.1921 High income Not classified
## 1555 50.5354 26.1921 High income Not classified
## 1556 50.5354 26.1921 High income Not classified
## 1557 50.5354 26.1921 High income Not classified
## 1558 50.5354 26.1921 High income Not classified
## 1559 50.5354 26.1921 High income Not classified
## 1560 50.5354 26.1921 High income Not classified
## 1561 50.5354 26.1921 High income Not classified
## 1562 50.5354 26.1921 High income Not classified
## 1563 50.5354 26.1921 High income Not classified
## 1564 50.5354 26.1921 High income Not classified
## 1565 50.5354 26.1921 High income Not classified
## 1566 50.5354 26.1921 High income Not classified
## 1567 50.5354 26.1921 High income Not classified
## 1568 50.5354 26.1921 High income Not classified
## 1569 50.5354 26.1921 High income Not classified
## 1570 50.5354 26.1921 High income Not classified
## 1571 50.5354 26.1921 High income Not classified
## 1572 50.5354 26.1921 High income Not classified
## 1573 50.5354 26.1921 High income Not classified
## 1574 50.5354 26.1921 High income Not classified
## 1575 50.5354 26.1921 High income Not classified
## 1576 50.5354 26.1921 High income Not classified
## 1577 50.5354 26.1921 High income Not classified
## 1578 50.5354 26.1921 High income Not classified
## 1579 50.5354 26.1921 High income Not classified
## 1580 50.5354 26.1921 High income Not classified
## 1581 50.5354 26.1921 High income Not classified
## 1582 50.5354 26.1921 High income Not classified
## 1583 50.5354 26.1921 High income Not classified
## 1584 50.5354 26.1921 High income Not classified
## 1585 50.5354 26.1921 High income Not classified
## 1586 50.5354 26.1921 High income Not classified
## 1587 50.5354 26.1921 High income Not classified
## 1588 50.5354 26.1921 High income Not classified
## 1589 50.5354 26.1921 High income Not classified
## 1590 50.5354 26.1921 High income Not classified
## 1591 50.5354 26.1921 High income Not classified
## 1592 50.5354 26.1921 High income Not classified
## 1593 50.5354 26.1921 High income Not classified
## 1594 50.5354 26.1921 High income Not classified
## 1595 50.5354 26.1921 High income Not classified
## 1596 50.5354 26.1921 High income Not classified
## 1597 50.5354 26.1921 High income Not classified
## 1598 50.5354 26.1921 High income Not classified
## 1599 50.5354 26.1921 High income Not classified
## 1600 50.5354 26.1921 High income Not classified
## 1601 50.5354 26.1921 High income Not classified
## 1602 50.5354 26.1921 High income Not classified
## 1603 50.5354 26.1921 High income Not classified
## 1604 50.5354 26.1921 High income Not classified
## 1605 50.5354 26.1921 High income Not classified
## 1606 50.5354 26.1921 High income Not classified
## 1607 50.5354 26.1921 High income Not classified
## 1608 50.5354 26.1921 High income Not classified
## 1609 50.5354 26.1921 High income Not classified
## 1610 50.5354 26.1921 High income Not classified
## 1611 50.5354 26.1921 High income Not classified
## 1612 50.5354 26.1921 High income Not classified
## 1613 29.3639 -3.3784 Low income IDA
## 1614 29.3639 -3.3784 Low income IDA
## 1615 29.3639 -3.3784 Low income IDA
## 1616 29.3639 -3.3784 Low income IDA
## 1617 29.3639 -3.3784 Low income IDA
## 1618 29.3639 -3.3784 Low income IDA
## 1619 29.3639 -3.3784 Low income IDA
## 1620 29.3639 -3.3784 Low income IDA
## 1621 29.3639 -3.3784 Low income IDA
## 1622 29.3639 -3.3784 Low income IDA
## 1623 29.3639 -3.3784 Low income IDA
## 1624 29.3639 -3.3784 Low income IDA
## 1625 29.3639 -3.3784 Low income IDA
## 1626 29.3639 -3.3784 Low income IDA
## 1627 29.3639 -3.3784 Low income IDA
## 1628 29.3639 -3.3784 Low income IDA
## 1629 29.3639 -3.3784 Low income IDA
## 1630 29.3639 -3.3784 Low income IDA
## 1631 29.3639 -3.3784 Low income IDA
## 1632 29.3639 -3.3784 Low income IDA
## 1633 29.3639 -3.3784 Low income IDA
## 1634 29.3639 -3.3784 Low income IDA
## 1635 29.3639 -3.3784 Low income IDA
## 1636 29.3639 -3.3784 Low income IDA
## 1637 29.3639 -3.3784 Low income IDA
## 1638 29.3639 -3.3784 Low income IDA
## 1639 29.3639 -3.3784 Low income IDA
## 1640 29.3639 -3.3784 Low income IDA
## 1641 29.3639 -3.3784 Low income IDA
## 1642 29.3639 -3.3784 Low income IDA
## 1643 29.3639 -3.3784 Low income IDA
## 1644 29.3639 -3.3784 Low income IDA
## 1645 29.3639 -3.3784 Low income IDA
## 1646 29.3639 -3.3784 Low income IDA
## 1647 29.3639 -3.3784 Low income IDA
## 1648 29.3639 -3.3784 Low income IDA
## 1649 29.3639 -3.3784 Low income IDA
## 1650 29.3639 -3.3784 Low income IDA
## 1651 29.3639 -3.3784 Low income IDA
## 1652 29.3639 -3.3784 Low income IDA
## 1653 29.3639 -3.3784 Low income IDA
## 1654 29.3639 -3.3784 Low income IDA
## 1655 29.3639 -3.3784 Low income IDA
## 1656 29.3639 -3.3784 Low income IDA
## 1657 29.3639 -3.3784 Low income IDA
## 1658 29.3639 -3.3784 Low income IDA
## 1659 29.3639 -3.3784 Low income IDA
## 1660 29.3639 -3.3784 Low income IDA
## 1661 29.3639 -3.3784 Low income IDA
## 1662 29.3639 -3.3784 Low income IDA
## 1663 29.3639 -3.3784 Low income IDA
## 1664 29.3639 -3.3784 Low income IDA
## 1665 29.3639 -3.3784 Low income IDA
## 1666 29.3639 -3.3784 Low income IDA
## 1667 29.3639 -3.3784 Low income IDA
## 1668 29.3639 -3.3784 Low income IDA
## 1669 29.3639 -3.3784 Low income IDA
## 1670 29.3639 -3.3784 Low income IDA
## 1671 29.3639 -3.3784 Low income IDA
## 1672 29.3639 -3.3784 Low income IDA
## 1673 29.3639 -3.3784 Low income IDA
## 1674 29.3639 -3.3784 Low income IDA
## 1675 2.6323 6.4779 Lower middle income IDA
## 1676 2.6323 6.4779 Lower middle income IDA
## 1677 2.6323 6.4779 Lower middle income IDA
## 1678 2.6323 6.4779 Lower middle income IDA
## 1679 2.6323 6.4779 Lower middle income IDA
## 1680 2.6323 6.4779 Lower middle income IDA
## 1681 2.6323 6.4779 Lower middle income IDA
## 1682 2.6323 6.4779 Lower middle income IDA
## 1683 2.6323 6.4779 Lower middle income IDA
## 1684 2.6323 6.4779 Lower middle income IDA
## 1685 2.6323 6.4779 Lower middle income IDA
## 1686 2.6323 6.4779 Lower middle income IDA
## 1687 2.6323 6.4779 Lower middle income IDA
## 1688 2.6323 6.4779 Lower middle income IDA
## 1689 2.6323 6.4779 Lower middle income IDA
## 1690 2.6323 6.4779 Lower middle income IDA
## 1691 2.6323 6.4779 Lower middle income IDA
## 1692 2.6323 6.4779 Lower middle income IDA
## 1693 2.6323 6.4779 Lower middle income IDA
## 1694 2.6323 6.4779 Lower middle income IDA
## 1695 2.6323 6.4779 Lower middle income IDA
## 1696 2.6323 6.4779 Lower middle income IDA
## 1697 2.6323 6.4779 Lower middle income IDA
## 1698 2.6323 6.4779 Lower middle income IDA
## 1699 2.6323 6.4779 Lower middle income IDA
## 1700 2.6323 6.4779 Lower middle income IDA
## 1701 2.6323 6.4779 Lower middle income IDA
## 1702 2.6323 6.4779 Lower middle income IDA
## 1703 2.6323 6.4779 Lower middle income IDA
## 1704 2.6323 6.4779 Lower middle income IDA
## 1705 2.6323 6.4779 Lower middle income IDA
## 1706 2.6323 6.4779 Lower middle income IDA
## 1707 2.6323 6.4779 Lower middle income IDA
## 1708 2.6323 6.4779 Lower middle income IDA
## 1709 2.6323 6.4779 Lower middle income IDA
## 1710 2.6323 6.4779 Lower middle income IDA
## 1711 2.6323 6.4779 Lower middle income IDA
## 1712 2.6323 6.4779 Lower middle income IDA
## 1713 2.6323 6.4779 Lower middle income IDA
## 1714 2.6323 6.4779 Lower middle income IDA
## 1715 2.6323 6.4779 Lower middle income IDA
## 1716 2.6323 6.4779 Lower middle income IDA
## 1717 2.6323 6.4779 Lower middle income IDA
## 1718 2.6323 6.4779 Lower middle income IDA
## 1719 2.6323 6.4779 Lower middle income IDA
## 1720 2.6323 6.4779 Lower middle income IDA
## 1721 2.6323 6.4779 Lower middle income IDA
## 1722 2.6323 6.4779 Lower middle income IDA
## 1723 2.6323 6.4779 Lower middle income IDA
## 1724 2.6323 6.4779 Lower middle income IDA
## 1725 2.6323 6.4779 Lower middle income IDA
## 1726 2.6323 6.4779 Lower middle income IDA
## 1727 2.6323 6.4779 Lower middle income IDA
## 1728 2.6323 6.4779 Lower middle income IDA
## 1729 2.6323 6.4779 Lower middle income IDA
## 1730 2.6323 6.4779 Lower middle income IDA
## 1731 2.6323 6.4779 Lower middle income IDA
## 1732 2.6323 6.4779 Lower middle income IDA
## 1733 2.6323 6.4779 Lower middle income IDA
## 1734 2.6323 6.4779 Lower middle income IDA
## 1735 2.6323 6.4779 Lower middle income IDA
## 1736 2.6323 6.4779 Lower middle income IDA
## 1737 -64.706 32.3293 High income Not classified
## 1738 -64.706 32.3293 High income Not classified
## 1739 -64.706 32.3293 High income Not classified
## 1740 -64.706 32.3293 High income Not classified
## 1741 -64.706 32.3293 High income Not classified
## 1742 -64.706 32.3293 High income Not classified
## 1743 -64.706 32.3293 High income Not classified
## 1744 -64.706 32.3293 High income Not classified
## 1745 -64.706 32.3293 High income Not classified
## 1746 -64.706 32.3293 High income Not classified
## 1747 -64.706 32.3293 High income Not classified
## 1748 -64.706 32.3293 High income Not classified
## 1749 -64.706 32.3293 High income Not classified
## 1750 -64.706 32.3293 High income Not classified
## 1751 -64.706 32.3293 High income Not classified
## 1752 -64.706 32.3293 High income Not classified
## 1753 -64.706 32.3293 High income Not classified
## 1754 -64.706 32.3293 High income Not classified
## 1755 -64.706 32.3293 High income Not classified
## 1756 -64.706 32.3293 High income Not classified
## 1757 -64.706 32.3293 High income Not classified
## 1758 -64.706 32.3293 High income Not classified
## 1759 -64.706 32.3293 High income Not classified
## 1760 -64.706 32.3293 High income Not classified
## 1761 -64.706 32.3293 High income Not classified
## 1762 -64.706 32.3293 High income Not classified
## 1763 -64.706 32.3293 High income Not classified
## 1764 -64.706 32.3293 High income Not classified
## 1765 -64.706 32.3293 High income Not classified
## 1766 -64.706 32.3293 High income Not classified
## 1767 -64.706 32.3293 High income Not classified
## 1768 -64.706 32.3293 High income Not classified
## 1769 -64.706 32.3293 High income Not classified
## 1770 -64.706 32.3293 High income Not classified
## 1771 -64.706 32.3293 High income Not classified
## 1772 -64.706 32.3293 High income Not classified
## 1773 -64.706 32.3293 High income Not classified
## 1774 -64.706 32.3293 High income Not classified
## 1775 -64.706 32.3293 High income Not classified
## 1776 -64.706 32.3293 High income Not classified
## 1777 -64.706 32.3293 High income Not classified
## 1778 -64.706 32.3293 High income Not classified
## 1779 -64.706 32.3293 High income Not classified
## 1780 -64.706 32.3293 High income Not classified
## 1781 -64.706 32.3293 High income Not classified
## 1782 -64.706 32.3293 High income Not classified
## 1783 -64.706 32.3293 High income Not classified
## 1784 -64.706 32.3293 High income Not classified
## 1785 -64.706 32.3293 High income Not classified
## 1786 -64.706 32.3293 High income Not classified
## 1787 -64.706 32.3293 High income Not classified
## 1788 -64.706 32.3293 High income Not classified
## 1789 -64.706 32.3293 High income Not classified
## 1790 -64.706 32.3293 High income Not classified
## 1791 -64.706 32.3293 High income Not classified
## 1792 -64.706 32.3293 High income Not classified
## 1793 -64.706 32.3293 High income Not classified
## 1794 -64.706 32.3293 High income Not classified
## 1795 -64.706 32.3293 High income Not classified
## 1796 -64.706 32.3293 High income Not classified
## 1797 -64.706 32.3293 High income Not classified
## 1798 -64.706 32.3293 High income Not classified
## 1799 114.946 4.94199 High income Not classified
## 1800 114.946 4.94199 High income Not classified
## 1801 114.946 4.94199 High income Not classified
## 1802 114.946 4.94199 High income Not classified
## 1803 114.946 4.94199 High income Not classified
## 1804 114.946 4.94199 High income Not classified
## 1805 114.946 4.94199 High income Not classified
## 1806 114.946 4.94199 High income Not classified
## 1807 114.946 4.94199 High income Not classified
## 1808 114.946 4.94199 High income Not classified
## 1809 114.946 4.94199 High income Not classified
## 1810 114.946 4.94199 High income Not classified
## 1811 114.946 4.94199 High income Not classified
## 1812 114.946 4.94199 High income Not classified
## 1813 114.946 4.94199 High income Not classified
## 1814 114.946 4.94199 High income Not classified
## 1815 114.946 4.94199 High income Not classified
## 1816 114.946 4.94199 High income Not classified
## 1817 114.946 4.94199 High income Not classified
## 1818 114.946 4.94199 High income Not classified
## 1819 114.946 4.94199 High income Not classified
## 1820 114.946 4.94199 High income Not classified
## 1821 114.946 4.94199 High income Not classified
## 1822 114.946 4.94199 High income Not classified
## 1823 114.946 4.94199 High income Not classified
## 1824 114.946 4.94199 High income Not classified
## 1825 114.946 4.94199 High income Not classified
## 1826 114.946 4.94199 High income Not classified
## 1827 114.946 4.94199 High income Not classified
## 1828 114.946 4.94199 High income Not classified
## 1829 114.946 4.94199 High income Not classified
## 1830 114.946 4.94199 High income Not classified
## 1831 114.946 4.94199 High income Not classified
## 1832 114.946 4.94199 High income Not classified
## 1833 114.946 4.94199 High income Not classified
## 1834 114.946 4.94199 High income Not classified
## 1835 114.946 4.94199 High income Not classified
## 1836 114.946 4.94199 High income Not classified
## 1837 114.946 4.94199 High income Not classified
## 1838 114.946 4.94199 High income Not classified
## 1839 114.946 4.94199 High income Not classified
## 1840 114.946 4.94199 High income Not classified
## 1841 114.946 4.94199 High income Not classified
## 1842 114.946 4.94199 High income Not classified
## 1843 114.946 4.94199 High income Not classified
## 1844 114.946 4.94199 High income Not classified
## 1845 114.946 4.94199 High income Not classified
## 1846 114.946 4.94199 High income Not classified
## 1847 114.946 4.94199 High income Not classified
## 1848 114.946 4.94199 High income Not classified
## 1849 114.946 4.94199 High income Not classified
## 1850 114.946 4.94199 High income Not classified
## 1851 114.946 4.94199 High income Not classified
## 1852 114.946 4.94199 High income Not classified
## 1853 114.946 4.94199 High income Not classified
## 1854 114.946 4.94199 High income Not classified
## 1855 114.946 4.94199 High income Not classified
## 1856 114.946 4.94199 High income Not classified
## 1857 114.946 4.94199 High income Not classified
## 1858 114.946 4.94199 High income Not classified
## 1859 114.946 4.94199 High income Not classified
## 1860 114.946 4.94199 High income Not classified
## 1861 -66.1936 -13.9908 Lower middle income IBRD
## 1862 -66.1936 -13.9908 Lower middle income IBRD
## 1863 -66.1936 -13.9908 Lower middle income IBRD
## 1864 -66.1936 -13.9908 Lower middle income IBRD
## 1865 -66.1936 -13.9908 Lower middle income IBRD
## 1866 -66.1936 -13.9908 Lower middle income IBRD
## 1867 -66.1936 -13.9908 Lower middle income IBRD
## 1868 -66.1936 -13.9908 Lower middle income IBRD
## 1869 -66.1936 -13.9908 Lower middle income IBRD
## 1870 -66.1936 -13.9908 Lower middle income IBRD
## 1871 -66.1936 -13.9908 Lower middle income IBRD
## 1872 -66.1936 -13.9908 Lower middle income IBRD
## 1873 -66.1936 -13.9908 Lower middle income IBRD
## 1874 -66.1936 -13.9908 Lower middle income IBRD
## 1875 -66.1936 -13.9908 Lower middle income IBRD
## 1876 -66.1936 -13.9908 Lower middle income IBRD
## 1877 -66.1936 -13.9908 Lower middle income IBRD
## 1878 -66.1936 -13.9908 Lower middle income IBRD
## 1879 -66.1936 -13.9908 Lower middle income IBRD
## 1880 -66.1936 -13.9908 Lower middle income IBRD
## 1881 -66.1936 -13.9908 Lower middle income IBRD
## 1882 -66.1936 -13.9908 Lower middle income IBRD
## 1883 -66.1936 -13.9908 Lower middle income IBRD
## 1884 -66.1936 -13.9908 Lower middle income IBRD
## 1885 -66.1936 -13.9908 Lower middle income IBRD
## 1886 -66.1936 -13.9908 Lower middle income IBRD
## 1887 -66.1936 -13.9908 Lower middle income IBRD
## 1888 -66.1936 -13.9908 Lower middle income IBRD
## 1889 -66.1936 -13.9908 Lower middle income IBRD
## 1890 -66.1936 -13.9908 Lower middle income IBRD
## 1891 -66.1936 -13.9908 Lower middle income IBRD
## 1892 -66.1936 -13.9908 Lower middle income IBRD
## 1893 -66.1936 -13.9908 Lower middle income IBRD
## 1894 -66.1936 -13.9908 Lower middle income IBRD
## 1895 -66.1936 -13.9908 Lower middle income IBRD
## 1896 -66.1936 -13.9908 Lower middle income IBRD
## 1897 -66.1936 -13.9908 Lower middle income IBRD
## 1898 -66.1936 -13.9908 Lower middle income IBRD
## 1899 -66.1936 -13.9908 Lower middle income IBRD
## 1900 -66.1936 -13.9908 Lower middle income IBRD
## 1901 -66.1936 -13.9908 Lower middle income IBRD
## 1902 -66.1936 -13.9908 Lower middle income IBRD
## 1903 -66.1936 -13.9908 Lower middle income IBRD
## 1904 -66.1936 -13.9908 Lower middle income IBRD
## 1905 -66.1936 -13.9908 Lower middle income IBRD
## 1906 -66.1936 -13.9908 Lower middle income IBRD
## 1907 -66.1936 -13.9908 Lower middle income IBRD
## 1908 -66.1936 -13.9908 Lower middle income IBRD
## 1909 -66.1936 -13.9908 Lower middle income IBRD
## 1910 -66.1936 -13.9908 Lower middle income IBRD
## 1911 -66.1936 -13.9908 Lower middle income IBRD
## 1912 -66.1936 -13.9908 Lower middle income IBRD
## 1913 -66.1936 -13.9908 Lower middle income IBRD
## 1914 -66.1936 -13.9908 Lower middle income IBRD
## 1915 -66.1936 -13.9908 Lower middle income IBRD
## 1916 -66.1936 -13.9908 Lower middle income IBRD
## 1917 -66.1936 -13.9908 Lower middle income IBRD
## 1918 -66.1936 -13.9908 Lower middle income IBRD
## 1919 -66.1936 -13.9908 Lower middle income IBRD
## 1920 -66.1936 -13.9908 Lower middle income IBRD
## 1921 -66.1936 -13.9908 Lower middle income IBRD
## 1922 -66.1936 -13.9908 Lower middle income IBRD
## 1923 -47.9292 -15.7801 Upper middle income IBRD
## 1924 -47.9292 -15.7801 Upper middle income IBRD
## 1925 -47.9292 -15.7801 Upper middle income IBRD
## 1926 -47.9292 -15.7801 Upper middle income IBRD
## 1927 -47.9292 -15.7801 Upper middle income IBRD
## 1928 -47.9292 -15.7801 Upper middle income IBRD
## 1929 -47.9292 -15.7801 Upper middle income IBRD
## 1930 -47.9292 -15.7801 Upper middle income IBRD
## 1931 -47.9292 -15.7801 Upper middle income IBRD
## 1932 -47.9292 -15.7801 Upper middle income IBRD
## 1933 -47.9292 -15.7801 Upper middle income IBRD
## 1934 -47.9292 -15.7801 Upper middle income IBRD
## 1935 -47.9292 -15.7801 Upper middle income IBRD
## 1936 -47.9292 -15.7801 Upper middle income IBRD
## 1937 -47.9292 -15.7801 Upper middle income IBRD
## 1938 -47.9292 -15.7801 Upper middle income IBRD
## 1939 -47.9292 -15.7801 Upper middle income IBRD
## 1940 -47.9292 -15.7801 Upper middle income IBRD
## 1941 -47.9292 -15.7801 Upper middle income IBRD
## 1942 -47.9292 -15.7801 Upper middle income IBRD
## 1943 -47.9292 -15.7801 Upper middle income IBRD
## 1944 -47.9292 -15.7801 Upper middle income IBRD
## 1945 -47.9292 -15.7801 Upper middle income IBRD
## 1946 -47.9292 -15.7801 Upper middle income IBRD
## 1947 -47.9292 -15.7801 Upper middle income IBRD
## 1948 -47.9292 -15.7801 Upper middle income IBRD
## 1949 -47.9292 -15.7801 Upper middle income IBRD
## 1950 -47.9292 -15.7801 Upper middle income IBRD
## 1951 -47.9292 -15.7801 Upper middle income IBRD
## 1952 -47.9292 -15.7801 Upper middle income IBRD
## 1953 -47.9292 -15.7801 Upper middle income IBRD
## 1954 -47.9292 -15.7801 Upper middle income IBRD
## 1955 -47.9292 -15.7801 Upper middle income IBRD
## 1956 -47.9292 -15.7801 Upper middle income IBRD
## 1957 -47.9292 -15.7801 Upper middle income IBRD
## 1958 -47.9292 -15.7801 Upper middle income IBRD
## 1959 -47.9292 -15.7801 Upper middle income IBRD
## 1960 -47.9292 -15.7801 Upper middle income IBRD
## 1961 -47.9292 -15.7801 Upper middle income IBRD
## 1962 -47.9292 -15.7801 Upper middle income IBRD
## 1963 -47.9292 -15.7801 Upper middle income IBRD
## 1964 -47.9292 -15.7801 Upper middle income IBRD
## 1965 -47.9292 -15.7801 Upper middle income IBRD
## 1966 -47.9292 -15.7801 Upper middle income IBRD
## 1967 -47.9292 -15.7801 Upper middle income IBRD
## 1968 -47.9292 -15.7801 Upper middle income IBRD
## 1969 -47.9292 -15.7801 Upper middle income IBRD
## 1970 -47.9292 -15.7801 Upper middle income IBRD
## 1971 -47.9292 -15.7801 Upper middle income IBRD
## 1972 -47.9292 -15.7801 Upper middle income IBRD
## 1973 -47.9292 -15.7801 Upper middle income IBRD
## 1974 -47.9292 -15.7801 Upper middle income IBRD
## 1975 -47.9292 -15.7801 Upper middle income IBRD
## 1976 -47.9292 -15.7801 Upper middle income IBRD
## 1977 -47.9292 -15.7801 Upper middle income IBRD
## 1978 -47.9292 -15.7801 Upper middle income IBRD
## 1979 -47.9292 -15.7801 Upper middle income IBRD
## 1980 -47.9292 -15.7801 Upper middle income IBRD
## 1981 -47.9292 -15.7801 Upper middle income IBRD
## 1982 -47.9292 -15.7801 Upper middle income IBRD
## 1983 -47.9292 -15.7801 Upper middle income IBRD
## 1984 -47.9292 -15.7801 Upper middle income IBRD
## 1985 -77.339 25.0661 High income Not classified
## 1986 -77.339 25.0661 High income Not classified
## 1987 -77.339 25.0661 High income Not classified
## 1988 -77.339 25.0661 High income Not classified
## 1989 -77.339 25.0661 High income Not classified
## 1990 -77.339 25.0661 High income Not classified
## 1991 -77.339 25.0661 High income Not classified
## 1992 -77.339 25.0661 High income Not classified
## 1993 -77.339 25.0661 High income Not classified
## 1994 -77.339 25.0661 High income Not classified
## 1995 -77.339 25.0661 High income Not classified
## 1996 -77.339 25.0661 High income Not classified
## 1997 -77.339 25.0661 High income Not classified
## 1998 -77.339 25.0661 High income Not classified
## 1999 -77.339 25.0661 High income Not classified
## 2000 -77.339 25.0661 High income Not classified
## 2001 -77.339 25.0661 High income Not classified
## 2002 -77.339 25.0661 High income Not classified
## 2003 -77.339 25.0661 High income Not classified
## 2004 -77.339 25.0661 High income Not classified
## 2005 -77.339 25.0661 High income Not classified
## 2006 -77.339 25.0661 High income Not classified
## 2007 -77.339 25.0661 High income Not classified
## 2008 -77.339 25.0661 High income Not classified
## 2009 -77.339 25.0661 High income Not classified
## 2010 -77.339 25.0661 High income Not classified
## 2011 -77.339 25.0661 High income Not classified
## 2012 -77.339 25.0661 High income Not classified
## 2013 -77.339 25.0661 High income Not classified
## 2014 -77.339 25.0661 High income Not classified
## 2015 -77.339 25.0661 High income Not classified
## 2016 -77.339 25.0661 High income Not classified
## 2017 -77.339 25.0661 High income Not classified
## 2018 -77.339 25.0661 High income Not classified
## 2019 -77.339 25.0661 High income Not classified
## 2020 -77.339 25.0661 High income Not classified
## 2021 -77.339 25.0661 High income Not classified
## 2022 -77.339 25.0661 High income Not classified
## 2023 -77.339 25.0661 High income Not classified
## 2024 -77.339 25.0661 High income Not classified
## 2025 -77.339 25.0661 High income Not classified
## 2026 -77.339 25.0661 High income Not classified
## 2027 -77.339 25.0661 High income Not classified
## 2028 -77.339 25.0661 High income Not classified
## 2029 -77.339 25.0661 High income Not classified
## 2030 -77.339 25.0661 High income Not classified
## 2031 -77.339 25.0661 High income Not classified
## 2032 -77.339 25.0661 High income Not classified
## 2033 -77.339 25.0661 High income Not classified
## 2034 -77.339 25.0661 High income Not classified
## 2035 -77.339 25.0661 High income Not classified
## 2036 -77.339 25.0661 High income Not classified
## 2037 -77.339 25.0661 High income Not classified
## 2038 -77.339 25.0661 High income Not classified
## 2039 -77.339 25.0661 High income Not classified
## 2040 -77.339 25.0661 High income Not classified
## 2041 -77.339 25.0661 High income Not classified
## 2042 -77.339 25.0661 High income Not classified
## 2043 -77.339 25.0661 High income Not classified
## 2044 -77.339 25.0661 High income Not classified
## 2045 -77.339 25.0661 High income Not classified
## 2046 -77.339 25.0661 High income Not classified
## 2047 89.6177 27.5768 Lower middle income IDA
## 2048 89.6177 27.5768 Lower middle income IDA
## 2049 89.6177 27.5768 Lower middle income IDA
## 2050 89.6177 27.5768 Lower middle income IDA
## 2051 89.6177 27.5768 Lower middle income IDA
## 2052 89.6177 27.5768 Lower middle income IDA
## 2053 89.6177 27.5768 Lower middle income IDA
## 2054 89.6177 27.5768 Lower middle income IDA
## 2055 89.6177 27.5768 Lower middle income IDA
## 2056 89.6177 27.5768 Lower middle income IDA
## 2057 89.6177 27.5768 Lower middle income IDA
## 2058 89.6177 27.5768 Lower middle income IDA
## 2059 89.6177 27.5768 Lower middle income IDA
## 2060 89.6177 27.5768 Lower middle income IDA
## 2061 89.6177 27.5768 Lower middle income IDA
## 2062 89.6177 27.5768 Lower middle income IDA
## 2063 89.6177 27.5768 Lower middle income IDA
## 2064 89.6177 27.5768 Lower middle income IDA
## 2065 89.6177 27.5768 Lower middle income IDA
## 2066 89.6177 27.5768 Lower middle income IDA
## 2067 89.6177 27.5768 Lower middle income IDA
## 2068 89.6177 27.5768 Lower middle income IDA
## 2069 89.6177 27.5768 Lower middle income IDA
## 2070 89.6177 27.5768 Lower middle income IDA
## 2071 89.6177 27.5768 Lower middle income IDA
## 2072 89.6177 27.5768 Lower middle income IDA
## 2073 89.6177 27.5768 Lower middle income IDA
## 2074 89.6177 27.5768 Lower middle income IDA
## 2075 89.6177 27.5768 Lower middle income IDA
## 2076 89.6177 27.5768 Lower middle income IDA
## 2077 89.6177 27.5768 Lower middle income IDA
## 2078 89.6177 27.5768 Lower middle income IDA
## 2079 89.6177 27.5768 Lower middle income IDA
## 2080 89.6177 27.5768 Lower middle income IDA
## 2081 89.6177 27.5768 Lower middle income IDA
## 2082 89.6177 27.5768 Lower middle income IDA
## 2083 89.6177 27.5768 Lower middle income IDA
## 2084 89.6177 27.5768 Lower middle income IDA
## 2085 89.6177 27.5768 Lower middle income IDA
## 2086 89.6177 27.5768 Lower middle income IDA
## 2087 89.6177 27.5768 Lower middle income IDA
## 2088 89.6177 27.5768 Lower middle income IDA
## 2089 89.6177 27.5768 Lower middle income IDA
## 2090 89.6177 27.5768 Lower middle income IDA
## 2091 89.6177 27.5768 Lower middle income IDA
## 2092 89.6177 27.5768 Lower middle income IDA
## 2093 89.6177 27.5768 Lower middle income IDA
## 2094 89.6177 27.5768 Lower middle income IDA
## 2095 89.6177 27.5768 Lower middle income IDA
## 2096 89.6177 27.5768 Lower middle income IDA
## 2097 89.6177 27.5768 Lower middle income IDA
## 2098 89.6177 27.5768 Lower middle income IDA
## 2099 89.6177 27.5768 Lower middle income IDA
## 2100 89.6177 27.5768 Lower middle income IDA
## 2101 89.6177 27.5768 Lower middle income IDA
## 2102 89.6177 27.5768 Lower middle income IDA
## 2103 89.6177 27.5768 Lower middle income IDA
## 2104 89.6177 27.5768 Lower middle income IDA
## 2105 89.6177 27.5768 Lower middle income IDA
## 2106 89.6177 27.5768 Lower middle income IDA
## 2107 89.6177 27.5768 Lower middle income IDA
## 2108 89.6177 27.5768 Lower middle income IDA
## 2109 25.9201 -24.6544 Upper middle income IBRD
## 2110 25.9201 -24.6544 Upper middle income IBRD
## 2111 25.9201 -24.6544 Upper middle income IBRD
## 2112 25.9201 -24.6544 Upper middle income IBRD
## 2113 25.9201 -24.6544 Upper middle income IBRD
## 2114 25.9201 -24.6544 Upper middle income IBRD
## 2115 25.9201 -24.6544 Upper middle income IBRD
## 2116 25.9201 -24.6544 Upper middle income IBRD
## 2117 25.9201 -24.6544 Upper middle income IBRD
## 2118 25.9201 -24.6544 Upper middle income IBRD
## 2119 25.9201 -24.6544 Upper middle income IBRD
## 2120 25.9201 -24.6544 Upper middle income IBRD
## 2121 25.9201 -24.6544 Upper middle income IBRD
## 2122 25.9201 -24.6544 Upper middle income IBRD
## 2123 25.9201 -24.6544 Upper middle income IBRD
## 2124 25.9201 -24.6544 Upper middle income IBRD
## 2125 25.9201 -24.6544 Upper middle income IBRD
## 2126 25.9201 -24.6544 Upper middle income IBRD
## 2127 25.9201 -24.6544 Upper middle income IBRD
## 2128 25.9201 -24.6544 Upper middle income IBRD
## 2129 25.9201 -24.6544 Upper middle income IBRD
## 2130 25.9201 -24.6544 Upper middle income IBRD
## 2131 25.9201 -24.6544 Upper middle income IBRD
## 2132 25.9201 -24.6544 Upper middle income IBRD
## 2133 25.9201 -24.6544 Upper middle income IBRD
## 2134 25.9201 -24.6544 Upper middle income IBRD
## 2135 25.9201 -24.6544 Upper middle income IBRD
## 2136 25.9201 -24.6544 Upper middle income IBRD
## 2137 25.9201 -24.6544 Upper middle income IBRD
## 2138 25.9201 -24.6544 Upper middle income IBRD
## 2139 25.9201 -24.6544 Upper middle income IBRD
## 2140 25.9201 -24.6544 Upper middle income IBRD
## 2141 25.9201 -24.6544 Upper middle income IBRD
## 2142 25.9201 -24.6544 Upper middle income IBRD
## 2143 25.9201 -24.6544 Upper middle income IBRD
## 2144 25.9201 -24.6544 Upper middle income IBRD
## 2145 25.9201 -24.6544 Upper middle income IBRD
## 2146 25.9201 -24.6544 Upper middle income IBRD
## 2147 25.9201 -24.6544 Upper middle income IBRD
## 2148 25.9201 -24.6544 Upper middle income IBRD
## 2149 25.9201 -24.6544 Upper middle income IBRD
## 2150 25.9201 -24.6544 Upper middle income IBRD
## 2151 25.9201 -24.6544 Upper middle income IBRD
## 2152 25.9201 -24.6544 Upper middle income IBRD
## 2153 25.9201 -24.6544 Upper middle income IBRD
## 2154 25.9201 -24.6544 Upper middle income IBRD
## 2155 25.9201 -24.6544 Upper middle income IBRD
## 2156 25.9201 -24.6544 Upper middle income IBRD
## 2157 25.9201 -24.6544 Upper middle income IBRD
## 2158 25.9201 -24.6544 Upper middle income IBRD
## 2159 25.9201 -24.6544 Upper middle income IBRD
## 2160 25.9201 -24.6544 Upper middle income IBRD
## 2161 25.9201 -24.6544 Upper middle income IBRD
## 2162 25.9201 -24.6544 Upper middle income IBRD
## 2163 25.9201 -24.6544 Upper middle income IBRD
## 2164 25.9201 -24.6544 Upper middle income IBRD
## 2165 25.9201 -24.6544 Upper middle income IBRD
## 2166 25.9201 -24.6544 Upper middle income IBRD
## 2167 25.9201 -24.6544 Upper middle income IBRD
## 2168 25.9201 -24.6544 Upper middle income IBRD
## 2169 25.9201 -24.6544 Upper middle income IBRD
## 2170 25.9201 -24.6544 Upper middle income IBRD
## 2171 27.5766 53.9678 Upper middle income IBRD
## 2172 27.5766 53.9678 Upper middle income IBRD
## 2173 27.5766 53.9678 Upper middle income IBRD
## 2174 27.5766 53.9678 Upper middle income IBRD
## 2175 27.5766 53.9678 Upper middle income IBRD
## 2176 27.5766 53.9678 Upper middle income IBRD
## 2177 27.5766 53.9678 Upper middle income IBRD
## 2178 27.5766 53.9678 Upper middle income IBRD
## 2179 27.5766 53.9678 Upper middle income IBRD
## 2180 27.5766 53.9678 Upper middle income IBRD
## 2181 27.5766 53.9678 Upper middle income IBRD
## 2182 27.5766 53.9678 Upper middle income IBRD
## 2183 27.5766 53.9678 Upper middle income IBRD
## 2184 27.5766 53.9678 Upper middle income IBRD
## 2185 27.5766 53.9678 Upper middle income IBRD
## 2186 27.5766 53.9678 Upper middle income IBRD
## 2187 27.5766 53.9678 Upper middle income IBRD
## 2188 27.5766 53.9678 Upper middle income IBRD
## 2189 27.5766 53.9678 Upper middle income IBRD
## 2190 27.5766 53.9678 Upper middle income IBRD
## 2191 27.5766 53.9678 Upper middle income IBRD
## 2192 27.5766 53.9678 Upper middle income IBRD
## 2193 27.5766 53.9678 Upper middle income IBRD
## 2194 27.5766 53.9678 Upper middle income IBRD
## 2195 27.5766 53.9678 Upper middle income IBRD
## 2196 27.5766 53.9678 Upper middle income IBRD
## 2197 27.5766 53.9678 Upper middle income IBRD
## 2198 27.5766 53.9678 Upper middle income IBRD
## 2199 27.5766 53.9678 Upper middle income IBRD
## 2200 27.5766 53.9678 Upper middle income IBRD
## 2201 27.5766 53.9678 Upper middle income IBRD
## 2202 27.5766 53.9678 Upper middle income IBRD
## 2203 27.5766 53.9678 Upper middle income IBRD
## 2204 27.5766 53.9678 Upper middle income IBRD
## 2205 27.5766 53.9678 Upper middle income IBRD
## 2206 27.5766 53.9678 Upper middle income IBRD
## 2207 27.5766 53.9678 Upper middle income IBRD
## 2208 27.5766 53.9678 Upper middle income IBRD
## 2209 27.5766 53.9678 Upper middle income IBRD
## 2210 27.5766 53.9678 Upper middle income IBRD
## 2211 27.5766 53.9678 Upper middle income IBRD
## 2212 27.5766 53.9678 Upper middle income IBRD
## 2213 27.5766 53.9678 Upper middle income IBRD
## 2214 27.5766 53.9678 Upper middle income IBRD
## 2215 27.5766 53.9678 Upper middle income IBRD
## 2216 27.5766 53.9678 Upper middle income IBRD
## 2217 27.5766 53.9678 Upper middle income IBRD
## 2218 27.5766 53.9678 Upper middle income IBRD
## 2219 27.5766 53.9678 Upper middle income IBRD
## 2220 27.5766 53.9678 Upper middle income IBRD
## 2221 27.5766 53.9678 Upper middle income IBRD
## 2222 27.5766 53.9678 Upper middle income IBRD
## 2223 27.5766 53.9678 Upper middle income IBRD
## 2224 27.5766 53.9678 Upper middle income IBRD
## 2225 27.5766 53.9678 Upper middle income IBRD
## 2226 27.5766 53.9678 Upper middle income IBRD
## 2227 27.5766 53.9678 Upper middle income IBRD
## 2228 27.5766 53.9678 Upper middle income IBRD
## 2229 27.5766 53.9678 Upper middle income IBRD
## 2230 27.5766 53.9678 Upper middle income IBRD
## 2231 27.5766 53.9678 Upper middle income IBRD
## 2232 27.5766 53.9678 Upper middle income IBRD
## 2233 -88.7713 17.2534 Upper middle income IBRD
## 2234 -88.7713 17.2534 Upper middle income IBRD
## 2235 -88.7713 17.2534 Upper middle income IBRD
## 2236 -88.7713 17.2534 Upper middle income IBRD
## 2237 -88.7713 17.2534 Upper middle income IBRD
## 2238 -88.7713 17.2534 Upper middle income IBRD
## 2239 -88.7713 17.2534 Upper middle income IBRD
## 2240 -88.7713 17.2534 Upper middle income IBRD
## 2241 -88.7713 17.2534 Upper middle income IBRD
## 2242 -88.7713 17.2534 Upper middle income IBRD
## 2243 -88.7713 17.2534 Upper middle income IBRD
## 2244 -88.7713 17.2534 Upper middle income IBRD
## 2245 -88.7713 17.2534 Upper middle income IBRD
## 2246 -88.7713 17.2534 Upper middle income IBRD
## 2247 -88.7713 17.2534 Upper middle income IBRD
## 2248 -88.7713 17.2534 Upper middle income IBRD
## 2249 -88.7713 17.2534 Upper middle income IBRD
## 2250 -88.7713 17.2534 Upper middle income IBRD
## 2251 -88.7713 17.2534 Upper middle income IBRD
## 2252 -88.7713 17.2534 Upper middle income IBRD
## 2253 -88.7713 17.2534 Upper middle income IBRD
## 2254 -88.7713 17.2534 Upper middle income IBRD
## 2255 -88.7713 17.2534 Upper middle income IBRD
## 2256 -88.7713 17.2534 Upper middle income IBRD
## 2257 -88.7713 17.2534 Upper middle income IBRD
## 2258 -88.7713 17.2534 Upper middle income IBRD
## 2259 -88.7713 17.2534 Upper middle income IBRD
## 2260 -88.7713 17.2534 Upper middle income IBRD
## 2261 -88.7713 17.2534 Upper middle income IBRD
## 2262 -88.7713 17.2534 Upper middle income IBRD
## 2263 -88.7713 17.2534 Upper middle income IBRD
## 2264 -88.7713 17.2534 Upper middle income IBRD
## 2265 -88.7713 17.2534 Upper middle income IBRD
## 2266 -88.7713 17.2534 Upper middle income IBRD
## 2267 -88.7713 17.2534 Upper middle income IBRD
## 2268 -88.7713 17.2534 Upper middle income IBRD
## 2269 -88.7713 17.2534 Upper middle income IBRD
## 2270 -88.7713 17.2534 Upper middle income IBRD
## 2271 -88.7713 17.2534 Upper middle income IBRD
## 2272 -88.7713 17.2534 Upper middle income IBRD
## 2273 -88.7713 17.2534 Upper middle income IBRD
## 2274 -88.7713 17.2534 Upper middle income IBRD
## 2275 -88.7713 17.2534 Upper middle income IBRD
## 2276 -88.7713 17.2534 Upper middle income IBRD
## 2277 -88.7713 17.2534 Upper middle income IBRD
## 2278 -88.7713 17.2534 Upper middle income IBRD
## 2279 -88.7713 17.2534 Upper middle income IBRD
## 2280 -88.7713 17.2534 Upper middle income IBRD
## 2281 -88.7713 17.2534 Upper middle income IBRD
## 2282 -88.7713 17.2534 Upper middle income IBRD
## 2283 -88.7713 17.2534 Upper middle income IBRD
## 2284 -88.7713 17.2534 Upper middle income IBRD
## 2285 -88.7713 17.2534 Upper middle income IBRD
## 2286 -88.7713 17.2534 Upper middle income IBRD
## 2287 -88.7713 17.2534 Upper middle income IBRD
## 2288 -88.7713 17.2534 Upper middle income IBRD
## 2289 -88.7713 17.2534 Upper middle income IBRD
## 2290 -88.7713 17.2534 Upper middle income IBRD
## 2291 -88.7713 17.2534 Upper middle income IBRD
## 2292 -88.7713 17.2534 Upper middle income IBRD
## 2293 -88.7713 17.2534 Upper middle income IBRD
## 2294 -88.7713 17.2534 Upper middle income IBRD
## 2295 -75.6919 45.4215 High income Not classified
## 2296 -75.6919 45.4215 High income Not classified
## 2297 -75.6919 45.4215 High income Not classified
## 2298 -75.6919 45.4215 High income Not classified
## 2299 -75.6919 45.4215 High income Not classified
## 2300 -75.6919 45.4215 High income Not classified
## 2301 -75.6919 45.4215 High income Not classified
## 2302 -75.6919 45.4215 High income Not classified
## 2303 -75.6919 45.4215 High income Not classified
## 2304 -75.6919 45.4215 High income Not classified
## 2305 -75.6919 45.4215 High income Not classified
## 2306 -75.6919 45.4215 High income Not classified
## 2307 -75.6919 45.4215 High income Not classified
## 2308 -75.6919 45.4215 High income Not classified
## 2309 -75.6919 45.4215 High income Not classified
## 2310 -75.6919 45.4215 High income Not classified
## 2311 -75.6919 45.4215 High income Not classified
## 2312 -75.6919 45.4215 High income Not classified
## 2313 -75.6919 45.4215 High income Not classified
## 2314 -75.6919 45.4215 High income Not classified
## 2315 -75.6919 45.4215 High income Not classified
## 2316 -75.6919 45.4215 High income Not classified
## 2317 -75.6919 45.4215 High income Not classified
## 2318 -75.6919 45.4215 High income Not classified
## 2319 -75.6919 45.4215 High income Not classified
## 2320 -75.6919 45.4215 High income Not classified
## 2321 -75.6919 45.4215 High income Not classified
## 2322 -75.6919 45.4215 High income Not classified
## 2323 -75.6919 45.4215 High income Not classified
## 2324 -75.6919 45.4215 High income Not classified
## 2325 -75.6919 45.4215 High income Not classified
## 2326 -75.6919 45.4215 High income Not classified
## 2327 -75.6919 45.4215 High income Not classified
## 2328 -75.6919 45.4215 High income Not classified
## 2329 -75.6919 45.4215 High income Not classified
## 2330 -75.6919 45.4215 High income Not classified
## 2331 -75.6919 45.4215 High income Not classified
## 2332 -75.6919 45.4215 High income Not classified
## 2333 -75.6919 45.4215 High income Not classified
## 2334 -75.6919 45.4215 High income Not classified
## 2335 -75.6919 45.4215 High income Not classified
## 2336 -75.6919 45.4215 High income Not classified
## 2337 -75.6919 45.4215 High income Not classified
## 2338 -75.6919 45.4215 High income Not classified
## 2339 -75.6919 45.4215 High income Not classified
## 2340 -75.6919 45.4215 High income Not classified
## 2341 -75.6919 45.4215 High income Not classified
## 2342 -75.6919 45.4215 High income Not classified
## 2343 -75.6919 45.4215 High income Not classified
## 2344 -75.6919 45.4215 High income Not classified
## 2345 -75.6919 45.4215 High income Not classified
## 2346 -75.6919 45.4215 High income Not classified
## 2347 -75.6919 45.4215 High income Not classified
## 2348 -75.6919 45.4215 High income Not classified
## 2349 -75.6919 45.4215 High income Not classified
## 2350 -75.6919 45.4215 High income Not classified
## 2351 -75.6919 45.4215 High income Not classified
## 2352 -75.6919 45.4215 High income Not classified
## 2353 -75.6919 45.4215 High income Not classified
## 2354 -75.6919 45.4215 High income Not classified
## 2355 -75.6919 45.4215 High income Not classified
## 2356 -75.6919 45.4215 High income Not classified
## 2357 15.3222 -4.325 Low income IDA
## 2358 15.3222 -4.325 Low income IDA
## 2359 15.3222 -4.325 Low income IDA
## 2360 15.3222 -4.325 Low income IDA
## 2361 15.3222 -4.325 Low income IDA
## 2362 15.3222 -4.325 Low income IDA
## 2363 15.3222 -4.325 Low income IDA
## 2364 15.3222 -4.325 Low income IDA
## 2365 15.3222 -4.325 Low income IDA
## 2366 15.3222 -4.325 Low income IDA
## 2367 15.3222 -4.325 Low income IDA
## 2368 15.3222 -4.325 Low income IDA
## 2369 15.3222 -4.325 Low income IDA
## 2370 15.3222 -4.325 Low income IDA
## 2371 15.3222 -4.325 Low income IDA
## 2372 15.3222 -4.325 Low income IDA
## 2373 15.3222 -4.325 Low income IDA
## 2374 15.3222 -4.325 Low income IDA
## 2375 15.3222 -4.325 Low income IDA
## 2376 15.3222 -4.325 Low income IDA
## 2377 15.3222 -4.325 Low income IDA
## 2378 15.3222 -4.325 Low income IDA
## 2379 15.3222 -4.325 Low income IDA
## 2380 15.3222 -4.325 Low income IDA
## 2381 15.3222 -4.325 Low income IDA
## 2382 15.3222 -4.325 Low income IDA
## 2383 15.3222 -4.325 Low income IDA
## 2384 15.3222 -4.325 Low income IDA
## 2385 15.3222 -4.325 Low income IDA
## 2386 15.3222 -4.325 Low income IDA
## 2387 15.3222 -4.325 Low income IDA
## 2388 15.3222 -4.325 Low income IDA
## 2389 15.3222 -4.325 Low income IDA
## 2390 15.3222 -4.325 Low income IDA
## 2391 15.3222 -4.325 Low income IDA
## 2392 15.3222 -4.325 Low income IDA
## 2393 15.3222 -4.325 Low income IDA
## 2394 15.3222 -4.325 Low income IDA
## 2395 15.3222 -4.325 Low income IDA
## 2396 15.3222 -4.325 Low income IDA
## 2397 15.3222 -4.325 Low income IDA
## 2398 15.3222 -4.325 Low income IDA
## 2399 15.3222 -4.325 Low income IDA
## 2400 15.3222 -4.325 Low income IDA
## 2401 15.3222 -4.325 Low income IDA
## 2402 15.3222 -4.325 Low income IDA
## 2403 15.3222 -4.325 Low income IDA
## 2404 15.3222 -4.325 Low income IDA
## 2405 15.3222 -4.325 Low income IDA
## 2406 15.3222 -4.325 Low income IDA
## 2407 15.3222 -4.325 Low income IDA
## 2408 15.3222 -4.325 Low income IDA
## 2409 15.3222 -4.325 Low income IDA
## 2410 15.3222 -4.325 Low income IDA
## 2411 15.3222 -4.325 Low income IDA
## 2412 15.3222 -4.325 Low income IDA
## 2413 15.3222 -4.325 Low income IDA
## 2414 15.3222 -4.325 Low income IDA
## 2415 15.3222 -4.325 Low income IDA
## 2416 15.3222 -4.325 Low income IDA
## 2417 15.3222 -4.325 Low income IDA
## 2418 15.3222 -4.325 Low income IDA
## 2419 21.6407 5.63056 Low income IDA
## 2420 21.6407 5.63056 Low income IDA
## 2421 21.6407 5.63056 Low income IDA
## 2422 21.6407 5.63056 Low income IDA
## 2423 21.6407 5.63056 Low income IDA
## 2424 21.6407 5.63056 Low income IDA
## 2425 21.6407 5.63056 Low income IDA
## 2426 21.6407 5.63056 Low income IDA
## 2427 21.6407 5.63056 Low income IDA
## 2428 21.6407 5.63056 Low income IDA
## 2429 21.6407 5.63056 Low income IDA
## 2430 21.6407 5.63056 Low income IDA
## 2431 21.6407 5.63056 Low income IDA
## 2432 21.6407 5.63056 Low income IDA
## 2433 21.6407 5.63056 Low income IDA
## 2434 21.6407 5.63056 Low income IDA
## 2435 21.6407 5.63056 Low income IDA
## 2436 21.6407 5.63056 Low income IDA
## 2437 21.6407 5.63056 Low income IDA
## 2438 21.6407 5.63056 Low income IDA
## 2439 21.6407 5.63056 Low income IDA
## 2440 21.6407 5.63056 Low income IDA
## 2441 21.6407 5.63056 Low income IDA
## 2442 21.6407 5.63056 Low income IDA
## 2443 21.6407 5.63056 Low income IDA
## 2444 21.6407 5.63056 Low income IDA
## 2445 21.6407 5.63056 Low income IDA
## 2446 21.6407 5.63056 Low income IDA
## 2447 21.6407 5.63056 Low income IDA
## 2448 21.6407 5.63056 Low income IDA
## 2449 21.6407 5.63056 Low income IDA
## 2450 21.6407 5.63056 Low income IDA
## 2451 21.6407 5.63056 Low income IDA
## 2452 21.6407 5.63056 Low income IDA
## 2453 21.6407 5.63056 Low income IDA
## 2454 21.6407 5.63056 Low income IDA
## 2455 21.6407 5.63056 Low income IDA
## 2456 21.6407 5.63056 Low income IDA
## 2457 21.6407 5.63056 Low income IDA
## 2458 21.6407 5.63056 Low income IDA
## 2459 21.6407 5.63056 Low income IDA
## 2460 21.6407 5.63056 Low income IDA
## 2461 21.6407 5.63056 Low income IDA
## 2462 21.6407 5.63056 Low income IDA
## 2463 21.6407 5.63056 Low income IDA
## 2464 21.6407 5.63056 Low income IDA
## 2465 21.6407 5.63056 Low income IDA
## 2466 21.6407 5.63056 Low income IDA
## 2467 21.6407 5.63056 Low income IDA
## 2468 21.6407 5.63056 Low income IDA
## 2469 21.6407 5.63056 Low income IDA
## 2470 21.6407 5.63056 Low income IDA
## 2471 21.6407 5.63056 Low income IDA
## 2472 21.6407 5.63056 Low income IDA
## 2473 21.6407 5.63056 Low income IDA
## 2474 21.6407 5.63056 Low income IDA
## 2475 21.6407 5.63056 Low income IDA
## 2476 21.6407 5.63056 Low income IDA
## 2477 21.6407 5.63056 Low income IDA
## 2478 21.6407 5.63056 Low income IDA
## 2479 21.6407 5.63056 Low income IDA
## 2480 21.6407 5.63056 Low income IDA
## 2481 15.2662 -4.2767 Lower middle income Blend
## 2482 15.2662 -4.2767 Lower middle income Blend
## 2483 15.2662 -4.2767 Lower middle income Blend
## 2484 15.2662 -4.2767 Lower middle income Blend
## 2485 15.2662 -4.2767 Lower middle income Blend
## 2486 15.2662 -4.2767 Lower middle income Blend
## 2487 15.2662 -4.2767 Lower middle income Blend
## 2488 15.2662 -4.2767 Lower middle income Blend
## 2489 15.2662 -4.2767 Lower middle income Blend
## 2490 15.2662 -4.2767 Lower middle income Blend
## 2491 15.2662 -4.2767 Lower middle income Blend
## 2492 15.2662 -4.2767 Lower middle income Blend
## 2493 15.2662 -4.2767 Lower middle income Blend
## 2494 15.2662 -4.2767 Lower middle income Blend
## 2495 15.2662 -4.2767 Lower middle income Blend
## 2496 15.2662 -4.2767 Lower middle income Blend
## 2497 15.2662 -4.2767 Lower middle income Blend
## 2498 15.2662 -4.2767 Lower middle income Blend
## 2499 15.2662 -4.2767 Lower middle income Blend
## 2500 15.2662 -4.2767 Lower middle income Blend
## 2501 15.2662 -4.2767 Lower middle income Blend
## 2502 15.2662 -4.2767 Lower middle income Blend
## 2503 15.2662 -4.2767 Lower middle income Blend
## 2504 15.2662 -4.2767 Lower middle income Blend
## 2505 15.2662 -4.2767 Lower middle income Blend
## 2506 15.2662 -4.2767 Lower middle income Blend
## 2507 15.2662 -4.2767 Lower middle income Blend
## 2508 15.2662 -4.2767 Lower middle income Blend
## 2509 15.2662 -4.2767 Lower middle income Blend
## 2510 15.2662 -4.2767 Lower middle income Blend
## 2511 15.2662 -4.2767 Lower middle income Blend
## 2512 15.2662 -4.2767 Lower middle income Blend
## 2513 15.2662 -4.2767 Lower middle income Blend
## 2514 15.2662 -4.2767 Lower middle income Blend
## 2515 15.2662 -4.2767 Lower middle income Blend
## 2516 15.2662 -4.2767 Lower middle income Blend
## 2517 15.2662 -4.2767 Lower middle income Blend
## 2518 15.2662 -4.2767 Lower middle income Blend
## 2519 15.2662 -4.2767 Lower middle income Blend
## 2520 15.2662 -4.2767 Lower middle income Blend
## 2521 15.2662 -4.2767 Lower middle income Blend
## 2522 15.2662 -4.2767 Lower middle income Blend
## 2523 15.2662 -4.2767 Lower middle income Blend
## 2524 15.2662 -4.2767 Lower middle income Blend
## 2525 15.2662 -4.2767 Lower middle income Blend
## 2526 15.2662 -4.2767 Lower middle income Blend
## 2527 15.2662 -4.2767 Lower middle income Blend
## 2528 15.2662 -4.2767 Lower middle income Blend
## 2529 15.2662 -4.2767 Lower middle income Blend
## 2530 15.2662 -4.2767 Lower middle income Blend
## 2531 15.2662 -4.2767 Lower middle income Blend
## 2532 15.2662 -4.2767 Lower middle income Blend
## 2533 15.2662 -4.2767 Lower middle income Blend
## 2534 15.2662 -4.2767 Lower middle income Blend
## 2535 15.2662 -4.2767 Lower middle income Blend
## 2536 15.2662 -4.2767 Lower middle income Blend
## 2537 15.2662 -4.2767 Lower middle income Blend
## 2538 15.2662 -4.2767 Lower middle income Blend
## 2539 15.2662 -4.2767 Lower middle income Blend
## 2540 15.2662 -4.2767 Lower middle income Blend
## 2541 15.2662 -4.2767 Lower middle income Blend
## 2542 15.2662 -4.2767 Lower middle income Blend
## 2543 7.44821 46.948 High income Not classified
## 2544 7.44821 46.948 High income Not classified
## 2545 7.44821 46.948 High income Not classified
## 2546 7.44821 46.948 High income Not classified
## 2547 7.44821 46.948 High income Not classified
## 2548 7.44821 46.948 High income Not classified
## 2549 7.44821 46.948 High income Not classified
## 2550 7.44821 46.948 High income Not classified
## 2551 7.44821 46.948 High income Not classified
## 2552 7.44821 46.948 High income Not classified
## 2553 7.44821 46.948 High income Not classified
## 2554 7.44821 46.948 High income Not classified
## 2555 7.44821 46.948 High income Not classified
## 2556 7.44821 46.948 High income Not classified
## 2557 7.44821 46.948 High income Not classified
## 2558 7.44821 46.948 High income Not classified
## 2559 7.44821 46.948 High income Not classified
## 2560 7.44821 46.948 High income Not classified
## 2561 7.44821 46.948 High income Not classified
## 2562 7.44821 46.948 High income Not classified
## 2563 7.44821 46.948 High income Not classified
## 2564 7.44821 46.948 High income Not classified
## 2565 7.44821 46.948 High income Not classified
## 2566 7.44821 46.948 High income Not classified
## 2567 7.44821 46.948 High income Not classified
## 2568 7.44821 46.948 High income Not classified
## 2569 7.44821 46.948 High income Not classified
## 2570 7.44821 46.948 High income Not classified
## 2571 7.44821 46.948 High income Not classified
## 2572 7.44821 46.948 High income Not classified
## 2573 7.44821 46.948 High income Not classified
## 2574 7.44821 46.948 High income Not classified
## 2575 7.44821 46.948 High income Not classified
## 2576 7.44821 46.948 High income Not classified
## 2577 7.44821 46.948 High income Not classified
## 2578 7.44821 46.948 High income Not classified
## 2579 7.44821 46.948 High income Not classified
## 2580 7.44821 46.948 High income Not classified
## 2581 7.44821 46.948 High income Not classified
## 2582 7.44821 46.948 High income Not classified
## 2583 7.44821 46.948 High income Not classified
## 2584 7.44821 46.948 High income Not classified
## 2585 7.44821 46.948 High income Not classified
## 2586 7.44821 46.948 High income Not classified
## 2587 7.44821 46.948 High income Not classified
## 2588 7.44821 46.948 High income Not classified
## 2589 7.44821 46.948 High income Not classified
## 2590 7.44821 46.948 High income Not classified
## 2591 7.44821 46.948 High income Not classified
## 2592 7.44821 46.948 High income Not classified
## 2593 7.44821 46.948 High income Not classified
## 2594 7.44821 46.948 High income Not classified
## 2595 7.44821 46.948 High income Not classified
## 2596 7.44821 46.948 High income Not classified
## 2597 7.44821 46.948 High income Not classified
## 2598 7.44821 46.948 High income Not classified
## 2599 7.44821 46.948 High income Not classified
## 2600 7.44821 46.948 High income Not classified
## 2601 7.44821 46.948 High income Not classified
## 2602 7.44821 46.948 High income Not classified
## 2603 7.44821 46.948 High income Not classified
## 2604 7.44821 46.948 High income Not classified
## 2605 -4.0305 5.332 Lower middle income IDA
## 2606 -4.0305 5.332 Lower middle income IDA
## 2607 -4.0305 5.332 Lower middle income IDA
## 2608 -4.0305 5.332 Lower middle income IDA
## 2609 -4.0305 5.332 Lower middle income IDA
## 2610 -4.0305 5.332 Lower middle income IDA
## 2611 -4.0305 5.332 Lower middle income IDA
## 2612 -4.0305 5.332 Lower middle income IDA
## 2613 -4.0305 5.332 Lower middle income IDA
## 2614 -4.0305 5.332 Lower middle income IDA
## 2615 -4.0305 5.332 Lower middle income IDA
## 2616 -4.0305 5.332 Lower middle income IDA
## 2617 -4.0305 5.332 Lower middle income IDA
## 2618 -4.0305 5.332 Lower middle income IDA
## 2619 -4.0305 5.332 Lower middle income IDA
## 2620 -4.0305 5.332 Lower middle income IDA
## 2621 -4.0305 5.332 Lower middle income IDA
## 2622 -4.0305 5.332 Lower middle income IDA
## 2623 -4.0305 5.332 Lower middle income IDA
## 2624 -4.0305 5.332 Lower middle income IDA
## 2625 -4.0305 5.332 Lower middle income IDA
## 2626 -4.0305 5.332 Lower middle income IDA
## 2627 -4.0305 5.332 Lower middle income IDA
## 2628 -4.0305 5.332 Lower middle income IDA
## 2629 -4.0305 5.332 Lower middle income IDA
## 2630 -4.0305 5.332 Lower middle income IDA
## 2631 -4.0305 5.332 Lower middle income IDA
## 2632 -4.0305 5.332 Lower middle income IDA
## 2633 -4.0305 5.332 Lower middle income IDA
## 2634 -4.0305 5.332 Lower middle income IDA
## 2635 -4.0305 5.332 Lower middle income IDA
## 2636 -4.0305 5.332 Lower middle income IDA
## 2637 -4.0305 5.332 Lower middle income IDA
## 2638 -4.0305 5.332 Lower middle income IDA
## 2639 -4.0305 5.332 Lower middle income IDA
## 2640 -4.0305 5.332 Lower middle income IDA
## 2641 -4.0305 5.332 Lower middle income IDA
## 2642 -4.0305 5.332 Lower middle income IDA
## 2643 -4.0305 5.332 Lower middle income IDA
## 2644 -4.0305 5.332 Lower middle income IDA
## 2645 -4.0305 5.332 Lower middle income IDA
## 2646 -4.0305 5.332 Lower middle income IDA
## 2647 -4.0305 5.332 Lower middle income IDA
## 2648 -4.0305 5.332 Lower middle income IDA
## 2649 -4.0305 5.332 Lower middle income IDA
## 2650 -4.0305 5.332 Lower middle income IDA
## 2651 -4.0305 5.332 Lower middle income IDA
## 2652 -4.0305 5.332 Lower middle income IDA
## 2653 -4.0305 5.332 Lower middle income IDA
## 2654 -4.0305 5.332 Lower middle income IDA
## 2655 -4.0305 5.332 Lower middle income IDA
## 2656 -4.0305 5.332 Lower middle income IDA
## 2657 -4.0305 5.332 Lower middle income IDA
## 2658 -4.0305 5.332 Lower middle income IDA
## 2659 -4.0305 5.332 Lower middle income IDA
## 2660 -4.0305 5.332 Lower middle income IDA
## 2661 -4.0305 5.332 Lower middle income IDA
## 2662 -4.0305 5.332 Lower middle income IDA
## 2663 -4.0305 5.332 Lower middle income IDA
## 2664 -4.0305 5.332 Lower middle income IDA
## 2665 -4.0305 5.332 Lower middle income IDA
## 2666 -4.0305 5.332 Lower middle income IDA
## 2667 -70.6475 -33.475 High income IBRD
## 2668 -70.6475 -33.475 High income IBRD
## 2669 -70.6475 -33.475 High income IBRD
## 2670 -70.6475 -33.475 High income IBRD
## 2671 -70.6475 -33.475 High income IBRD
## 2672 -70.6475 -33.475 High income IBRD
## 2673 -70.6475 -33.475 High income IBRD
## 2674 -70.6475 -33.475 High income IBRD
## 2675 -70.6475 -33.475 High income IBRD
## 2676 -70.6475 -33.475 High income IBRD
## 2677 -70.6475 -33.475 High income IBRD
## 2678 -70.6475 -33.475 High income IBRD
## 2679 -70.6475 -33.475 High income IBRD
## 2680 -70.6475 -33.475 High income IBRD
## 2681 -70.6475 -33.475 High income IBRD
## 2682 -70.6475 -33.475 High income IBRD
## 2683 -70.6475 -33.475 High income IBRD
## 2684 -70.6475 -33.475 High income IBRD
## 2685 -70.6475 -33.475 High income IBRD
## 2686 -70.6475 -33.475 High income IBRD
## 2687 -70.6475 -33.475 High income IBRD
## 2688 -70.6475 -33.475 High income IBRD
## 2689 -70.6475 -33.475 High income IBRD
## 2690 -70.6475 -33.475 High income IBRD
## 2691 -70.6475 -33.475 High income IBRD
## 2692 -70.6475 -33.475 High income IBRD
## 2693 -70.6475 -33.475 High income IBRD
## 2694 -70.6475 -33.475 High income IBRD
## 2695 -70.6475 -33.475 High income IBRD
## 2696 -70.6475 -33.475 High income IBRD
## 2697 -70.6475 -33.475 High income IBRD
## 2698 -70.6475 -33.475 High income IBRD
## 2699 -70.6475 -33.475 High income IBRD
## 2700 -70.6475 -33.475 High income IBRD
## 2701 -70.6475 -33.475 High income IBRD
## 2702 -70.6475 -33.475 High income IBRD
## 2703 -70.6475 -33.475 High income IBRD
## 2704 -70.6475 -33.475 High income IBRD
## 2705 -70.6475 -33.475 High income IBRD
## 2706 -70.6475 -33.475 High income IBRD
## 2707 -70.6475 -33.475 High income IBRD
## 2708 -70.6475 -33.475 High income IBRD
## 2709 -70.6475 -33.475 High income IBRD
## 2710 -70.6475 -33.475 High income IBRD
## 2711 -70.6475 -33.475 High income IBRD
## 2712 -70.6475 -33.475 High income IBRD
## 2713 -70.6475 -33.475 High income IBRD
## 2714 -70.6475 -33.475 High income IBRD
## 2715 -70.6475 -33.475 High income IBRD
## 2716 -70.6475 -33.475 High income IBRD
## 2717 -70.6475 -33.475 High income IBRD
## 2718 -70.6475 -33.475 High income IBRD
## 2719 -70.6475 -33.475 High income IBRD
## 2720 -70.6475 -33.475 High income IBRD
## 2721 -70.6475 -33.475 High income IBRD
## 2722 -70.6475 -33.475 High income IBRD
## 2723 -70.6475 -33.475 High income IBRD
## 2724 -70.6475 -33.475 High income IBRD
## 2725 -70.6475 -33.475 High income IBRD
## 2726 -70.6475 -33.475 High income IBRD
## 2727 -70.6475 -33.475 High income IBRD
## 2728 -70.6475 -33.475 High income IBRD
## 2729 11.5174 3.8721 Lower middle income Blend
## 2730 11.5174 3.8721 Lower middle income Blend
## 2731 11.5174 3.8721 Lower middle income Blend
## 2732 11.5174 3.8721 Lower middle income Blend
## 2733 11.5174 3.8721 Lower middle income Blend
## 2734 11.5174 3.8721 Lower middle income Blend
## 2735 11.5174 3.8721 Lower middle income Blend
## 2736 11.5174 3.8721 Lower middle income Blend
## 2737 11.5174 3.8721 Lower middle income Blend
## 2738 11.5174 3.8721 Lower middle income Blend
## 2739 11.5174 3.8721 Lower middle income Blend
## 2740 11.5174 3.8721 Lower middle income Blend
## 2741 11.5174 3.8721 Lower middle income Blend
## 2742 11.5174 3.8721 Lower middle income Blend
## 2743 11.5174 3.8721 Lower middle income Blend
## 2744 11.5174 3.8721 Lower middle income Blend
## 2745 11.5174 3.8721 Lower middle income Blend
## 2746 11.5174 3.8721 Lower middle income Blend
## 2747 11.5174 3.8721 Lower middle income Blend
## 2748 11.5174 3.8721 Lower middle income Blend
## 2749 11.5174 3.8721 Lower middle income Blend
## 2750 11.5174 3.8721 Lower middle income Blend
## 2751 11.5174 3.8721 Lower middle income Blend
## 2752 11.5174 3.8721 Lower middle income Blend
## 2753 11.5174 3.8721 Lower middle income Blend
## 2754 11.5174 3.8721 Lower middle income Blend
## 2755 11.5174 3.8721 Lower middle income Blend
## 2756 11.5174 3.8721 Lower middle income Blend
## 2757 11.5174 3.8721 Lower middle income Blend
## 2758 11.5174 3.8721 Lower middle income Blend
## 2759 11.5174 3.8721 Lower middle income Blend
## 2760 11.5174 3.8721 Lower middle income Blend
## 2761 11.5174 3.8721 Lower middle income Blend
## 2762 11.5174 3.8721 Lower middle income Blend
## 2763 11.5174 3.8721 Lower middle income Blend
## 2764 11.5174 3.8721 Lower middle income Blend
## 2765 11.5174 3.8721 Lower middle income Blend
## 2766 11.5174 3.8721 Lower middle income Blend
## 2767 11.5174 3.8721 Lower middle income Blend
## 2768 11.5174 3.8721 Lower middle income Blend
## 2769 11.5174 3.8721 Lower middle income Blend
## 2770 11.5174 3.8721 Lower middle income Blend
## 2771 11.5174 3.8721 Lower middle income Blend
## 2772 11.5174 3.8721 Lower middle income Blend
## 2773 11.5174 3.8721 Lower middle income Blend
## 2774 11.5174 3.8721 Lower middle income Blend
## 2775 11.5174 3.8721 Lower middle income Blend
## 2776 11.5174 3.8721 Lower middle income Blend
## 2777 11.5174 3.8721 Lower middle income Blend
## 2778 11.5174 3.8721 Lower middle income Blend
## 2779 11.5174 3.8721 Lower middle income Blend
## 2780 11.5174 3.8721 Lower middle income Blend
## 2781 11.5174 3.8721 Lower middle income Blend
## 2782 11.5174 3.8721 Lower middle income Blend
## 2783 11.5174 3.8721 Lower middle income Blend
## 2784 11.5174 3.8721 Lower middle income Blend
## 2785 11.5174 3.8721 Lower middle income Blend
## 2786 11.5174 3.8721 Lower middle income Blend
## 2787 11.5174 3.8721 Lower middle income Blend
## 2788 11.5174 3.8721 Lower middle income Blend
## 2789 11.5174 3.8721 Lower middle income Blend
## 2790 11.5174 3.8721 Lower middle income Blend
## 2791 116.286 40.0495 Upper middle income IBRD
## 2792 116.286 40.0495 Upper middle income IBRD
## 2793 116.286 40.0495 Upper middle income IBRD
## 2794 116.286 40.0495 Upper middle income IBRD
## 2795 116.286 40.0495 Upper middle income IBRD
## 2796 116.286 40.0495 Upper middle income IBRD
## 2797 116.286 40.0495 Upper middle income IBRD
## 2798 116.286 40.0495 Upper middle income IBRD
## 2799 116.286 40.0495 Upper middle income IBRD
## 2800 116.286 40.0495 Upper middle income IBRD
## 2801 116.286 40.0495 Upper middle income IBRD
## 2802 116.286 40.0495 Upper middle income IBRD
## 2803 116.286 40.0495 Upper middle income IBRD
## 2804 116.286 40.0495 Upper middle income IBRD
## 2805 116.286 40.0495 Upper middle income IBRD
## 2806 116.286 40.0495 Upper middle income IBRD
## 2807 116.286 40.0495 Upper middle income IBRD
## 2808 116.286 40.0495 Upper middle income IBRD
## 2809 116.286 40.0495 Upper middle income IBRD
## 2810 116.286 40.0495 Upper middle income IBRD
## 2811 116.286 40.0495 Upper middle income IBRD
## 2812 116.286 40.0495 Upper middle income IBRD
## 2813 116.286 40.0495 Upper middle income IBRD
## 2814 116.286 40.0495 Upper middle income IBRD
## 2815 116.286 40.0495 Upper middle income IBRD
## 2816 116.286 40.0495 Upper middle income IBRD
## 2817 116.286 40.0495 Upper middle income IBRD
## 2818 116.286 40.0495 Upper middle income IBRD
## 2819 116.286 40.0495 Upper middle income IBRD
## 2820 116.286 40.0495 Upper middle income IBRD
## 2821 116.286 40.0495 Upper middle income IBRD
## 2822 116.286 40.0495 Upper middle income IBRD
## 2823 116.286 40.0495 Upper middle income IBRD
## 2824 116.286 40.0495 Upper middle income IBRD
## 2825 116.286 40.0495 Upper middle income IBRD
## 2826 116.286 40.0495 Upper middle income IBRD
## 2827 116.286 40.0495 Upper middle income IBRD
## 2828 116.286 40.0495 Upper middle income IBRD
## 2829 116.286 40.0495 Upper middle income IBRD
## 2830 116.286 40.0495 Upper middle income IBRD
## 2831 116.286 40.0495 Upper middle income IBRD
## 2832 116.286 40.0495 Upper middle income IBRD
## 2833 116.286 40.0495 Upper middle income IBRD
## 2834 116.286 40.0495 Upper middle income IBRD
## 2835 116.286 40.0495 Upper middle income IBRD
## 2836 116.286 40.0495 Upper middle income IBRD
## 2837 116.286 40.0495 Upper middle income IBRD
## 2838 116.286 40.0495 Upper middle income IBRD
## 2839 116.286 40.0495 Upper middle income IBRD
## 2840 116.286 40.0495 Upper middle income IBRD
## 2841 116.286 40.0495 Upper middle income IBRD
## 2842 116.286 40.0495 Upper middle income IBRD
## 2843 116.286 40.0495 Upper middle income IBRD
## 2844 116.286 40.0495 Upper middle income IBRD
## 2845 116.286 40.0495 Upper middle income IBRD
## 2846 116.286 40.0495 Upper middle income IBRD
## 2847 116.286 40.0495 Upper middle income IBRD
## 2848 116.286 40.0495 Upper middle income IBRD
## 2849 116.286 40.0495 Upper middle income IBRD
## 2850 116.286 40.0495 Upper middle income IBRD
## 2851 116.286 40.0495 Upper middle income IBRD
## 2852 116.286 40.0495 Upper middle income IBRD
## 2853 -74.082 4.60987 Upper middle income IBRD
## 2854 -74.082 4.60987 Upper middle income IBRD
## 2855 -74.082 4.60987 Upper middle income IBRD
## 2856 -74.082 4.60987 Upper middle income IBRD
## 2857 -74.082 4.60987 Upper middle income IBRD
## 2858 -74.082 4.60987 Upper middle income IBRD
## 2859 -74.082 4.60987 Upper middle income IBRD
## 2860 -74.082 4.60987 Upper middle income IBRD
## 2861 -74.082 4.60987 Upper middle income IBRD
## 2862 -74.082 4.60987 Upper middle income IBRD
## 2863 -74.082 4.60987 Upper middle income IBRD
## 2864 -74.082 4.60987 Upper middle income IBRD
## 2865 -74.082 4.60987 Upper middle income IBRD
## 2866 -74.082 4.60987 Upper middle income IBRD
## 2867 -74.082 4.60987 Upper middle income IBRD
## 2868 -74.082 4.60987 Upper middle income IBRD
## 2869 -74.082 4.60987 Upper middle income IBRD
## 2870 -74.082 4.60987 Upper middle income IBRD
## 2871 -74.082 4.60987 Upper middle income IBRD
## 2872 -74.082 4.60987 Upper middle income IBRD
## 2873 -74.082 4.60987 Upper middle income IBRD
## 2874 -74.082 4.60987 Upper middle income IBRD
## 2875 -74.082 4.60987 Upper middle income IBRD
## 2876 -74.082 4.60987 Upper middle income IBRD
## 2877 -74.082 4.60987 Upper middle income IBRD
## 2878 -74.082 4.60987 Upper middle income IBRD
## 2879 -74.082 4.60987 Upper middle income IBRD
## 2880 -74.082 4.60987 Upper middle income IBRD
## 2881 -74.082 4.60987 Upper middle income IBRD
## 2882 -74.082 4.60987 Upper middle income IBRD
## 2883 -74.082 4.60987 Upper middle income IBRD
## 2884 -74.082 4.60987 Upper middle income IBRD
## 2885 -74.082 4.60987 Upper middle income IBRD
## 2886 -74.082 4.60987 Upper middle income IBRD
## 2887 -74.082 4.60987 Upper middle income IBRD
## 2888 -74.082 4.60987 Upper middle income IBRD
## 2889 -74.082 4.60987 Upper middle income IBRD
## 2890 -74.082 4.60987 Upper middle income IBRD
## 2891 -74.082 4.60987 Upper middle income IBRD
## 2892 -74.082 4.60987 Upper middle income IBRD
## 2893 -74.082 4.60987 Upper middle income IBRD
## 2894 -74.082 4.60987 Upper middle income IBRD
## 2895 -74.082 4.60987 Upper middle income IBRD
## 2896 -74.082 4.60987 Upper middle income IBRD
## 2897 -74.082 4.60987 Upper middle income IBRD
## 2898 -74.082 4.60987 Upper middle income IBRD
## 2899 -74.082 4.60987 Upper middle income IBRD
## 2900 -74.082 4.60987 Upper middle income IBRD
## 2901 -74.082 4.60987 Upper middle income IBRD
## 2902 -74.082 4.60987 Upper middle income IBRD
## 2903 -74.082 4.60987 Upper middle income IBRD
## 2904 -74.082 4.60987 Upper middle income IBRD
## 2905 -74.082 4.60987 Upper middle income IBRD
## 2906 -74.082 4.60987 Upper middle income IBRD
## 2907 -74.082 4.60987 Upper middle income IBRD
## 2908 -74.082 4.60987 Upper middle income IBRD
## 2909 -74.082 4.60987 Upper middle income IBRD
## 2910 -74.082 4.60987 Upper middle income IBRD
## 2911 -74.082 4.60987 Upper middle income IBRD
## 2912 -74.082 4.60987 Upper middle income IBRD
## 2913 -74.082 4.60987 Upper middle income IBRD
## 2914 -74.082 4.60987 Upper middle income IBRD
## 2915 -84.0089 9.63701 Upper middle income IBRD
## 2916 -84.0089 9.63701 Upper middle income IBRD
## 2917 -84.0089 9.63701 Upper middle income IBRD
## 2918 -84.0089 9.63701 Upper middle income IBRD
## 2919 -84.0089 9.63701 Upper middle income IBRD
## 2920 -84.0089 9.63701 Upper middle income IBRD
## 2921 -84.0089 9.63701 Upper middle income IBRD
## 2922 -84.0089 9.63701 Upper middle income IBRD
## 2923 -84.0089 9.63701 Upper middle income IBRD
## 2924 -84.0089 9.63701 Upper middle income IBRD
## 2925 -84.0089 9.63701 Upper middle income IBRD
## 2926 -84.0089 9.63701 Upper middle income IBRD
## 2927 -84.0089 9.63701 Upper middle income IBRD
## 2928 -84.0089 9.63701 Upper middle income IBRD
## 2929 -84.0089 9.63701 Upper middle income IBRD
## 2930 -84.0089 9.63701 Upper middle income IBRD
## 2931 -84.0089 9.63701 Upper middle income IBRD
## 2932 -84.0089 9.63701 Upper middle income IBRD
## 2933 -84.0089 9.63701 Upper middle income IBRD
## 2934 -84.0089 9.63701 Upper middle income IBRD
## 2935 -84.0089 9.63701 Upper middle income IBRD
## 2936 -84.0089 9.63701 Upper middle income IBRD
## 2937 -84.0089 9.63701 Upper middle income IBRD
## 2938 -84.0089 9.63701 Upper middle income IBRD
## 2939 -84.0089 9.63701 Upper middle income IBRD
## 2940 -84.0089 9.63701 Upper middle income IBRD
## 2941 -84.0089 9.63701 Upper middle income IBRD
## 2942 -84.0089 9.63701 Upper middle income IBRD
## 2943 -84.0089 9.63701 Upper middle income IBRD
## 2944 -84.0089 9.63701 Upper middle income IBRD
## 2945 -84.0089 9.63701 Upper middle income IBRD
## 2946 -84.0089 9.63701 Upper middle income IBRD
## 2947 -84.0089 9.63701 Upper middle income IBRD
## 2948 -84.0089 9.63701 Upper middle income IBRD
## 2949 -84.0089 9.63701 Upper middle income IBRD
## 2950 -84.0089 9.63701 Upper middle income IBRD
## 2951 -84.0089 9.63701 Upper middle income IBRD
## 2952 -84.0089 9.63701 Upper middle income IBRD
## 2953 -84.0089 9.63701 Upper middle income IBRD
## 2954 -84.0089 9.63701 Upper middle income IBRD
## 2955 -84.0089 9.63701 Upper middle income IBRD
## 2956 -84.0089 9.63701 Upper middle income IBRD
## 2957 -84.0089 9.63701 Upper middle income IBRD
## 2958 -84.0089 9.63701 Upper middle income IBRD
## 2959 -84.0089 9.63701 Upper middle income IBRD
## 2960 -84.0089 9.63701 Upper middle income IBRD
## 2961 -84.0089 9.63701 Upper middle income IBRD
## 2962 -84.0089 9.63701 Upper middle income IBRD
## 2963 -84.0089 9.63701 Upper middle income IBRD
## 2964 -84.0089 9.63701 Upper middle income IBRD
## 2965 -84.0089 9.63701 Upper middle income IBRD
## 2966 -84.0089 9.63701 Upper middle income IBRD
## 2967 -84.0089 9.63701 Upper middle income IBRD
## 2968 -84.0089 9.63701 Upper middle income IBRD
## 2969 -84.0089 9.63701 Upper middle income IBRD
## 2970 -84.0089 9.63701 Upper middle income IBRD
## 2971 -84.0089 9.63701 Upper middle income IBRD
## 2972 -84.0089 9.63701 Upper middle income IBRD
## 2973 -84.0089 9.63701 Upper middle income IBRD
## 2974 -84.0089 9.63701 Upper middle income IBRD
## 2975 -84.0089 9.63701 Upper middle income IBRD
## 2976 -84.0089 9.63701 Upper middle income IBRD
## 2977 -82.3667 23.1333 Upper middle income Not classified
## 2978 -82.3667 23.1333 Upper middle income Not classified
## 2979 -82.3667 23.1333 Upper middle income Not classified
## 2980 -82.3667 23.1333 Upper middle income Not classified
## 2981 -82.3667 23.1333 Upper middle income Not classified
## 2982 -82.3667 23.1333 Upper middle income Not classified
## 2983 -82.3667 23.1333 Upper middle income Not classified
## 2984 -82.3667 23.1333 Upper middle income Not classified
## 2985 -82.3667 23.1333 Upper middle income Not classified
## 2986 -82.3667 23.1333 Upper middle income Not classified
## 2987 -82.3667 23.1333 Upper middle income Not classified
## 2988 -82.3667 23.1333 Upper middle income Not classified
## 2989 -82.3667 23.1333 Upper middle income Not classified
## 2990 -82.3667 23.1333 Upper middle income Not classified
## 2991 -82.3667 23.1333 Upper middle income Not classified
## 2992 -82.3667 23.1333 Upper middle income Not classified
## 2993 -82.3667 23.1333 Upper middle income Not classified
## 2994 -82.3667 23.1333 Upper middle income Not classified
## 2995 -82.3667 23.1333 Upper middle income Not classified
## 2996 -82.3667 23.1333 Upper middle income Not classified
## 2997 -82.3667 23.1333 Upper middle income Not classified
## 2998 -82.3667 23.1333 Upper middle income Not classified
## 2999 -82.3667 23.1333 Upper middle income Not classified
## 3000 -82.3667 23.1333 Upper middle income Not classified
## 3001 -82.3667 23.1333 Upper middle income Not classified
## 3002 -82.3667 23.1333 Upper middle income Not classified
## 3003 -82.3667 23.1333 Upper middle income Not classified
## 3004 -82.3667 23.1333 Upper middle income Not classified
## 3005 -82.3667 23.1333 Upper middle income Not classified
## 3006 -82.3667 23.1333 Upper middle income Not classified
## 3007 -82.3667 23.1333 Upper middle income Not classified
## 3008 -82.3667 23.1333 Upper middle income Not classified
## 3009 -82.3667 23.1333 Upper middle income Not classified
## 3010 -82.3667 23.1333 Upper middle income Not classified
## 3011 -82.3667 23.1333 Upper middle income Not classified
## 3012 -82.3667 23.1333 Upper middle income Not classified
## 3013 -82.3667 23.1333 Upper middle income Not classified
## 3014 -82.3667 23.1333 Upper middle income Not classified
## 3015 -82.3667 23.1333 Upper middle income Not classified
## 3016 -82.3667 23.1333 Upper middle income Not classified
## 3017 -82.3667 23.1333 Upper middle income Not classified
## 3018 -82.3667 23.1333 Upper middle income Not classified
## 3019 -82.3667 23.1333 Upper middle income Not classified
## 3020 -82.3667 23.1333 Upper middle income Not classified
## 3021 -82.3667 23.1333 Upper middle income Not classified
## 3022 -82.3667 23.1333 Upper middle income Not classified
## 3023 -82.3667 23.1333 Upper middle income Not classified
## 3024 -82.3667 23.1333 Upper middle income Not classified
## 3025 -82.3667 23.1333 Upper middle income Not classified
## 3026 -82.3667 23.1333 Upper middle income Not classified
## 3027 -82.3667 23.1333 Upper middle income Not classified
## 3028 -82.3667 23.1333 Upper middle income Not classified
## 3029 -82.3667 23.1333 Upper middle income Not classified
## 3030 -82.3667 23.1333 Upper middle income Not classified
## 3031 -82.3667 23.1333 Upper middle income Not classified
## 3032 -82.3667 23.1333 Upper middle income Not classified
## 3033 -82.3667 23.1333 Upper middle income Not classified
## 3034 -82.3667 23.1333 Upper middle income Not classified
## 3035 -82.3667 23.1333 Upper middle income Not classified
## 3036 -82.3667 23.1333 Upper middle income Not classified
## 3037 -82.3667 23.1333 Upper middle income Not classified
## 3038 -82.3667 23.1333 Upper middle income Not classified
## 3039 -23.5087 14.9218 Lower middle income Blend
## 3040 -23.5087 14.9218 Lower middle income Blend
## 3041 -23.5087 14.9218 Lower middle income Blend
## 3042 -23.5087 14.9218 Lower middle income Blend
## 3043 -23.5087 14.9218 Lower middle income Blend
## 3044 -23.5087 14.9218 Lower middle income Blend
## 3045 -23.5087 14.9218 Lower middle income Blend
## 3046 -23.5087 14.9218 Lower middle income Blend
## 3047 -23.5087 14.9218 Lower middle income Blend
## 3048 -23.5087 14.9218 Lower middle income Blend
## 3049 -23.5087 14.9218 Lower middle income Blend
## 3050 -23.5087 14.9218 Lower middle income Blend
## 3051 -23.5087 14.9218 Lower middle income Blend
## 3052 -23.5087 14.9218 Lower middle income Blend
## 3053 -23.5087 14.9218 Lower middle income Blend
## 3054 -23.5087 14.9218 Lower middle income Blend
## 3055 -23.5087 14.9218 Lower middle income Blend
## 3056 -23.5087 14.9218 Lower middle income Blend
## 3057 -23.5087 14.9218 Lower middle income Blend
## 3058 -23.5087 14.9218 Lower middle income Blend
## 3059 -23.5087 14.9218 Lower middle income Blend
## 3060 -23.5087 14.9218 Lower middle income Blend
## 3061 -23.5087 14.9218 Lower middle income Blend
## 3062 -23.5087 14.9218 Lower middle income Blend
## 3063 -23.5087 14.9218 Lower middle income Blend
## 3064 -23.5087 14.9218 Lower middle income Blend
## 3065 -23.5087 14.9218 Lower middle income Blend
## 3066 -23.5087 14.9218 Lower middle income Blend
## 3067 -23.5087 14.9218 Lower middle income Blend
## 3068 -23.5087 14.9218 Lower middle income Blend
## 3069 -23.5087 14.9218 Lower middle income Blend
## 3070 -23.5087 14.9218 Lower middle income Blend
## 3071 -23.5087 14.9218 Lower middle income Blend
## 3072 -23.5087 14.9218 Lower middle income Blend
## 3073 -23.5087 14.9218 Lower middle income Blend
## 3074 -23.5087 14.9218 Lower middle income Blend
## 3075 -23.5087 14.9218 Lower middle income Blend
## 3076 -23.5087 14.9218 Lower middle income Blend
## 3077 -23.5087 14.9218 Lower middle income Blend
## 3078 -23.5087 14.9218 Lower middle income Blend
## 3079 -23.5087 14.9218 Lower middle income Blend
## 3080 -23.5087 14.9218 Lower middle income Blend
## 3081 -23.5087 14.9218 Lower middle income Blend
## 3082 -23.5087 14.9218 Lower middle income Blend
## 3083 -23.5087 14.9218 Lower middle income Blend
## 3084 -23.5087 14.9218 Lower middle income Blend
## 3085 -23.5087 14.9218 Lower middle income Blend
## 3086 -23.5087 14.9218 Lower middle income Blend
## 3087 -23.5087 14.9218 Lower middle income Blend
## 3088 -23.5087 14.9218 Lower middle income Blend
## 3089 -23.5087 14.9218 Lower middle income Blend
## 3090 -23.5087 14.9218 Lower middle income Blend
## 3091 -23.5087 14.9218 Lower middle income Blend
## 3092 -23.5087 14.9218 Lower middle income Blend
## 3093 -23.5087 14.9218 Lower middle income Blend
## 3094 -23.5087 14.9218 Lower middle income Blend
## 3095 -23.5087 14.9218 Lower middle income Blend
## 3096 -23.5087 14.9218 Lower middle income Blend
## 3097 -23.5087 14.9218 Lower middle income Blend
## 3098 -23.5087 14.9218 Lower middle income Blend
## 3099 -23.5087 14.9218 Lower middle income Blend
## 3100 -23.5087 14.9218 Lower middle income Blend
## 3101 High income Not classified
## 3102 High income Not classified
## 3103 High income Not classified
## 3104 High income Not classified
## 3105 High income Not classified
## 3106 High income Not classified
## 3107 High income Not classified
## 3108 High income Not classified
## 3109 High income Not classified
## 3110 High income Not classified
## 3111 High income Not classified
## 3112 High income Not classified
## 3113 High income Not classified
## 3114 High income Not classified
## 3115 High income Not classified
## 3116 High income Not classified
## 3117 High income Not classified
## 3118 High income Not classified
## 3119 High income Not classified
## 3120 High income Not classified
## 3121 High income Not classified
## 3122 High income Not classified
## 3123 High income Not classified
## 3124 High income Not classified
## 3125 High income Not classified
## 3126 High income Not classified
## 3127 High income Not classified
## 3128 High income Not classified
## 3129 High income Not classified
## 3130 High income Not classified
## 3131 High income Not classified
## 3132 High income Not classified
## 3133 High income Not classified
## 3134 High income Not classified
## 3135 High income Not classified
## 3136 High income Not classified
## 3137 High income Not classified
## 3138 High income Not classified
## 3139 High income Not classified
## 3140 High income Not classified
## 3141 High income Not classified
## 3142 High income Not classified
## 3143 High income Not classified
## 3144 High income Not classified
## 3145 High income Not classified
## 3146 High income Not classified
## 3147 High income Not classified
## 3148 High income Not classified
## 3149 High income Not classified
## 3150 High income Not classified
## 3151 High income Not classified
## 3152 High income Not classified
## 3153 High income Not classified
## 3154 High income Not classified
## 3155 High income Not classified
## 3156 High income Not classified
## 3157 High income Not classified
## 3158 High income Not classified
## 3159 High income Not classified
## 3160 High income Not classified
## 3161 High income Not classified
## 3162 High income Not classified
## 3163 33.3736 35.1676 High income Not classified
## 3164 33.3736 35.1676 High income Not classified
## 3165 33.3736 35.1676 High income Not classified
## 3166 33.3736 35.1676 High income Not classified
## 3167 33.3736 35.1676 High income Not classified
## 3168 33.3736 35.1676 High income Not classified
## 3169 33.3736 35.1676 High income Not classified
## 3170 33.3736 35.1676 High income Not classified
## 3171 33.3736 35.1676 High income Not classified
## 3172 33.3736 35.1676 High income Not classified
## 3173 33.3736 35.1676 High income Not classified
## 3174 33.3736 35.1676 High income Not classified
## 3175 33.3736 35.1676 High income Not classified
## 3176 33.3736 35.1676 High income Not classified
## 3177 33.3736 35.1676 High income Not classified
## 3178 33.3736 35.1676 High income Not classified
## 3179 33.3736 35.1676 High income Not classified
## 3180 33.3736 35.1676 High income Not classified
## 3181 33.3736 35.1676 High income Not classified
## 3182 33.3736 35.1676 High income Not classified
## 3183 33.3736 35.1676 High income Not classified
## 3184 33.3736 35.1676 High income Not classified
## 3185 33.3736 35.1676 High income Not classified
## 3186 33.3736 35.1676 High income Not classified
## 3187 33.3736 35.1676 High income Not classified
## 3188 33.3736 35.1676 High income Not classified
## 3189 33.3736 35.1676 High income Not classified
## 3190 33.3736 35.1676 High income Not classified
## 3191 33.3736 35.1676 High income Not classified
## 3192 33.3736 35.1676 High income Not classified
## 3193 33.3736 35.1676 High income Not classified
## 3194 33.3736 35.1676 High income Not classified
## 3195 33.3736 35.1676 High income Not classified
## 3196 33.3736 35.1676 High income Not classified
## 3197 33.3736 35.1676 High income Not classified
## 3198 33.3736 35.1676 High income Not classified
## 3199 33.3736 35.1676 High income Not classified
## 3200 33.3736 35.1676 High income Not classified
## 3201 33.3736 35.1676 High income Not classified
## 3202 33.3736 35.1676 High income Not classified
## 3203 33.3736 35.1676 High income Not classified
## 3204 33.3736 35.1676 High income Not classified
## 3205 33.3736 35.1676 High income Not classified
## 3206 33.3736 35.1676 High income Not classified
## 3207 33.3736 35.1676 High income Not classified
## 3208 33.3736 35.1676 High income Not classified
## 3209 33.3736 35.1676 High income Not classified
## 3210 33.3736 35.1676 High income Not classified
## 3211 33.3736 35.1676 High income Not classified
## 3212 33.3736 35.1676 High income Not classified
## 3213 33.3736 35.1676 High income Not classified
## 3214 33.3736 35.1676 High income Not classified
## 3215 33.3736 35.1676 High income Not classified
## 3216 33.3736 35.1676 High income Not classified
## 3217 33.3736 35.1676 High income Not classified
## 3218 33.3736 35.1676 High income Not classified
## 3219 33.3736 35.1676 High income Not classified
## 3220 33.3736 35.1676 High income Not classified
## 3221 33.3736 35.1676 High income Not classified
## 3222 33.3736 35.1676 High income Not classified
## 3223 33.3736 35.1676 High income Not classified
## 3224 33.3736 35.1676 High income Not classified
## 3225 <NA> <NA> <NA> <NA>
## 3226 <NA> <NA> <NA> <NA>
## 3227 <NA> <NA> <NA> <NA>
## 3228 <NA> <NA> <NA> <NA>
## 3229 <NA> <NA> <NA> <NA>
## 3230 <NA> <NA> <NA> <NA>
## 3231 <NA> <NA> <NA> <NA>
## 3232 <NA> <NA> <NA> <NA>
## 3233 <NA> <NA> <NA> <NA>
## 3234 <NA> <NA> <NA> <NA>
## 3235 <NA> <NA> <NA> <NA>
## 3236 <NA> <NA> <NA> <NA>
## 3237 <NA> <NA> <NA> <NA>
## 3238 <NA> <NA> <NA> <NA>
## 3239 <NA> <NA> <NA> <NA>
## 3240 <NA> <NA> <NA> <NA>
## 3241 <NA> <NA> <NA> <NA>
## 3242 <NA> <NA> <NA> <NA>
## 3243 <NA> <NA> <NA> <NA>
## 3244 <NA> <NA> <NA> <NA>
## 3245 <NA> <NA> <NA> <NA>
## 3246 <NA> <NA> <NA> <NA>
## 3247 <NA> <NA> <NA> <NA>
## 3248 <NA> <NA> <NA> <NA>
## 3249 <NA> <NA> <NA> <NA>
## 3250 <NA> <NA> <NA> <NA>
## 3251 <NA> <NA> <NA> <NA>
## 3252 <NA> <NA> <NA> <NA>
## 3253 <NA> <NA> <NA> <NA>
## 3254 <NA> <NA> <NA> <NA>
## 3255 <NA> <NA> <NA> <NA>
## 3256 <NA> <NA> <NA> <NA>
## 3257 <NA> <NA> <NA> <NA>
## 3258 <NA> <NA> <NA> <NA>
## 3259 <NA> <NA> <NA> <NA>
## 3260 <NA> <NA> <NA> <NA>
## 3261 <NA> <NA> <NA> <NA>
## 3262 <NA> <NA> <NA> <NA>
## 3263 <NA> <NA> <NA> <NA>
## 3264 <NA> <NA> <NA> <NA>
## 3265 <NA> <NA> <NA> <NA>
## 3266 <NA> <NA> <NA> <NA>
## 3267 <NA> <NA> <NA> <NA>
## 3268 <NA> <NA> <NA> <NA>
## 3269 <NA> <NA> <NA> <NA>
## 3270 <NA> <NA> <NA> <NA>
## 3271 <NA> <NA> <NA> <NA>
## 3272 <NA> <NA> <NA> <NA>
## 3273 <NA> <NA> <NA> <NA>
## 3274 <NA> <NA> <NA> <NA>
## 3275 <NA> <NA> <NA> <NA>
## 3276 <NA> <NA> <NA> <NA>
## 3277 <NA> <NA> <NA> <NA>
## 3278 <NA> <NA> <NA> <NA>
## 3279 <NA> <NA> <NA> <NA>
## 3280 <NA> <NA> <NA> <NA>
## 3281 <NA> <NA> <NA> <NA>
## 3282 <NA> <NA> <NA> <NA>
## 3283 <NA> <NA> <NA> <NA>
## 3284 <NA> <NA> <NA> <NA>
## 3285 <NA> <NA> <NA> <NA>
## 3286 <NA> <NA> <NA> <NA>
## 3287 13.4115 52.5235 High income Not classified
## 3288 13.4115 52.5235 High income Not classified
## 3289 13.4115 52.5235 High income Not classified
## 3290 13.4115 52.5235 High income Not classified
## 3291 13.4115 52.5235 High income Not classified
## 3292 13.4115 52.5235 High income Not classified
## 3293 13.4115 52.5235 High income Not classified
## 3294 13.4115 52.5235 High income Not classified
## 3295 13.4115 52.5235 High income Not classified
## 3296 13.4115 52.5235 High income Not classified
## 3297 13.4115 52.5235 High income Not classified
## 3298 13.4115 52.5235 High income Not classified
## 3299 13.4115 52.5235 High income Not classified
## 3300 13.4115 52.5235 High income Not classified
## 3301 13.4115 52.5235 High income Not classified
## 3302 13.4115 52.5235 High income Not classified
## 3303 13.4115 52.5235 High income Not classified
## 3304 13.4115 52.5235 High income Not classified
## 3305 13.4115 52.5235 High income Not classified
## 3306 13.4115 52.5235 High income Not classified
## 3307 13.4115 52.5235 High income Not classified
## 3308 13.4115 52.5235 High income Not classified
## 3309 13.4115 52.5235 High income Not classified
## 3310 13.4115 52.5235 High income Not classified
## 3311 13.4115 52.5235 High income Not classified
## 3312 13.4115 52.5235 High income Not classified
## 3313 13.4115 52.5235 High income Not classified
## 3314 13.4115 52.5235 High income Not classified
## 3315 13.4115 52.5235 High income Not classified
## 3316 13.4115 52.5235 High income Not classified
## 3317 13.4115 52.5235 High income Not classified
## 3318 13.4115 52.5235 High income Not classified
## 3319 13.4115 52.5235 High income Not classified
## 3320 13.4115 52.5235 High income Not classified
## 3321 13.4115 52.5235 High income Not classified
## 3322 13.4115 52.5235 High income Not classified
## 3323 13.4115 52.5235 High income Not classified
## 3324 13.4115 52.5235 High income Not classified
## 3325 13.4115 52.5235 High income Not classified
## 3326 13.4115 52.5235 High income Not classified
## 3327 13.4115 52.5235 High income Not classified
## 3328 13.4115 52.5235 High income Not classified
## 3329 13.4115 52.5235 High income Not classified
## 3330 13.4115 52.5235 High income Not classified
## 3331 13.4115 52.5235 High income Not classified
## 3332 13.4115 52.5235 High income Not classified
## 3333 13.4115 52.5235 High income Not classified
## 3334 13.4115 52.5235 High income Not classified
## 3335 13.4115 52.5235 High income Not classified
## 3336 13.4115 52.5235 High income Not classified
## 3337 13.4115 52.5235 High income Not classified
## 3338 13.4115 52.5235 High income Not classified
## 3339 13.4115 52.5235 High income Not classified
## 3340 13.4115 52.5235 High income Not classified
## 3341 13.4115 52.5235 High income Not classified
## 3342 13.4115 52.5235 High income Not classified
## 3343 13.4115 52.5235 High income Not classified
## 3344 13.4115 52.5235 High income Not classified
## 3345 13.4115 52.5235 High income Not classified
## 3346 13.4115 52.5235 High income Not classified
## 3347 13.4115 52.5235 High income Not classified
## 3348 13.4115 52.5235 High income Not classified
## 3349 43.1425 11.5806 Lower middle income IDA
## 3350 43.1425 11.5806 Lower middle income IDA
## 3351 43.1425 11.5806 Lower middle income IDA
## 3352 43.1425 11.5806 Lower middle income IDA
## 3353 43.1425 11.5806 Lower middle income IDA
## 3354 43.1425 11.5806 Lower middle income IDA
## 3355 43.1425 11.5806 Lower middle income IDA
## 3356 43.1425 11.5806 Lower middle income IDA
## 3357 43.1425 11.5806 Lower middle income IDA
## 3358 43.1425 11.5806 Lower middle income IDA
## 3359 43.1425 11.5806 Lower middle income IDA
## 3360 43.1425 11.5806 Lower middle income IDA
## 3361 43.1425 11.5806 Lower middle income IDA
## 3362 43.1425 11.5806 Lower middle income IDA
## 3363 43.1425 11.5806 Lower middle income IDA
## 3364 43.1425 11.5806 Lower middle income IDA
## 3365 43.1425 11.5806 Lower middle income IDA
## 3366 43.1425 11.5806 Lower middle income IDA
## 3367 43.1425 11.5806 Lower middle income IDA
## 3368 43.1425 11.5806 Lower middle income IDA
## 3369 43.1425 11.5806 Lower middle income IDA
## 3370 43.1425 11.5806 Lower middle income IDA
## 3371 43.1425 11.5806 Lower middle income IDA
## 3372 43.1425 11.5806 Lower middle income IDA
## 3373 43.1425 11.5806 Lower middle income IDA
## 3374 43.1425 11.5806 Lower middle income IDA
## 3375 43.1425 11.5806 Lower middle income IDA
## 3376 43.1425 11.5806 Lower middle income IDA
## 3377 43.1425 11.5806 Lower middle income IDA
## 3378 43.1425 11.5806 Lower middle income IDA
## 3379 43.1425 11.5806 Lower middle income IDA
## 3380 43.1425 11.5806 Lower middle income IDA
## 3381 43.1425 11.5806 Lower middle income IDA
## 3382 43.1425 11.5806 Lower middle income IDA
## 3383 43.1425 11.5806 Lower middle income IDA
## 3384 43.1425 11.5806 Lower middle income IDA
## 3385 43.1425 11.5806 Lower middle income IDA
## 3386 43.1425 11.5806 Lower middle income IDA
## 3387 43.1425 11.5806 Lower middle income IDA
## 3388 43.1425 11.5806 Lower middle income IDA
## 3389 43.1425 11.5806 Lower middle income IDA
## 3390 43.1425 11.5806 Lower middle income IDA
## 3391 43.1425 11.5806 Lower middle income IDA
## 3392 43.1425 11.5806 Lower middle income IDA
## 3393 43.1425 11.5806 Lower middle income IDA
## 3394 43.1425 11.5806 Lower middle income IDA
## 3395 43.1425 11.5806 Lower middle income IDA
## 3396 43.1425 11.5806 Lower middle income IDA
## 3397 43.1425 11.5806 Lower middle income IDA
## 3398 43.1425 11.5806 Lower middle income IDA
## 3399 43.1425 11.5806 Lower middle income IDA
## 3400 43.1425 11.5806 Lower middle income IDA
## 3401 43.1425 11.5806 Lower middle income IDA
## 3402 43.1425 11.5806 Lower middle income IDA
## 3403 43.1425 11.5806 Lower middle income IDA
## 3404 43.1425 11.5806 Lower middle income IDA
## 3405 43.1425 11.5806 Lower middle income IDA
## 3406 43.1425 11.5806 Lower middle income IDA
## 3407 43.1425 11.5806 Lower middle income IDA
## 3408 43.1425 11.5806 Lower middle income IDA
## 3409 43.1425 11.5806 Lower middle income IDA
## 3410 43.1425 11.5806 Lower middle income IDA
## 3411 12.5681 55.6763 High income Not classified
## 3412 12.5681 55.6763 High income Not classified
## 3413 12.5681 55.6763 High income Not classified
## 3414 12.5681 55.6763 High income Not classified
## 3415 12.5681 55.6763 High income Not classified
## 3416 12.5681 55.6763 High income Not classified
## 3417 12.5681 55.6763 High income Not classified
## 3418 12.5681 55.6763 High income Not classified
## 3419 12.5681 55.6763 High income Not classified
## 3420 12.5681 55.6763 High income Not classified
## 3421 12.5681 55.6763 High income Not classified
## 3422 12.5681 55.6763 High income Not classified
## 3423 12.5681 55.6763 High income Not classified
## 3424 12.5681 55.6763 High income Not classified
## 3425 12.5681 55.6763 High income Not classified
## 3426 12.5681 55.6763 High income Not classified
## 3427 12.5681 55.6763 High income Not classified
## 3428 12.5681 55.6763 High income Not classified
## 3429 12.5681 55.6763 High income Not classified
## 3430 12.5681 55.6763 High income Not classified
## 3431 12.5681 55.6763 High income Not classified
## 3432 12.5681 55.6763 High income Not classified
## 3433 12.5681 55.6763 High income Not classified
## 3434 12.5681 55.6763 High income Not classified
## 3435 12.5681 55.6763 High income Not classified
## 3436 12.5681 55.6763 High income Not classified
## 3437 12.5681 55.6763 High income Not classified
## 3438 12.5681 55.6763 High income Not classified
## 3439 12.5681 55.6763 High income Not classified
## 3440 12.5681 55.6763 High income Not classified
## 3441 12.5681 55.6763 High income Not classified
## 3442 12.5681 55.6763 High income Not classified
## 3443 12.5681 55.6763 High income Not classified
## 3444 12.5681 55.6763 High income Not classified
## 3445 12.5681 55.6763 High income Not classified
## 3446 12.5681 55.6763 High income Not classified
## 3447 12.5681 55.6763 High income Not classified
## 3448 12.5681 55.6763 High income Not classified
## 3449 12.5681 55.6763 High income Not classified
## 3450 12.5681 55.6763 High income Not classified
## 3451 12.5681 55.6763 High income Not classified
## 3452 12.5681 55.6763 High income Not classified
## 3453 12.5681 55.6763 High income Not classified
## 3454 12.5681 55.6763 High income Not classified
## 3455 12.5681 55.6763 High income Not classified
## 3456 12.5681 55.6763 High income Not classified
## 3457 12.5681 55.6763 High income Not classified
## 3458 12.5681 55.6763 High income Not classified
## 3459 12.5681 55.6763 High income Not classified
## 3460 12.5681 55.6763 High income Not classified
## 3461 12.5681 55.6763 High income Not classified
## 3462 12.5681 55.6763 High income Not classified
## 3463 12.5681 55.6763 High income Not classified
## 3464 12.5681 55.6763 High income Not classified
## 3465 12.5681 55.6763 High income Not classified
## 3466 12.5681 55.6763 High income Not classified
## 3467 12.5681 55.6763 High income Not classified
## 3468 12.5681 55.6763 High income Not classified
## 3469 12.5681 55.6763 High income Not classified
## 3470 12.5681 55.6763 High income Not classified
## 3471 12.5681 55.6763 High income Not classified
## 3472 12.5681 55.6763 High income Not classified
## 3473 -61.39 15.2976 Upper middle income Blend
## 3474 -61.39 15.2976 Upper middle income Blend
## 3475 -61.39 15.2976 Upper middle income Blend
## 3476 -61.39 15.2976 Upper middle income Blend
## 3477 -61.39 15.2976 Upper middle income Blend
## 3478 -61.39 15.2976 Upper middle income Blend
## 3479 -61.39 15.2976 Upper middle income Blend
## 3480 -61.39 15.2976 Upper middle income Blend
## 3481 -61.39 15.2976 Upper middle income Blend
## 3482 -61.39 15.2976 Upper middle income Blend
## 3483 -61.39 15.2976 Upper middle income Blend
## 3484 -61.39 15.2976 Upper middle income Blend
## 3485 -61.39 15.2976 Upper middle income Blend
## 3486 -61.39 15.2976 Upper middle income Blend
## 3487 -61.39 15.2976 Upper middle income Blend
## 3488 -61.39 15.2976 Upper middle income Blend
## 3489 -61.39 15.2976 Upper middle income Blend
## 3490 -61.39 15.2976 Upper middle income Blend
## 3491 -61.39 15.2976 Upper middle income Blend
## 3492 -61.39 15.2976 Upper middle income Blend
## 3493 -61.39 15.2976 Upper middle income Blend
## 3494 -61.39 15.2976 Upper middle income Blend
## 3495 -61.39 15.2976 Upper middle income Blend
## 3496 -61.39 15.2976 Upper middle income Blend
## 3497 -61.39 15.2976 Upper middle income Blend
## 3498 -61.39 15.2976 Upper middle income Blend
## 3499 -61.39 15.2976 Upper middle income Blend
## 3500 -61.39 15.2976 Upper middle income Blend
## 3501 -61.39 15.2976 Upper middle income Blend
## 3502 -61.39 15.2976 Upper middle income Blend
## 3503 -61.39 15.2976 Upper middle income Blend
## 3504 -61.39 15.2976 Upper middle income Blend
## 3505 -61.39 15.2976 Upper middle income Blend
## 3506 -61.39 15.2976 Upper middle income Blend
## 3507 -61.39 15.2976 Upper middle income Blend
## 3508 -61.39 15.2976 Upper middle income Blend
## 3509 -61.39 15.2976 Upper middle income Blend
## 3510 -61.39 15.2976 Upper middle income Blend
## 3511 -61.39 15.2976 Upper middle income Blend
## 3512 -61.39 15.2976 Upper middle income Blend
## 3513 -61.39 15.2976 Upper middle income Blend
## 3514 -61.39 15.2976 Upper middle income Blend
## 3515 -61.39 15.2976 Upper middle income Blend
## 3516 -61.39 15.2976 Upper middle income Blend
## 3517 -61.39 15.2976 Upper middle income Blend
## 3518 -61.39 15.2976 Upper middle income Blend
## 3519 -61.39 15.2976 Upper middle income Blend
## 3520 -61.39 15.2976 Upper middle income Blend
## 3521 -61.39 15.2976 Upper middle income Blend
## 3522 -61.39 15.2976 Upper middle income Blend
## 3523 -61.39 15.2976 Upper middle income Blend
## 3524 -61.39 15.2976 Upper middle income Blend
## 3525 -61.39 15.2976 Upper middle income Blend
## 3526 -61.39 15.2976 Upper middle income Blend
## 3527 -61.39 15.2976 Upper middle income Blend
## 3528 -61.39 15.2976 Upper middle income Blend
## 3529 -61.39 15.2976 Upper middle income Blend
## 3530 -61.39 15.2976 Upper middle income Blend
## 3531 -61.39 15.2976 Upper middle income Blend
## 3532 -61.39 15.2976 Upper middle income Blend
## 3533 -61.39 15.2976 Upper middle income Blend
## 3534 -61.39 15.2976 Upper middle income Blend
## 3535 -69.8908 18.479 Upper middle income IBRD
## 3536 -69.8908 18.479 Upper middle income IBRD
## 3537 -69.8908 18.479 Upper middle income IBRD
## 3538 -69.8908 18.479 Upper middle income IBRD
## 3539 -69.8908 18.479 Upper middle income IBRD
## 3540 -69.8908 18.479 Upper middle income IBRD
## 3541 -69.8908 18.479 Upper middle income IBRD
## 3542 -69.8908 18.479 Upper middle income IBRD
## 3543 -69.8908 18.479 Upper middle income IBRD
## 3544 -69.8908 18.479 Upper middle income IBRD
## 3545 -69.8908 18.479 Upper middle income IBRD
## 3546 -69.8908 18.479 Upper middle income IBRD
## 3547 -69.8908 18.479 Upper middle income IBRD
## 3548 -69.8908 18.479 Upper middle income IBRD
## 3549 -69.8908 18.479 Upper middle income IBRD
## 3550 -69.8908 18.479 Upper middle income IBRD
## 3551 -69.8908 18.479 Upper middle income IBRD
## 3552 -69.8908 18.479 Upper middle income IBRD
## 3553 -69.8908 18.479 Upper middle income IBRD
## 3554 -69.8908 18.479 Upper middle income IBRD
## 3555 -69.8908 18.479 Upper middle income IBRD
## 3556 -69.8908 18.479 Upper middle income IBRD
## 3557 -69.8908 18.479 Upper middle income IBRD
## 3558 -69.8908 18.479 Upper middle income IBRD
## 3559 -69.8908 18.479 Upper middle income IBRD
## 3560 -69.8908 18.479 Upper middle income IBRD
## 3561 -69.8908 18.479 Upper middle income IBRD
## 3562 -69.8908 18.479 Upper middle income IBRD
## 3563 -69.8908 18.479 Upper middle income IBRD
## 3564 -69.8908 18.479 Upper middle income IBRD
## 3565 -69.8908 18.479 Upper middle income IBRD
## 3566 -69.8908 18.479 Upper middle income IBRD
## 3567 -69.8908 18.479 Upper middle income IBRD
## 3568 -69.8908 18.479 Upper middle income IBRD
## 3569 -69.8908 18.479 Upper middle income IBRD
## 3570 -69.8908 18.479 Upper middle income IBRD
## 3571 -69.8908 18.479 Upper middle income IBRD
## 3572 -69.8908 18.479 Upper middle income IBRD
## 3573 -69.8908 18.479 Upper middle income IBRD
## 3574 -69.8908 18.479 Upper middle income IBRD
## 3575 -69.8908 18.479 Upper middle income IBRD
## 3576 -69.8908 18.479 Upper middle income IBRD
## 3577 -69.8908 18.479 Upper middle income IBRD
## 3578 -69.8908 18.479 Upper middle income IBRD
## 3579 -69.8908 18.479 Upper middle income IBRD
## 3580 -69.8908 18.479 Upper middle income IBRD
## 3581 -69.8908 18.479 Upper middle income IBRD
## 3582 -69.8908 18.479 Upper middle income IBRD
## 3583 -69.8908 18.479 Upper middle income IBRD
## 3584 -69.8908 18.479 Upper middle income IBRD
## 3585 -69.8908 18.479 Upper middle income IBRD
## 3586 -69.8908 18.479 Upper middle income IBRD
## 3587 -69.8908 18.479 Upper middle income IBRD
## 3588 -69.8908 18.479 Upper middle income IBRD
## 3589 -69.8908 18.479 Upper middle income IBRD
## 3590 -69.8908 18.479 Upper middle income IBRD
## 3591 -69.8908 18.479 Upper middle income IBRD
## 3592 -69.8908 18.479 Upper middle income IBRD
## 3593 -69.8908 18.479 Upper middle income IBRD
## 3594 -69.8908 18.479 Upper middle income IBRD
## 3595 -69.8908 18.479 Upper middle income IBRD
## 3596 -69.8908 18.479 Upper middle income IBRD
## 3597 3.05097 36.7397 Lower middle income IBRD
## 3598 3.05097 36.7397 Lower middle income IBRD
## 3599 3.05097 36.7397 Lower middle income IBRD
## 3600 3.05097 36.7397 Lower middle income IBRD
## 3601 3.05097 36.7397 Lower middle income IBRD
## 3602 3.05097 36.7397 Lower middle income IBRD
## 3603 3.05097 36.7397 Lower middle income IBRD
## 3604 3.05097 36.7397 Lower middle income IBRD
## 3605 3.05097 36.7397 Lower middle income IBRD
## 3606 3.05097 36.7397 Lower middle income IBRD
## 3607 3.05097 36.7397 Lower middle income IBRD
## 3608 3.05097 36.7397 Lower middle income IBRD
## 3609 3.05097 36.7397 Lower middle income IBRD
## 3610 3.05097 36.7397 Lower middle income IBRD
## 3611 3.05097 36.7397 Lower middle income IBRD
## 3612 3.05097 36.7397 Lower middle income IBRD
## 3613 3.05097 36.7397 Lower middle income IBRD
## 3614 3.05097 36.7397 Lower middle income IBRD
## 3615 3.05097 36.7397 Lower middle income IBRD
## 3616 3.05097 36.7397 Lower middle income IBRD
## 3617 3.05097 36.7397 Lower middle income IBRD
## 3618 3.05097 36.7397 Lower middle income IBRD
## 3619 3.05097 36.7397 Lower middle income IBRD
## 3620 3.05097 36.7397 Lower middle income IBRD
## 3621 3.05097 36.7397 Lower middle income IBRD
## 3622 3.05097 36.7397 Lower middle income IBRD
## 3623 3.05097 36.7397 Lower middle income IBRD
## 3624 3.05097 36.7397 Lower middle income IBRD
## 3625 3.05097 36.7397 Lower middle income IBRD
## 3626 3.05097 36.7397 Lower middle income IBRD
## 3627 3.05097 36.7397 Lower middle income IBRD
## 3628 3.05097 36.7397 Lower middle income IBRD
## 3629 3.05097 36.7397 Lower middle income IBRD
## 3630 3.05097 36.7397 Lower middle income IBRD
## 3631 3.05097 36.7397 Lower middle income IBRD
## 3632 3.05097 36.7397 Lower middle income IBRD
## 3633 3.05097 36.7397 Lower middle income IBRD
## 3634 3.05097 36.7397 Lower middle income IBRD
## 3635 3.05097 36.7397 Lower middle income IBRD
## 3636 3.05097 36.7397 Lower middle income IBRD
## 3637 3.05097 36.7397 Lower middle income IBRD
## 3638 3.05097 36.7397 Lower middle income IBRD
## 3639 3.05097 36.7397 Lower middle income IBRD
## 3640 3.05097 36.7397 Lower middle income IBRD
## 3641 3.05097 36.7397 Lower middle income IBRD
## 3642 3.05097 36.7397 Lower middle income IBRD
## 3643 3.05097 36.7397 Lower middle income IBRD
## 3644 3.05097 36.7397 Lower middle income IBRD
## 3645 3.05097 36.7397 Lower middle income IBRD
## 3646 3.05097 36.7397 Lower middle income IBRD
## 3647 3.05097 36.7397 Lower middle income IBRD
## 3648 3.05097 36.7397 Lower middle income IBRD
## 3649 3.05097 36.7397 Lower middle income IBRD
## 3650 3.05097 36.7397 Lower middle income IBRD
## 3651 3.05097 36.7397 Lower middle income IBRD
## 3652 3.05097 36.7397 Lower middle income IBRD
## 3653 3.05097 36.7397 Lower middle income IBRD
## 3654 3.05097 36.7397 Lower middle income IBRD
## 3655 3.05097 36.7397 Lower middle income IBRD
## 3656 3.05097 36.7397 Lower middle income IBRD
## 3657 3.05097 36.7397 Lower middle income IBRD
## 3658 3.05097 36.7397 Lower middle income IBRD
## 3659 -78.5243 -0.229498 Upper middle income IBRD
## 3660 -78.5243 -0.229498 Upper middle income IBRD
## 3661 -78.5243 -0.229498 Upper middle income IBRD
## 3662 -78.5243 -0.229498 Upper middle income IBRD
## 3663 -78.5243 -0.229498 Upper middle income IBRD
## 3664 -78.5243 -0.229498 Upper middle income IBRD
## 3665 -78.5243 -0.229498 Upper middle income IBRD
## 3666 -78.5243 -0.229498 Upper middle income IBRD
## 3667 -78.5243 -0.229498 Upper middle income IBRD
## 3668 -78.5243 -0.229498 Upper middle income IBRD
## 3669 -78.5243 -0.229498 Upper middle income IBRD
## 3670 -78.5243 -0.229498 Upper middle income IBRD
## 3671 -78.5243 -0.229498 Upper middle income IBRD
## 3672 -78.5243 -0.229498 Upper middle income IBRD
## 3673 -78.5243 -0.229498 Upper middle income IBRD
## 3674 -78.5243 -0.229498 Upper middle income IBRD
## 3675 -78.5243 -0.229498 Upper middle income IBRD
## 3676 -78.5243 -0.229498 Upper middle income IBRD
## 3677 -78.5243 -0.229498 Upper middle income IBRD
## 3678 -78.5243 -0.229498 Upper middle income IBRD
## 3679 -78.5243 -0.229498 Upper middle income IBRD
## 3680 -78.5243 -0.229498 Upper middle income IBRD
## 3681 -78.5243 -0.229498 Upper middle income IBRD
## 3682 -78.5243 -0.229498 Upper middle income IBRD
## 3683 -78.5243 -0.229498 Upper middle income IBRD
## 3684 -78.5243 -0.229498 Upper middle income IBRD
## 3685 -78.5243 -0.229498 Upper middle income IBRD
## 3686 -78.5243 -0.229498 Upper middle income IBRD
## 3687 -78.5243 -0.229498 Upper middle income IBRD
## 3688 -78.5243 -0.229498 Upper middle income IBRD
## 3689 -78.5243 -0.229498 Upper middle income IBRD
## 3690 -78.5243 -0.229498 Upper middle income IBRD
## 3691 -78.5243 -0.229498 Upper middle income IBRD
## 3692 -78.5243 -0.229498 Upper middle income IBRD
## 3693 -78.5243 -0.229498 Upper middle income IBRD
## 3694 -78.5243 -0.229498 Upper middle income IBRD
## 3695 -78.5243 -0.229498 Upper middle income IBRD
## 3696 -78.5243 -0.229498 Upper middle income IBRD
## 3697 -78.5243 -0.229498 Upper middle income IBRD
## 3698 -78.5243 -0.229498 Upper middle income IBRD
## 3699 -78.5243 -0.229498 Upper middle income IBRD
## 3700 -78.5243 -0.229498 Upper middle income IBRD
## 3701 -78.5243 -0.229498 Upper middle income IBRD
## 3702 -78.5243 -0.229498 Upper middle income IBRD
## 3703 -78.5243 -0.229498 Upper middle income IBRD
## 3704 -78.5243 -0.229498 Upper middle income IBRD
## 3705 -78.5243 -0.229498 Upper middle income IBRD
## 3706 -78.5243 -0.229498 Upper middle income IBRD
## 3707 -78.5243 -0.229498 Upper middle income IBRD
## 3708 -78.5243 -0.229498 Upper middle income IBRD
## 3709 -78.5243 -0.229498 Upper middle income IBRD
## 3710 -78.5243 -0.229498 Upper middle income IBRD
## 3711 -78.5243 -0.229498 Upper middle income IBRD
## 3712 -78.5243 -0.229498 Upper middle income IBRD
## 3713 -78.5243 -0.229498 Upper middle income IBRD
## 3714 -78.5243 -0.229498 Upper middle income IBRD
## 3715 -78.5243 -0.229498 Upper middle income IBRD
## 3716 -78.5243 -0.229498 Upper middle income IBRD
## 3717 -78.5243 -0.229498 Upper middle income IBRD
## 3718 -78.5243 -0.229498 Upper middle income IBRD
## 3719 -78.5243 -0.229498 Upper middle income IBRD
## 3720 -78.5243 -0.229498 Upper middle income IBRD
## 3721 24.7586 59.4392 High income Not classified
## 3722 24.7586 59.4392 High income Not classified
## 3723 24.7586 59.4392 High income Not classified
## 3724 24.7586 59.4392 High income Not classified
## 3725 24.7586 59.4392 High income Not classified
## 3726 24.7586 59.4392 High income Not classified
## 3727 24.7586 59.4392 High income Not classified
## 3728 24.7586 59.4392 High income Not classified
## 3729 24.7586 59.4392 High income Not classified
## 3730 24.7586 59.4392 High income Not classified
## 3731 24.7586 59.4392 High income Not classified
## 3732 24.7586 59.4392 High income Not classified
## 3733 24.7586 59.4392 High income Not classified
## 3734 24.7586 59.4392 High income Not classified
## 3735 24.7586 59.4392 High income Not classified
## 3736 24.7586 59.4392 High income Not classified
## 3737 24.7586 59.4392 High income Not classified
## 3738 24.7586 59.4392 High income Not classified
## 3739 24.7586 59.4392 High income Not classified
## 3740 24.7586 59.4392 High income Not classified
## 3741 24.7586 59.4392 High income Not classified
## 3742 24.7586 59.4392 High income Not classified
## 3743 24.7586 59.4392 High income Not classified
## 3744 24.7586 59.4392 High income Not classified
## 3745 24.7586 59.4392 High income Not classified
## 3746 24.7586 59.4392 High income Not classified
## 3747 24.7586 59.4392 High income Not classified
## 3748 24.7586 59.4392 High income Not classified
## 3749 24.7586 59.4392 High income Not classified
## 3750 24.7586 59.4392 High income Not classified
## 3751 24.7586 59.4392 High income Not classified
## 3752 24.7586 59.4392 High income Not classified
## 3753 24.7586 59.4392 High income Not classified
## 3754 24.7586 59.4392 High income Not classified
## 3755 24.7586 59.4392 High income Not classified
## 3756 24.7586 59.4392 High income Not classified
## 3757 24.7586 59.4392 High income Not classified
## 3758 24.7586 59.4392 High income Not classified
## 3759 24.7586 59.4392 High income Not classified
## 3760 24.7586 59.4392 High income Not classified
## 3761 24.7586 59.4392 High income Not classified
## 3762 24.7586 59.4392 High income Not classified
## 3763 24.7586 59.4392 High income Not classified
## 3764 24.7586 59.4392 High income Not classified
## 3765 24.7586 59.4392 High income Not classified
## 3766 24.7586 59.4392 High income Not classified
## 3767 24.7586 59.4392 High income Not classified
## 3768 24.7586 59.4392 High income Not classified
## 3769 24.7586 59.4392 High income Not classified
## 3770 24.7586 59.4392 High income Not classified
## 3771 24.7586 59.4392 High income Not classified
## 3772 24.7586 59.4392 High income Not classified
## 3773 24.7586 59.4392 High income Not classified
## 3774 24.7586 59.4392 High income Not classified
## 3775 24.7586 59.4392 High income Not classified
## 3776 24.7586 59.4392 High income Not classified
## 3777 24.7586 59.4392 High income Not classified
## 3778 24.7586 59.4392 High income Not classified
## 3779 24.7586 59.4392 High income Not classified
## 3780 24.7586 59.4392 High income Not classified
## 3781 24.7586 59.4392 High income Not classified
## 3782 24.7586 59.4392 High income Not classified
## 3783 31.2461 30.0982 Lower middle income IBRD
## 3784 31.2461 30.0982 Lower middle income IBRD
## 3785 31.2461 30.0982 Lower middle income IBRD
## 3786 31.2461 30.0982 Lower middle income IBRD
## 3787 31.2461 30.0982 Lower middle income IBRD
## 3788 31.2461 30.0982 Lower middle income IBRD
## 3789 31.2461 30.0982 Lower middle income IBRD
## 3790 31.2461 30.0982 Lower middle income IBRD
## 3791 31.2461 30.0982 Lower middle income IBRD
## 3792 31.2461 30.0982 Lower middle income IBRD
## 3793 31.2461 30.0982 Lower middle income IBRD
## 3794 31.2461 30.0982 Lower middle income IBRD
## 3795 31.2461 30.0982 Lower middle income IBRD
## 3796 31.2461 30.0982 Lower middle income IBRD
## 3797 31.2461 30.0982 Lower middle income IBRD
## 3798 31.2461 30.0982 Lower middle income IBRD
## 3799 31.2461 30.0982 Lower middle income IBRD
## 3800 31.2461 30.0982 Lower middle income IBRD
## 3801 31.2461 30.0982 Lower middle income IBRD
## 3802 31.2461 30.0982 Lower middle income IBRD
## 3803 31.2461 30.0982 Lower middle income IBRD
## 3804 31.2461 30.0982 Lower middle income IBRD
## 3805 31.2461 30.0982 Lower middle income IBRD
## 3806 31.2461 30.0982 Lower middle income IBRD
## 3807 31.2461 30.0982 Lower middle income IBRD
## 3808 31.2461 30.0982 Lower middle income IBRD
## 3809 31.2461 30.0982 Lower middle income IBRD
## 3810 31.2461 30.0982 Lower middle income IBRD
## 3811 31.2461 30.0982 Lower middle income IBRD
## 3812 31.2461 30.0982 Lower middle income IBRD
## 3813 31.2461 30.0982 Lower middle income IBRD
## 3814 31.2461 30.0982 Lower middle income IBRD
## 3815 31.2461 30.0982 Lower middle income IBRD
## 3816 31.2461 30.0982 Lower middle income IBRD
## 3817 31.2461 30.0982 Lower middle income IBRD
## 3818 31.2461 30.0982 Lower middle income IBRD
## 3819 31.2461 30.0982 Lower middle income IBRD
## 3820 31.2461 30.0982 Lower middle income IBRD
## 3821 31.2461 30.0982 Lower middle income IBRD
## 3822 31.2461 30.0982 Lower middle income IBRD
## 3823 31.2461 30.0982 Lower middle income IBRD
## 3824 31.2461 30.0982 Lower middle income IBRD
## 3825 31.2461 30.0982 Lower middle income IBRD
## 3826 31.2461 30.0982 Lower middle income IBRD
## 3827 31.2461 30.0982 Lower middle income IBRD
## 3828 31.2461 30.0982 Lower middle income IBRD
## 3829 31.2461 30.0982 Lower middle income IBRD
## 3830 31.2461 30.0982 Lower middle income IBRD
## 3831 31.2461 30.0982 Lower middle income IBRD
## 3832 31.2461 30.0982 Lower middle income IBRD
## 3833 31.2461 30.0982 Lower middle income IBRD
## 3834 31.2461 30.0982 Lower middle income IBRD
## 3835 31.2461 30.0982 Lower middle income IBRD
## 3836 31.2461 30.0982 Lower middle income IBRD
## 3837 31.2461 30.0982 Lower middle income IBRD
## 3838 31.2461 30.0982 Lower middle income IBRD
## 3839 31.2461 30.0982 Lower middle income IBRD
## 3840 31.2461 30.0982 Lower middle income IBRD
## 3841 31.2461 30.0982 Lower middle income IBRD
## 3842 31.2461 30.0982 Lower middle income IBRD
## 3843 31.2461 30.0982 Lower middle income IBRD
## 3844 31.2461 30.0982 Lower middle income IBRD
## 3845 38.9183 15.3315 Low income IDA
## 3846 38.9183 15.3315 Low income IDA
## 3847 38.9183 15.3315 Low income IDA
## 3848 38.9183 15.3315 Low income IDA
## 3849 38.9183 15.3315 Low income IDA
## 3850 38.9183 15.3315 Low income IDA
## 3851 38.9183 15.3315 Low income IDA
## 3852 38.9183 15.3315 Low income IDA
## 3853 38.9183 15.3315 Low income IDA
## 3854 38.9183 15.3315 Low income IDA
## 3855 38.9183 15.3315 Low income IDA
## 3856 38.9183 15.3315 Low income IDA
## 3857 38.9183 15.3315 Low income IDA
## 3858 38.9183 15.3315 Low income IDA
## 3859 38.9183 15.3315 Low income IDA
## 3860 38.9183 15.3315 Low income IDA
## 3861 38.9183 15.3315 Low income IDA
## 3862 38.9183 15.3315 Low income IDA
## 3863 38.9183 15.3315 Low income IDA
## 3864 38.9183 15.3315 Low income IDA
## 3865 38.9183 15.3315 Low income IDA
## 3866 38.9183 15.3315 Low income IDA
## 3867 38.9183 15.3315 Low income IDA
## 3868 38.9183 15.3315 Low income IDA
## 3869 38.9183 15.3315 Low income IDA
## 3870 38.9183 15.3315 Low income IDA
## 3871 38.9183 15.3315 Low income IDA
## 3872 38.9183 15.3315 Low income IDA
## 3873 38.9183 15.3315 Low income IDA
## 3874 38.9183 15.3315 Low income IDA
## 3875 38.9183 15.3315 Low income IDA
## 3876 38.9183 15.3315 Low income IDA
## 3877 38.9183 15.3315 Low income IDA
## 3878 38.9183 15.3315 Low income IDA
## 3879 38.9183 15.3315 Low income IDA
## 3880 38.9183 15.3315 Low income IDA
## 3881 38.9183 15.3315 Low income IDA
## 3882 38.9183 15.3315 Low income IDA
## 3883 38.9183 15.3315 Low income IDA
## 3884 38.9183 15.3315 Low income IDA
## 3885 38.9183 15.3315 Low income IDA
## 3886 38.9183 15.3315 Low income IDA
## 3887 38.9183 15.3315 Low income IDA
## 3888 38.9183 15.3315 Low income IDA
## 3889 38.9183 15.3315 Low income IDA
## 3890 38.9183 15.3315 Low income IDA
## 3891 38.9183 15.3315 Low income IDA
## 3892 38.9183 15.3315 Low income IDA
## 3893 38.9183 15.3315 Low income IDA
## 3894 38.9183 15.3315 Low income IDA
## 3895 38.9183 15.3315 Low income IDA
## 3896 38.9183 15.3315 Low income IDA
## 3897 38.9183 15.3315 Low income IDA
## 3898 38.9183 15.3315 Low income IDA
## 3899 38.9183 15.3315 Low income IDA
## 3900 38.9183 15.3315 Low income IDA
## 3901 38.9183 15.3315 Low income IDA
## 3902 38.9183 15.3315 Low income IDA
## 3903 38.9183 15.3315 Low income IDA
## 3904 38.9183 15.3315 Low income IDA
## 3905 38.9183 15.3315 Low income IDA
## 3906 38.9183 15.3315 Low income IDA
## 3907 -3.70327 40.4167 High income Not classified
## 3908 -3.70327 40.4167 High income Not classified
## 3909 -3.70327 40.4167 High income Not classified
## 3910 -3.70327 40.4167 High income Not classified
## 3911 -3.70327 40.4167 High income Not classified
## 3912 -3.70327 40.4167 High income Not classified
## 3913 -3.70327 40.4167 High income Not classified
## 3914 -3.70327 40.4167 High income Not classified
## 3915 -3.70327 40.4167 High income Not classified
## 3916 -3.70327 40.4167 High income Not classified
## 3917 -3.70327 40.4167 High income Not classified
## 3918 -3.70327 40.4167 High income Not classified
## 3919 -3.70327 40.4167 High income Not classified
## 3920 -3.70327 40.4167 High income Not classified
## 3921 -3.70327 40.4167 High income Not classified
## 3922 -3.70327 40.4167 High income Not classified
## 3923 -3.70327 40.4167 High income Not classified
## 3924 -3.70327 40.4167 High income Not classified
## 3925 -3.70327 40.4167 High income Not classified
## 3926 -3.70327 40.4167 High income Not classified
## 3927 -3.70327 40.4167 High income Not classified
## 3928 -3.70327 40.4167 High income Not classified
## 3929 -3.70327 40.4167 High income Not classified
## 3930 -3.70327 40.4167 High income Not classified
## 3931 -3.70327 40.4167 High income Not classified
## 3932 -3.70327 40.4167 High income Not classified
## 3933 -3.70327 40.4167 High income Not classified
## 3934 -3.70327 40.4167 High income Not classified
## 3935 -3.70327 40.4167 High income Not classified
## 3936 -3.70327 40.4167 High income Not classified
## 3937 -3.70327 40.4167 High income Not classified
## 3938 -3.70327 40.4167 High income Not classified
## 3939 -3.70327 40.4167 High income Not classified
## 3940 -3.70327 40.4167 High income Not classified
## 3941 -3.70327 40.4167 High income Not classified
## 3942 -3.70327 40.4167 High income Not classified
## 3943 -3.70327 40.4167 High income Not classified
## 3944 -3.70327 40.4167 High income Not classified
## 3945 -3.70327 40.4167 High income Not classified
## 3946 -3.70327 40.4167 High income Not classified
## 3947 -3.70327 40.4167 High income Not classified
## 3948 -3.70327 40.4167 High income Not classified
## 3949 -3.70327 40.4167 High income Not classified
## 3950 -3.70327 40.4167 High income Not classified
## 3951 -3.70327 40.4167 High income Not classified
## 3952 -3.70327 40.4167 High income Not classified
## 3953 -3.70327 40.4167 High income Not classified
## 3954 -3.70327 40.4167 High income Not classified
## 3955 -3.70327 40.4167 High income Not classified
## 3956 -3.70327 40.4167 High income Not classified
## 3957 -3.70327 40.4167 High income Not classified
## 3958 -3.70327 40.4167 High income Not classified
## 3959 -3.70327 40.4167 High income Not classified
## 3960 -3.70327 40.4167 High income Not classified
## 3961 -3.70327 40.4167 High income Not classified
## 3962 -3.70327 40.4167 High income Not classified
## 3963 -3.70327 40.4167 High income Not classified
## 3964 -3.70327 40.4167 High income Not classified
## 3965 -3.70327 40.4167 High income Not classified
## 3966 -3.70327 40.4167 High income Not classified
## 3967 -3.70327 40.4167 High income Not classified
## 3968 -3.70327 40.4167 High income Not classified
## 3969 38.7468 9.02274 Low income IDA
## 3970 38.7468 9.02274 Low income IDA
## 3971 38.7468 9.02274 Low income IDA
## 3972 38.7468 9.02274 Low income IDA
## 3973 38.7468 9.02274 Low income IDA
## 3974 38.7468 9.02274 Low income IDA
## 3975 38.7468 9.02274 Low income IDA
## 3976 38.7468 9.02274 Low income IDA
## 3977 38.7468 9.02274 Low income IDA
## 3978 38.7468 9.02274 Low income IDA
## 3979 38.7468 9.02274 Low income IDA
## 3980 38.7468 9.02274 Low income IDA
## 3981 38.7468 9.02274 Low income IDA
## 3982 38.7468 9.02274 Low income IDA
## 3983 38.7468 9.02274 Low income IDA
## 3984 38.7468 9.02274 Low income IDA
## 3985 38.7468 9.02274 Low income IDA
## 3986 38.7468 9.02274 Low income IDA
## 3987 38.7468 9.02274 Low income IDA
## 3988 38.7468 9.02274 Low income IDA
## 3989 38.7468 9.02274 Low income IDA
## 3990 38.7468 9.02274 Low income IDA
## 3991 38.7468 9.02274 Low income IDA
## 3992 38.7468 9.02274 Low income IDA
## 3993 38.7468 9.02274 Low income IDA
## 3994 38.7468 9.02274 Low income IDA
## 3995 38.7468 9.02274 Low income IDA
## 3996 38.7468 9.02274 Low income IDA
## 3997 38.7468 9.02274 Low income IDA
## 3998 38.7468 9.02274 Low income IDA
## 3999 38.7468 9.02274 Low income IDA
## 4000 38.7468 9.02274 Low income IDA
## 4001 38.7468 9.02274 Low income IDA
## 4002 38.7468 9.02274 Low income IDA
## 4003 38.7468 9.02274 Low income IDA
## 4004 38.7468 9.02274 Low income IDA
## 4005 38.7468 9.02274 Low income IDA
## 4006 38.7468 9.02274 Low income IDA
## 4007 38.7468 9.02274 Low income IDA
## 4008 38.7468 9.02274 Low income IDA
## 4009 38.7468 9.02274 Low income IDA
## 4010 38.7468 9.02274 Low income IDA
## 4011 38.7468 9.02274 Low income IDA
## 4012 38.7468 9.02274 Low income IDA
## 4013 38.7468 9.02274 Low income IDA
## 4014 38.7468 9.02274 Low income IDA
## 4015 38.7468 9.02274 Low income IDA
## 4016 38.7468 9.02274 Low income IDA
## 4017 38.7468 9.02274 Low income IDA
## 4018 38.7468 9.02274 Low income IDA
## 4019 38.7468 9.02274 Low income IDA
## 4020 38.7468 9.02274 Low income IDA
## 4021 38.7468 9.02274 Low income IDA
## 4022 38.7468 9.02274 Low income IDA
## 4023 38.7468 9.02274 Low income IDA
## 4024 38.7468 9.02274 Low income IDA
## 4025 38.7468 9.02274 Low income IDA
## 4026 38.7468 9.02274 Low income IDA
## 4027 38.7468 9.02274 Low income IDA
## 4028 38.7468 9.02274 Low income IDA
## 4029 38.7468 9.02274 Low income IDA
## 4030 38.7468 9.02274 Low income IDA
## 4031 Aggregates Aggregates
## 4032 Aggregates Aggregates
## 4033 Aggregates Aggregates
## 4034 Aggregates Aggregates
## 4035 Aggregates Aggregates
## 4036 Aggregates Aggregates
## 4037 Aggregates Aggregates
## 4038 Aggregates Aggregates
## 4039 Aggregates Aggregates
## 4040 Aggregates Aggregates
## 4041 Aggregates Aggregates
## 4042 Aggregates Aggregates
## 4043 Aggregates Aggregates
## 4044 Aggregates Aggregates
## 4045 Aggregates Aggregates
## 4046 Aggregates Aggregates
## 4047 Aggregates Aggregates
## 4048 Aggregates Aggregates
## 4049 Aggregates Aggregates
## 4050 Aggregates Aggregates
## 4051 Aggregates Aggregates
## 4052 Aggregates Aggregates
## 4053 Aggregates Aggregates
## 4054 Aggregates Aggregates
## 4055 Aggregates Aggregates
## 4056 Aggregates Aggregates
## 4057 Aggregates Aggregates
## 4058 Aggregates Aggregates
## 4059 Aggregates Aggregates
## 4060 Aggregates Aggregates
## 4061 Aggregates Aggregates
## 4062 Aggregates Aggregates
## 4063 Aggregates Aggregates
## 4064 Aggregates Aggregates
## 4065 Aggregates Aggregates
## 4066 Aggregates Aggregates
## 4067 Aggregates Aggregates
## 4068 Aggregates Aggregates
## 4069 Aggregates Aggregates
## 4070 Aggregates Aggregates
## 4071 Aggregates Aggregates
## 4072 Aggregates Aggregates
## 4073 Aggregates Aggregates
## 4074 Aggregates Aggregates
## 4075 Aggregates Aggregates
## 4076 Aggregates Aggregates
## 4077 Aggregates Aggregates
## 4078 Aggregates Aggregates
## 4079 Aggregates Aggregates
## 4080 Aggregates Aggregates
## 4081 Aggregates Aggregates
## 4082 Aggregates Aggregates
## 4083 Aggregates Aggregates
## 4084 Aggregates Aggregates
## 4085 Aggregates Aggregates
## 4086 Aggregates Aggregates
## 4087 Aggregates Aggregates
## 4088 Aggregates Aggregates
## 4089 Aggregates Aggregates
## 4090 Aggregates Aggregates
## 4091 Aggregates Aggregates
## 4092 Aggregates Aggregates
## 4093 Aggregates Aggregates
## 4094 Aggregates Aggregates
## 4095 Aggregates Aggregates
## 4096 Aggregates Aggregates
## 4097 Aggregates Aggregates
## 4098 Aggregates Aggregates
## 4099 Aggregates Aggregates
## 4100 Aggregates Aggregates
## 4101 Aggregates Aggregates
## 4102 Aggregates Aggregates
## 4103 Aggregates Aggregates
## 4104 Aggregates Aggregates
## 4105 Aggregates Aggregates
## 4106 Aggregates Aggregates
## 4107 Aggregates Aggregates
## 4108 Aggregates Aggregates
## 4109 Aggregates Aggregates
## 4110 Aggregates Aggregates
## 4111 Aggregates Aggregates
## 4112 Aggregates Aggregates
## 4113 Aggregates Aggregates
## 4114 Aggregates Aggregates
## 4115 Aggregates Aggregates
## 4116 Aggregates Aggregates
## 4117 Aggregates Aggregates
## 4118 Aggregates Aggregates
## 4119 Aggregates Aggregates
## 4120 Aggregates Aggregates
## 4121 Aggregates Aggregates
## 4122 Aggregates Aggregates
## 4123 Aggregates Aggregates
## 4124 Aggregates Aggregates
## 4125 Aggregates Aggregates
## 4126 Aggregates Aggregates
## 4127 Aggregates Aggregates
## 4128 Aggregates Aggregates
## 4129 Aggregates Aggregates
## 4130 Aggregates Aggregates
## 4131 Aggregates Aggregates
## 4132 Aggregates Aggregates
## 4133 Aggregates Aggregates
## 4134 Aggregates Aggregates
## 4135 Aggregates Aggregates
## 4136 Aggregates Aggregates
## 4137 Aggregates Aggregates
## 4138 Aggregates Aggregates
## 4139 Aggregates Aggregates
## 4140 Aggregates Aggregates
## 4141 Aggregates Aggregates
## 4142 Aggregates Aggregates
## 4143 Aggregates Aggregates
## 4144 Aggregates Aggregates
## 4145 Aggregates Aggregates
## 4146 Aggregates Aggregates
## 4147 Aggregates Aggregates
## 4148 Aggregates Aggregates
## 4149 Aggregates Aggregates
## 4150 Aggregates Aggregates
## 4151 Aggregates Aggregates
## 4152 Aggregates Aggregates
## 4153 Aggregates Aggregates
## 4154 Aggregates Aggregates
## 4155 24.9525 60.1608 High income Not classified
## 4156 24.9525 60.1608 High income Not classified
## 4157 24.9525 60.1608 High income Not classified
## 4158 24.9525 60.1608 High income Not classified
## 4159 24.9525 60.1608 High income Not classified
## 4160 24.9525 60.1608 High income Not classified
## 4161 24.9525 60.1608 High income Not classified
## 4162 24.9525 60.1608 High income Not classified
## 4163 24.9525 60.1608 High income Not classified
## 4164 24.9525 60.1608 High income Not classified
## 4165 24.9525 60.1608 High income Not classified
## 4166 24.9525 60.1608 High income Not classified
## 4167 24.9525 60.1608 High income Not classified
## 4168 24.9525 60.1608 High income Not classified
## 4169 24.9525 60.1608 High income Not classified
## 4170 24.9525 60.1608 High income Not classified
## 4171 24.9525 60.1608 High income Not classified
## 4172 24.9525 60.1608 High income Not classified
## 4173 24.9525 60.1608 High income Not classified
## 4174 24.9525 60.1608 High income Not classified
## 4175 24.9525 60.1608 High income Not classified
## 4176 24.9525 60.1608 High income Not classified
## 4177 24.9525 60.1608 High income Not classified
## 4178 24.9525 60.1608 High income Not classified
## 4179 24.9525 60.1608 High income Not classified
## 4180 24.9525 60.1608 High income Not classified
## 4181 24.9525 60.1608 High income Not classified
## 4182 24.9525 60.1608 High income Not classified
## 4183 24.9525 60.1608 High income Not classified
## 4184 24.9525 60.1608 High income Not classified
## 4185 24.9525 60.1608 High income Not classified
## 4186 24.9525 60.1608 High income Not classified
## 4187 24.9525 60.1608 High income Not classified
## 4188 24.9525 60.1608 High income Not classified
## 4189 24.9525 60.1608 High income Not classified
## 4190 24.9525 60.1608 High income Not classified
## 4191 24.9525 60.1608 High income Not classified
## 4192 24.9525 60.1608 High income Not classified
## 4193 24.9525 60.1608 High income Not classified
## 4194 24.9525 60.1608 High income Not classified
## 4195 24.9525 60.1608 High income Not classified
## 4196 24.9525 60.1608 High income Not classified
## 4197 24.9525 60.1608 High income Not classified
## 4198 24.9525 60.1608 High income Not classified
## 4199 24.9525 60.1608 High income Not classified
## 4200 24.9525 60.1608 High income Not classified
## 4201 24.9525 60.1608 High income Not classified
## 4202 24.9525 60.1608 High income Not classified
## 4203 24.9525 60.1608 High income Not classified
## 4204 24.9525 60.1608 High income Not classified
## 4205 24.9525 60.1608 High income Not classified
## 4206 24.9525 60.1608 High income Not classified
## 4207 24.9525 60.1608 High income Not classified
## 4208 24.9525 60.1608 High income Not classified
## 4209 24.9525 60.1608 High income Not classified
## 4210 24.9525 60.1608 High income Not classified
## 4211 24.9525 60.1608 High income Not classified
## 4212 24.9525 60.1608 High income Not classified
## 4213 24.9525 60.1608 High income Not classified
## 4214 24.9525 60.1608 High income Not classified
## 4215 24.9525 60.1608 High income Not classified
## 4216 24.9525 60.1608 High income Not classified
## 4217 178.399 -18.1149 Upper middle income Blend
## 4218 178.399 -18.1149 Upper middle income Blend
## 4219 178.399 -18.1149 Upper middle income Blend
## 4220 178.399 -18.1149 Upper middle income Blend
## 4221 178.399 -18.1149 Upper middle income Blend
## 4222 178.399 -18.1149 Upper middle income Blend
## 4223 178.399 -18.1149 Upper middle income Blend
## 4224 178.399 -18.1149 Upper middle income Blend
## 4225 178.399 -18.1149 Upper middle income Blend
## 4226 178.399 -18.1149 Upper middle income Blend
## 4227 178.399 -18.1149 Upper middle income Blend
## 4228 178.399 -18.1149 Upper middle income Blend
## 4229 178.399 -18.1149 Upper middle income Blend
## 4230 178.399 -18.1149 Upper middle income Blend
## 4231 178.399 -18.1149 Upper middle income Blend
## 4232 178.399 -18.1149 Upper middle income Blend
## 4233 178.399 -18.1149 Upper middle income Blend
## 4234 178.399 -18.1149 Upper middle income Blend
## 4235 178.399 -18.1149 Upper middle income Blend
## 4236 178.399 -18.1149 Upper middle income Blend
## 4237 178.399 -18.1149 Upper middle income Blend
## 4238 178.399 -18.1149 Upper middle income Blend
## 4239 178.399 -18.1149 Upper middle income Blend
## 4240 178.399 -18.1149 Upper middle income Blend
## 4241 178.399 -18.1149 Upper middle income Blend
## 4242 178.399 -18.1149 Upper middle income Blend
## 4243 178.399 -18.1149 Upper middle income Blend
## 4244 178.399 -18.1149 Upper middle income Blend
## 4245 178.399 -18.1149 Upper middle income Blend
## 4246 178.399 -18.1149 Upper middle income Blend
## 4247 178.399 -18.1149 Upper middle income Blend
## 4248 178.399 -18.1149 Upper middle income Blend
## 4249 178.399 -18.1149 Upper middle income Blend
## 4250 178.399 -18.1149 Upper middle income Blend
## 4251 178.399 -18.1149 Upper middle income Blend
## 4252 178.399 -18.1149 Upper middle income Blend
## 4253 178.399 -18.1149 Upper middle income Blend
## 4254 178.399 -18.1149 Upper middle income Blend
## 4255 178.399 -18.1149 Upper middle income Blend
## 4256 178.399 -18.1149 Upper middle income Blend
## 4257 178.399 -18.1149 Upper middle income Blend
## 4258 178.399 -18.1149 Upper middle income Blend
## 4259 178.399 -18.1149 Upper middle income Blend
## 4260 178.399 -18.1149 Upper middle income Blend
## 4261 178.399 -18.1149 Upper middle income Blend
## 4262 178.399 -18.1149 Upper middle income Blend
## 4263 178.399 -18.1149 Upper middle income Blend
## 4264 178.399 -18.1149 Upper middle income Blend
## 4265 178.399 -18.1149 Upper middle income Blend
## 4266 178.399 -18.1149 Upper middle income Blend
## 4267 178.399 -18.1149 Upper middle income Blend
## 4268 178.399 -18.1149 Upper middle income Blend
## 4269 178.399 -18.1149 Upper middle income Blend
## 4270 178.399 -18.1149 Upper middle income Blend
## 4271 178.399 -18.1149 Upper middle income Blend
## 4272 178.399 -18.1149 Upper middle income Blend
## 4273 178.399 -18.1149 Upper middle income Blend
## 4274 178.399 -18.1149 Upper middle income Blend
## 4275 178.399 -18.1149 Upper middle income Blend
## 4276 178.399 -18.1149 Upper middle income Blend
## 4277 178.399 -18.1149 Upper middle income Blend
## 4278 178.399 -18.1149 Upper middle income Blend
## 4279 158.185 6.91771 Lower middle income IDA
## 4280 158.185 6.91771 Lower middle income IDA
## 4281 158.185 6.91771 Lower middle income IDA
## 4282 158.185 6.91771 Lower middle income IDA
## 4283 158.185 6.91771 Lower middle income IDA
## 4284 158.185 6.91771 Lower middle income IDA
## 4285 158.185 6.91771 Lower middle income IDA
## 4286 158.185 6.91771 Lower middle income IDA
## 4287 158.185 6.91771 Lower middle income IDA
## 4288 158.185 6.91771 Lower middle income IDA
## 4289 158.185 6.91771 Lower middle income IDA
## 4290 158.185 6.91771 Lower middle income IDA
## 4291 158.185 6.91771 Lower middle income IDA
## 4292 158.185 6.91771 Lower middle income IDA
## 4293 158.185 6.91771 Lower middle income IDA
## 4294 158.185 6.91771 Lower middle income IDA
## 4295 158.185 6.91771 Lower middle income IDA
## 4296 158.185 6.91771 Lower middle income IDA
## 4297 158.185 6.91771 Lower middle income IDA
## 4298 158.185 6.91771 Lower middle income IDA
## 4299 158.185 6.91771 Lower middle income IDA
## 4300 158.185 6.91771 Lower middle income IDA
## 4301 158.185 6.91771 Lower middle income IDA
## 4302 158.185 6.91771 Lower middle income IDA
## 4303 158.185 6.91771 Lower middle income IDA
## 4304 158.185 6.91771 Lower middle income IDA
## 4305 158.185 6.91771 Lower middle income IDA
## 4306 158.185 6.91771 Lower middle income IDA
## 4307 158.185 6.91771 Lower middle income IDA
## 4308 158.185 6.91771 Lower middle income IDA
## 4309 158.185 6.91771 Lower middle income IDA
## 4310 158.185 6.91771 Lower middle income IDA
## 4311 158.185 6.91771 Lower middle income IDA
## 4312 158.185 6.91771 Lower middle income IDA
## 4313 158.185 6.91771 Lower middle income IDA
## 4314 158.185 6.91771 Lower middle income IDA
## 4315 158.185 6.91771 Lower middle income IDA
## 4316 158.185 6.91771 Lower middle income IDA
## 4317 158.185 6.91771 Lower middle income IDA
## 4318 158.185 6.91771 Lower middle income IDA
## 4319 158.185 6.91771 Lower middle income IDA
## 4320 158.185 6.91771 Lower middle income IDA
## 4321 158.185 6.91771 Lower middle income IDA
## 4322 158.185 6.91771 Lower middle income IDA
## 4323 158.185 6.91771 Lower middle income IDA
## 4324 158.185 6.91771 Lower middle income IDA
## 4325 158.185 6.91771 Lower middle income IDA
## 4326 158.185 6.91771 Lower middle income IDA
## 4327 158.185 6.91771 Lower middle income IDA
## 4328 158.185 6.91771 Lower middle income IDA
## 4329 158.185 6.91771 Lower middle income IDA
## 4330 158.185 6.91771 Lower middle income IDA
## 4331 158.185 6.91771 Lower middle income IDA
## 4332 158.185 6.91771 Lower middle income IDA
## 4333 158.185 6.91771 Lower middle income IDA
## 4334 158.185 6.91771 Lower middle income IDA
## 4335 158.185 6.91771 Lower middle income IDA
## 4336 158.185 6.91771 Lower middle income IDA
## 4337 158.185 6.91771 Lower middle income IDA
## 4338 158.185 6.91771 Lower middle income IDA
## 4339 158.185 6.91771 Lower middle income IDA
## 4340 158.185 6.91771 Lower middle income IDA
## 4341 -6.91181 61.8926 High income Not classified
## 4342 -6.91181 61.8926 High income Not classified
## 4343 -6.91181 61.8926 High income Not classified
## 4344 -6.91181 61.8926 High income Not classified
## 4345 -6.91181 61.8926 High income Not classified
## 4346 -6.91181 61.8926 High income Not classified
## 4347 -6.91181 61.8926 High income Not classified
## 4348 -6.91181 61.8926 High income Not classified
## 4349 -6.91181 61.8926 High income Not classified
## 4350 -6.91181 61.8926 High income Not classified
## 4351 -6.91181 61.8926 High income Not classified
## 4352 -6.91181 61.8926 High income Not classified
## 4353 -6.91181 61.8926 High income Not classified
## 4354 -6.91181 61.8926 High income Not classified
## 4355 -6.91181 61.8926 High income Not classified
## 4356 -6.91181 61.8926 High income Not classified
## 4357 -6.91181 61.8926 High income Not classified
## 4358 -6.91181 61.8926 High income Not classified
## 4359 -6.91181 61.8926 High income Not classified
## 4360 -6.91181 61.8926 High income Not classified
## 4361 -6.91181 61.8926 High income Not classified
## 4362 -6.91181 61.8926 High income Not classified
## 4363 -6.91181 61.8926 High income Not classified
## 4364 -6.91181 61.8926 High income Not classified
## 4365 -6.91181 61.8926 High income Not classified
## 4366 -6.91181 61.8926 High income Not classified
## 4367 -6.91181 61.8926 High income Not classified
## 4368 -6.91181 61.8926 High income Not classified
## 4369 -6.91181 61.8926 High income Not classified
## 4370 -6.91181 61.8926 High income Not classified
## 4371 -6.91181 61.8926 High income Not classified
## 4372 -6.91181 61.8926 High income Not classified
## 4373 -6.91181 61.8926 High income Not classified
## 4374 -6.91181 61.8926 High income Not classified
## 4375 -6.91181 61.8926 High income Not classified
## 4376 -6.91181 61.8926 High income Not classified
## 4377 -6.91181 61.8926 High income Not classified
## 4378 -6.91181 61.8926 High income Not classified
## 4379 -6.91181 61.8926 High income Not classified
## 4380 -6.91181 61.8926 High income Not classified
## 4381 -6.91181 61.8926 High income Not classified
## 4382 -6.91181 61.8926 High income Not classified
## 4383 -6.91181 61.8926 High income Not classified
## 4384 -6.91181 61.8926 High income Not classified
## 4385 -6.91181 61.8926 High income Not classified
## 4386 -6.91181 61.8926 High income Not classified
## 4387 -6.91181 61.8926 High income Not classified
## 4388 -6.91181 61.8926 High income Not classified
## 4389 -6.91181 61.8926 High income Not classified
## 4390 -6.91181 61.8926 High income Not classified
## 4391 -6.91181 61.8926 High income Not classified
## 4392 -6.91181 61.8926 High income Not classified
## 4393 -6.91181 61.8926 High income Not classified
## 4394 -6.91181 61.8926 High income Not classified
## 4395 -6.91181 61.8926 High income Not classified
## 4396 -6.91181 61.8926 High income Not classified
## 4397 -6.91181 61.8926 High income Not classified
## 4398 -6.91181 61.8926 High income Not classified
## 4399 -6.91181 61.8926 High income Not classified
## 4400 -6.91181 61.8926 High income Not classified
## 4401 -6.91181 61.8926 High income Not classified
## 4402 -6.91181 61.8926 High income Not classified
## 4403 2.35097 48.8566 High income Not classified
## 4404 2.35097 48.8566 High income Not classified
## 4405 2.35097 48.8566 High income Not classified
## 4406 2.35097 48.8566 High income Not classified
## 4407 2.35097 48.8566 High income Not classified
## 4408 2.35097 48.8566 High income Not classified
## 4409 2.35097 48.8566 High income Not classified
## 4410 2.35097 48.8566 High income Not classified
## 4411 2.35097 48.8566 High income Not classified
## 4412 2.35097 48.8566 High income Not classified
## 4413 2.35097 48.8566 High income Not classified
## 4414 2.35097 48.8566 High income Not classified
## 4415 2.35097 48.8566 High income Not classified
## 4416 2.35097 48.8566 High income Not classified
## 4417 2.35097 48.8566 High income Not classified
## 4418 2.35097 48.8566 High income Not classified
## 4419 2.35097 48.8566 High income Not classified
## 4420 2.35097 48.8566 High income Not classified
## 4421 2.35097 48.8566 High income Not classified
## 4422 2.35097 48.8566 High income Not classified
## 4423 2.35097 48.8566 High income Not classified
## 4424 2.35097 48.8566 High income Not classified
## 4425 2.35097 48.8566 High income Not classified
## 4426 2.35097 48.8566 High income Not classified
## 4427 2.35097 48.8566 High income Not classified
## 4428 2.35097 48.8566 High income Not classified
## 4429 2.35097 48.8566 High income Not classified
## 4430 2.35097 48.8566 High income Not classified
## 4431 2.35097 48.8566 High income Not classified
## 4432 2.35097 48.8566 High income Not classified
## 4433 2.35097 48.8566 High income Not classified
## 4434 2.35097 48.8566 High income Not classified
## 4435 2.35097 48.8566 High income Not classified
## 4436 2.35097 48.8566 High income Not classified
## 4437 2.35097 48.8566 High income Not classified
## 4438 2.35097 48.8566 High income Not classified
## 4439 2.35097 48.8566 High income Not classified
## 4440 2.35097 48.8566 High income Not classified
## 4441 2.35097 48.8566 High income Not classified
## 4442 2.35097 48.8566 High income Not classified
## 4443 2.35097 48.8566 High income Not classified
## 4444 2.35097 48.8566 High income Not classified
## 4445 2.35097 48.8566 High income Not classified
## 4446 2.35097 48.8566 High income Not classified
## 4447 2.35097 48.8566 High income Not classified
## 4448 2.35097 48.8566 High income Not classified
## 4449 2.35097 48.8566 High income Not classified
## 4450 2.35097 48.8566 High income Not classified
## 4451 2.35097 48.8566 High income Not classified
## 4452 2.35097 48.8566 High income Not classified
## 4453 2.35097 48.8566 High income Not classified
## 4454 2.35097 48.8566 High income Not classified
## 4455 2.35097 48.8566 High income Not classified
## 4456 2.35097 48.8566 High income Not classified
## 4457 2.35097 48.8566 High income Not classified
## 4458 2.35097 48.8566 High income Not classified
## 4459 2.35097 48.8566 High income Not classified
## 4460 2.35097 48.8566 High income Not classified
## 4461 2.35097 48.8566 High income Not classified
## 4462 2.35097 48.8566 High income Not classified
## 4463 2.35097 48.8566 High income Not classified
## 4464 2.35097 48.8566 High income Not classified
## 4465 9.45162 0.38832 Upper middle income IBRD
## 4466 9.45162 0.38832 Upper middle income IBRD
## 4467 9.45162 0.38832 Upper middle income IBRD
## 4468 9.45162 0.38832 Upper middle income IBRD
## 4469 9.45162 0.38832 Upper middle income IBRD
## 4470 9.45162 0.38832 Upper middle income IBRD
## 4471 9.45162 0.38832 Upper middle income IBRD
## 4472 9.45162 0.38832 Upper middle income IBRD
## 4473 9.45162 0.38832 Upper middle income IBRD
## 4474 9.45162 0.38832 Upper middle income IBRD
## 4475 9.45162 0.38832 Upper middle income IBRD
## 4476 9.45162 0.38832 Upper middle income IBRD
## 4477 9.45162 0.38832 Upper middle income IBRD
## 4478 9.45162 0.38832 Upper middle income IBRD
## 4479 9.45162 0.38832 Upper middle income IBRD
## 4480 9.45162 0.38832 Upper middle income IBRD
## 4481 9.45162 0.38832 Upper middle income IBRD
## 4482 9.45162 0.38832 Upper middle income IBRD
## 4483 9.45162 0.38832 Upper middle income IBRD
## 4484 9.45162 0.38832 Upper middle income IBRD
## 4485 9.45162 0.38832 Upper middle income IBRD
## 4486 9.45162 0.38832 Upper middle income IBRD
## 4487 9.45162 0.38832 Upper middle income IBRD
## 4488 9.45162 0.38832 Upper middle income IBRD
## 4489 9.45162 0.38832 Upper middle income IBRD
## 4490 9.45162 0.38832 Upper middle income IBRD
## 4491 9.45162 0.38832 Upper middle income IBRD
## 4492 9.45162 0.38832 Upper middle income IBRD
## 4493 9.45162 0.38832 Upper middle income IBRD
## 4494 9.45162 0.38832 Upper middle income IBRD
## 4495 9.45162 0.38832 Upper middle income IBRD
## 4496 9.45162 0.38832 Upper middle income IBRD
## 4497 9.45162 0.38832 Upper middle income IBRD
## 4498 9.45162 0.38832 Upper middle income IBRD
## 4499 9.45162 0.38832 Upper middle income IBRD
## 4500 9.45162 0.38832 Upper middle income IBRD
## 4501 9.45162 0.38832 Upper middle income IBRD
## 4502 9.45162 0.38832 Upper middle income IBRD
## 4503 9.45162 0.38832 Upper middle income IBRD
## 4504 9.45162 0.38832 Upper middle income IBRD
## 4505 9.45162 0.38832 Upper middle income IBRD
## 4506 9.45162 0.38832 Upper middle income IBRD
## 4507 9.45162 0.38832 Upper middle income IBRD
## 4508 9.45162 0.38832 Upper middle income IBRD
## 4509 9.45162 0.38832 Upper middle income IBRD
## 4510 9.45162 0.38832 Upper middle income IBRD
## 4511 9.45162 0.38832 Upper middle income IBRD
## 4512 9.45162 0.38832 Upper middle income IBRD
## 4513 9.45162 0.38832 Upper middle income IBRD
## 4514 9.45162 0.38832 Upper middle income IBRD
## 4515 9.45162 0.38832 Upper middle income IBRD
## 4516 9.45162 0.38832 Upper middle income IBRD
## 4517 9.45162 0.38832 Upper middle income IBRD
## 4518 9.45162 0.38832 Upper middle income IBRD
## 4519 9.45162 0.38832 Upper middle income IBRD
## 4520 9.45162 0.38832 Upper middle income IBRD
## 4521 9.45162 0.38832 Upper middle income IBRD
## 4522 9.45162 0.38832 Upper middle income IBRD
## 4523 9.45162 0.38832 Upper middle income IBRD
## 4524 9.45162 0.38832 Upper middle income IBRD
## 4525 9.45162 0.38832 Upper middle income IBRD
## 4526 9.45162 0.38832 Upper middle income IBRD
## 4527 -0.126236 51.5002 High income Not classified
## 4528 -0.126236 51.5002 High income Not classified
## 4529 -0.126236 51.5002 High income Not classified
## 4530 -0.126236 51.5002 High income Not classified
## 4531 -0.126236 51.5002 High income Not classified
## 4532 -0.126236 51.5002 High income Not classified
## 4533 -0.126236 51.5002 High income Not classified
## 4534 -0.126236 51.5002 High income Not classified
## 4535 -0.126236 51.5002 High income Not classified
## 4536 -0.126236 51.5002 High income Not classified
## 4537 -0.126236 51.5002 High income Not classified
## 4538 -0.126236 51.5002 High income Not classified
## 4539 -0.126236 51.5002 High income Not classified
## 4540 -0.126236 51.5002 High income Not classified
## 4541 -0.126236 51.5002 High income Not classified
## 4542 -0.126236 51.5002 High income Not classified
## 4543 -0.126236 51.5002 High income Not classified
## 4544 -0.126236 51.5002 High income Not classified
## 4545 -0.126236 51.5002 High income Not classified
## 4546 -0.126236 51.5002 High income Not classified
## 4547 -0.126236 51.5002 High income Not classified
## 4548 -0.126236 51.5002 High income Not classified
## 4549 -0.126236 51.5002 High income Not classified
## 4550 -0.126236 51.5002 High income Not classified
## 4551 -0.126236 51.5002 High income Not classified
## 4552 -0.126236 51.5002 High income Not classified
## 4553 -0.126236 51.5002 High income Not classified
## 4554 -0.126236 51.5002 High income Not classified
## 4555 -0.126236 51.5002 High income Not classified
## 4556 -0.126236 51.5002 High income Not classified
## 4557 -0.126236 51.5002 High income Not classified
## 4558 -0.126236 51.5002 High income Not classified
## 4559 -0.126236 51.5002 High income Not classified
## 4560 -0.126236 51.5002 High income Not classified
## 4561 -0.126236 51.5002 High income Not classified
## 4562 -0.126236 51.5002 High income Not classified
## 4563 -0.126236 51.5002 High income Not classified
## 4564 -0.126236 51.5002 High income Not classified
## 4565 -0.126236 51.5002 High income Not classified
## 4566 -0.126236 51.5002 High income Not classified
## 4567 -0.126236 51.5002 High income Not classified
## 4568 -0.126236 51.5002 High income Not classified
## 4569 -0.126236 51.5002 High income Not classified
## 4570 -0.126236 51.5002 High income Not classified
## 4571 -0.126236 51.5002 High income Not classified
## 4572 -0.126236 51.5002 High income Not classified
## 4573 -0.126236 51.5002 High income Not classified
## 4574 -0.126236 51.5002 High income Not classified
## 4575 -0.126236 51.5002 High income Not classified
## 4576 -0.126236 51.5002 High income Not classified
## 4577 -0.126236 51.5002 High income Not classified
## 4578 -0.126236 51.5002 High income Not classified
## 4579 -0.126236 51.5002 High income Not classified
## 4580 -0.126236 51.5002 High income Not classified
## 4581 -0.126236 51.5002 High income Not classified
## 4582 -0.126236 51.5002 High income Not classified
## 4583 -0.126236 51.5002 High income Not classified
## 4584 -0.126236 51.5002 High income Not classified
## 4585 -0.126236 51.5002 High income Not classified
## 4586 -0.126236 51.5002 High income Not classified
## 4587 -0.126236 51.5002 High income Not classified
## 4588 -0.126236 51.5002 High income Not classified
## 4589 -61.7449 12.0653 Upper middle income Blend
## 4590 -61.7449 12.0653 Upper middle income Blend
## 4591 -61.7449 12.0653 Upper middle income Blend
## 4592 -61.7449 12.0653 Upper middle income Blend
## 4593 -61.7449 12.0653 Upper middle income Blend
## 4594 -61.7449 12.0653 Upper middle income Blend
## 4595 -61.7449 12.0653 Upper middle income Blend
## 4596 -61.7449 12.0653 Upper middle income Blend
## 4597 -61.7449 12.0653 Upper middle income Blend
## 4598 -61.7449 12.0653 Upper middle income Blend
## 4599 -61.7449 12.0653 Upper middle income Blend
## 4600 -61.7449 12.0653 Upper middle income Blend
## 4601 -61.7449 12.0653 Upper middle income Blend
## 4602 -61.7449 12.0653 Upper middle income Blend
## 4603 -61.7449 12.0653 Upper middle income Blend
## 4604 -61.7449 12.0653 Upper middle income Blend
## 4605 -61.7449 12.0653 Upper middle income Blend
## 4606 -61.7449 12.0653 Upper middle income Blend
## 4607 -61.7449 12.0653 Upper middle income Blend
## 4608 -61.7449 12.0653 Upper middle income Blend
## 4609 -61.7449 12.0653 Upper middle income Blend
## 4610 -61.7449 12.0653 Upper middle income Blend
## 4611 -61.7449 12.0653 Upper middle income Blend
## 4612 -61.7449 12.0653 Upper middle income Blend
## 4613 -61.7449 12.0653 Upper middle income Blend
## 4614 -61.7449 12.0653 Upper middle income Blend
## 4615 -61.7449 12.0653 Upper middle income Blend
## 4616 -61.7449 12.0653 Upper middle income Blend
## 4617 -61.7449 12.0653 Upper middle income Blend
## 4618 -61.7449 12.0653 Upper middle income Blend
## 4619 -61.7449 12.0653 Upper middle income Blend
## 4620 -61.7449 12.0653 Upper middle income Blend
## 4621 -61.7449 12.0653 Upper middle income Blend
## 4622 -61.7449 12.0653 Upper middle income Blend
## 4623 -61.7449 12.0653 Upper middle income Blend
## 4624 -61.7449 12.0653 Upper middle income Blend
## 4625 -61.7449 12.0653 Upper middle income Blend
## 4626 -61.7449 12.0653 Upper middle income Blend
## 4627 -61.7449 12.0653 Upper middle income Blend
## 4628 -61.7449 12.0653 Upper middle income Blend
## 4629 -61.7449 12.0653 Upper middle income Blend
## 4630 -61.7449 12.0653 Upper middle income Blend
## 4631 -61.7449 12.0653 Upper middle income Blend
## 4632 -61.7449 12.0653 Upper middle income Blend
## 4633 -61.7449 12.0653 Upper middle income Blend
## 4634 -61.7449 12.0653 Upper middle income Blend
## 4635 -61.7449 12.0653 Upper middle income Blend
## 4636 -61.7449 12.0653 Upper middle income Blend
## 4637 -61.7449 12.0653 Upper middle income Blend
## 4638 -61.7449 12.0653 Upper middle income Blend
## 4639 -61.7449 12.0653 Upper middle income Blend
## 4640 -61.7449 12.0653 Upper middle income Blend
## 4641 -61.7449 12.0653 Upper middle income Blend
## 4642 -61.7449 12.0653 Upper middle income Blend
## 4643 -61.7449 12.0653 Upper middle income Blend
## 4644 -61.7449 12.0653 Upper middle income Blend
## 4645 -61.7449 12.0653 Upper middle income Blend
## 4646 -61.7449 12.0653 Upper middle income Blend
## 4647 -61.7449 12.0653 Upper middle income Blend
## 4648 -61.7449 12.0653 Upper middle income Blend
## 4649 -61.7449 12.0653 Upper middle income Blend
## 4650 -61.7449 12.0653 Upper middle income Blend
## 4651 44.793 41.71 Upper middle income IBRD
## 4652 44.793 41.71 Upper middle income IBRD
## 4653 44.793 41.71 Upper middle income IBRD
## 4654 44.793 41.71 Upper middle income IBRD
## 4655 44.793 41.71 Upper middle income IBRD
## 4656 44.793 41.71 Upper middle income IBRD
## 4657 44.793 41.71 Upper middle income IBRD
## 4658 44.793 41.71 Upper middle income IBRD
## 4659 44.793 41.71 Upper middle income IBRD
## 4660 44.793 41.71 Upper middle income IBRD
## 4661 44.793 41.71 Upper middle income IBRD
## 4662 44.793 41.71 Upper middle income IBRD
## 4663 44.793 41.71 Upper middle income IBRD
## 4664 44.793 41.71 Upper middle income IBRD
## 4665 44.793 41.71 Upper middle income IBRD
## 4666 44.793 41.71 Upper middle income IBRD
## 4667 44.793 41.71 Upper middle income IBRD
## 4668 44.793 41.71 Upper middle income IBRD
## 4669 44.793 41.71 Upper middle income IBRD
## 4670 44.793 41.71 Upper middle income IBRD
## 4671 44.793 41.71 Upper middle income IBRD
## 4672 44.793 41.71 Upper middle income IBRD
## 4673 44.793 41.71 Upper middle income IBRD
## 4674 44.793 41.71 Upper middle income IBRD
## 4675 44.793 41.71 Upper middle income IBRD
## 4676 44.793 41.71 Upper middle income IBRD
## 4677 44.793 41.71 Upper middle income IBRD
## 4678 44.793 41.71 Upper middle income IBRD
## 4679 44.793 41.71 Upper middle income IBRD
## 4680 44.793 41.71 Upper middle income IBRD
## 4681 44.793 41.71 Upper middle income IBRD
## 4682 44.793 41.71 Upper middle income IBRD
## 4683 44.793 41.71 Upper middle income IBRD
## 4684 44.793 41.71 Upper middle income IBRD
## 4685 44.793 41.71 Upper middle income IBRD
## 4686 44.793 41.71 Upper middle income IBRD
## 4687 44.793 41.71 Upper middle income IBRD
## 4688 44.793 41.71 Upper middle income IBRD
## 4689 44.793 41.71 Upper middle income IBRD
## 4690 44.793 41.71 Upper middle income IBRD
## 4691 44.793 41.71 Upper middle income IBRD
## 4692 44.793 41.71 Upper middle income IBRD
## 4693 44.793 41.71 Upper middle income IBRD
## 4694 44.793 41.71 Upper middle income IBRD
## 4695 44.793 41.71 Upper middle income IBRD
## 4696 44.793 41.71 Upper middle income IBRD
## 4697 44.793 41.71 Upper middle income IBRD
## 4698 44.793 41.71 Upper middle income IBRD
## 4699 44.793 41.71 Upper middle income IBRD
## 4700 44.793 41.71 Upper middle income IBRD
## 4701 44.793 41.71 Upper middle income IBRD
## 4702 44.793 41.71 Upper middle income IBRD
## 4703 44.793 41.71 Upper middle income IBRD
## 4704 44.793 41.71 Upper middle income IBRD
## 4705 44.793 41.71 Upper middle income IBRD
## 4706 44.793 41.71 Upper middle income IBRD
## 4707 44.793 41.71 Upper middle income IBRD
## 4708 44.793 41.71 Upper middle income IBRD
## 4709 44.793 41.71 Upper middle income IBRD
## 4710 44.793 41.71 Upper middle income IBRD
## 4711 44.793 41.71 Upper middle income IBRD
## 4712 44.793 41.71 Upper middle income IBRD
## 4713 -0.20795 5.57045 Lower middle income IDA
## 4714 -0.20795 5.57045 Lower middle income IDA
## 4715 -0.20795 5.57045 Lower middle income IDA
## 4716 -0.20795 5.57045 Lower middle income IDA
## 4717 -0.20795 5.57045 Lower middle income IDA
## 4718 -0.20795 5.57045 Lower middle income IDA
## 4719 -0.20795 5.57045 Lower middle income IDA
## 4720 -0.20795 5.57045 Lower middle income IDA
## 4721 -0.20795 5.57045 Lower middle income IDA
## 4722 -0.20795 5.57045 Lower middle income IDA
## 4723 -0.20795 5.57045 Lower middle income IDA
## 4724 -0.20795 5.57045 Lower middle income IDA
## 4725 -0.20795 5.57045 Lower middle income IDA
## 4726 -0.20795 5.57045 Lower middle income IDA
## 4727 -0.20795 5.57045 Lower middle income IDA
## 4728 -0.20795 5.57045 Lower middle income IDA
## 4729 -0.20795 5.57045 Lower middle income IDA
## 4730 -0.20795 5.57045 Lower middle income IDA
## 4731 -0.20795 5.57045 Lower middle income IDA
## 4732 -0.20795 5.57045 Lower middle income IDA
## 4733 -0.20795 5.57045 Lower middle income IDA
## 4734 -0.20795 5.57045 Lower middle income IDA
## 4735 -0.20795 5.57045 Lower middle income IDA
## 4736 -0.20795 5.57045 Lower middle income IDA
## 4737 -0.20795 5.57045 Lower middle income IDA
## 4738 -0.20795 5.57045 Lower middle income IDA
## 4739 -0.20795 5.57045 Lower middle income IDA
## 4740 -0.20795 5.57045 Lower middle income IDA
## 4741 -0.20795 5.57045 Lower middle income IDA
## 4742 -0.20795 5.57045 Lower middle income IDA
## 4743 -0.20795 5.57045 Lower middle income IDA
## 4744 -0.20795 5.57045 Lower middle income IDA
## 4745 -0.20795 5.57045 Lower middle income IDA
## 4746 -0.20795 5.57045 Lower middle income IDA
## 4747 -0.20795 5.57045 Lower middle income IDA
## 4748 -0.20795 5.57045 Lower middle income IDA
## 4749 -0.20795 5.57045 Lower middle income IDA
## 4750 -0.20795 5.57045 Lower middle income IDA
## 4751 -0.20795 5.57045 Lower middle income IDA
## 4752 -0.20795 5.57045 Lower middle income IDA
## 4753 -0.20795 5.57045 Lower middle income IDA
## 4754 -0.20795 5.57045 Lower middle income IDA
## 4755 -0.20795 5.57045 Lower middle income IDA
## 4756 -0.20795 5.57045 Lower middle income IDA
## 4757 -0.20795 5.57045 Lower middle income IDA
## 4758 -0.20795 5.57045 Lower middle income IDA
## 4759 -0.20795 5.57045 Lower middle income IDA
## 4760 -0.20795 5.57045 Lower middle income IDA
## 4761 -0.20795 5.57045 Lower middle income IDA
## 4762 -0.20795 5.57045 Lower middle income IDA
## 4763 -0.20795 5.57045 Lower middle income IDA
## 4764 -0.20795 5.57045 Lower middle income IDA
## 4765 -0.20795 5.57045 Lower middle income IDA
## 4766 -0.20795 5.57045 Lower middle income IDA
## 4767 -0.20795 5.57045 Lower middle income IDA
## 4768 -0.20795 5.57045 Lower middle income IDA
## 4769 -0.20795 5.57045 Lower middle income IDA
## 4770 -0.20795 5.57045 Lower middle income IDA
## 4771 -0.20795 5.57045 Lower middle income IDA
## 4772 -0.20795 5.57045 Lower middle income IDA
## 4773 -0.20795 5.57045 Lower middle income IDA
## 4774 -0.20795 5.57045 Lower middle income IDA
## 4775 High income Not classified
## 4776 High income Not classified
## 4777 High income Not classified
## 4778 High income Not classified
## 4779 High income Not classified
## 4780 High income Not classified
## 4781 High income Not classified
## 4782 High income Not classified
## 4783 High income Not classified
## 4784 High income Not classified
## 4785 High income Not classified
## 4786 High income Not classified
## 4787 High income Not classified
## 4788 High income Not classified
## 4789 High income Not classified
## 4790 High income Not classified
## 4791 High income Not classified
## 4792 High income Not classified
## 4793 High income Not classified
## 4794 High income Not classified
## 4795 High income Not classified
## 4796 High income Not classified
## 4797 High income Not classified
## 4798 High income Not classified
## 4799 High income Not classified
## 4800 High income Not classified
## 4801 High income Not classified
## 4802 High income Not classified
## 4803 High income Not classified
## 4804 High income Not classified
## 4805 High income Not classified
## 4806 High income Not classified
## 4807 High income Not classified
## 4808 High income Not classified
## 4809 High income Not classified
## 4810 High income Not classified
## 4811 High income Not classified
## 4812 High income Not classified
## 4813 High income Not classified
## 4814 High income Not classified
## 4815 High income Not classified
## 4816 High income Not classified
## 4817 High income Not classified
## 4818 High income Not classified
## 4819 High income Not classified
## 4820 High income Not classified
## 4821 High income Not classified
## 4822 High income Not classified
## 4823 High income Not classified
## 4824 High income Not classified
## 4825 High income Not classified
## 4826 High income Not classified
## 4827 High income Not classified
## 4828 High income Not classified
## 4829 High income Not classified
## 4830 High income Not classified
## 4831 High income Not classified
## 4832 High income Not classified
## 4833 High income Not classified
## 4834 High income Not classified
## 4835 High income Not classified
## 4836 High income Not classified
## 4837 -51.7214 64.1836 High income Not classified
## 4838 -51.7214 64.1836 High income Not classified
## 4839 -51.7214 64.1836 High income Not classified
## 4840 -51.7214 64.1836 High income Not classified
## 4841 -51.7214 64.1836 High income Not classified
## 4842 -51.7214 64.1836 High income Not classified
## 4843 -51.7214 64.1836 High income Not classified
## 4844 -51.7214 64.1836 High income Not classified
## 4845 -51.7214 64.1836 High income Not classified
## 4846 -51.7214 64.1836 High income Not classified
## 4847 -51.7214 64.1836 High income Not classified
## 4848 -51.7214 64.1836 High income Not classified
## 4849 -51.7214 64.1836 High income Not classified
## 4850 -51.7214 64.1836 High income Not classified
## 4851 -51.7214 64.1836 High income Not classified
## 4852 -51.7214 64.1836 High income Not classified
## 4853 -51.7214 64.1836 High income Not classified
## 4854 -51.7214 64.1836 High income Not classified
## 4855 -51.7214 64.1836 High income Not classified
## 4856 -51.7214 64.1836 High income Not classified
## 4857 -51.7214 64.1836 High income Not classified
## 4858 -51.7214 64.1836 High income Not classified
## 4859 -51.7214 64.1836 High income Not classified
## 4860 -51.7214 64.1836 High income Not classified
## 4861 -51.7214 64.1836 High income Not classified
## 4862 -51.7214 64.1836 High income Not classified
## 4863 -51.7214 64.1836 High income Not classified
## 4864 -51.7214 64.1836 High income Not classified
## 4865 -51.7214 64.1836 High income Not classified
## 4866 -51.7214 64.1836 High income Not classified
## 4867 -51.7214 64.1836 High income Not classified
## 4868 -51.7214 64.1836 High income Not classified
## 4869 -51.7214 64.1836 High income Not classified
## 4870 -51.7214 64.1836 High income Not classified
## 4871 -51.7214 64.1836 High income Not classified
## 4872 -51.7214 64.1836 High income Not classified
## 4873 -51.7214 64.1836 High income Not classified
## 4874 -51.7214 64.1836 High income Not classified
## 4875 -51.7214 64.1836 High income Not classified
## 4876 -51.7214 64.1836 High income Not classified
## 4877 -51.7214 64.1836 High income Not classified
## 4878 -51.7214 64.1836 High income Not classified
## 4879 -51.7214 64.1836 High income Not classified
## 4880 -51.7214 64.1836 High income Not classified
## 4881 -51.7214 64.1836 High income Not classified
## 4882 -51.7214 64.1836 High income Not classified
## 4883 -51.7214 64.1836 High income Not classified
## 4884 -51.7214 64.1836 High income Not classified
## 4885 -51.7214 64.1836 High income Not classified
## 4886 -51.7214 64.1836 High income Not classified
## 4887 -51.7214 64.1836 High income Not classified
## 4888 -51.7214 64.1836 High income Not classified
## 4889 -51.7214 64.1836 High income Not classified
## 4890 -51.7214 64.1836 High income Not classified
## 4891 -51.7214 64.1836 High income Not classified
## 4892 -51.7214 64.1836 High income Not classified
## 4893 -51.7214 64.1836 High income Not classified
## 4894 -51.7214 64.1836 High income Not classified
## 4895 -51.7214 64.1836 High income Not classified
## 4896 -51.7214 64.1836 High income Not classified
## 4897 -51.7214 64.1836 High income Not classified
## 4898 -51.7214 64.1836 High income Not classified
## 4899 -16.5885 13.4495 Low income IDA
## 4900 -16.5885 13.4495 Low income IDA
## 4901 -16.5885 13.4495 Low income IDA
## 4902 -16.5885 13.4495 Low income IDA
## 4903 -16.5885 13.4495 Low income IDA
## 4904 -16.5885 13.4495 Low income IDA
## 4905 -16.5885 13.4495 Low income IDA
## 4906 -16.5885 13.4495 Low income IDA
## 4907 -16.5885 13.4495 Low income IDA
## 4908 -16.5885 13.4495 Low income IDA
## 4909 -16.5885 13.4495 Low income IDA
## 4910 -16.5885 13.4495 Low income IDA
## 4911 -16.5885 13.4495 Low income IDA
## 4912 -16.5885 13.4495 Low income IDA
## 4913 -16.5885 13.4495 Low income IDA
## 4914 -16.5885 13.4495 Low income IDA
## 4915 -16.5885 13.4495 Low income IDA
## 4916 -16.5885 13.4495 Low income IDA
## 4917 -16.5885 13.4495 Low income IDA
## 4918 -16.5885 13.4495 Low income IDA
## 4919 -16.5885 13.4495 Low income IDA
## 4920 -16.5885 13.4495 Low income IDA
## 4921 -16.5885 13.4495 Low income IDA
## 4922 -16.5885 13.4495 Low income IDA
## 4923 -16.5885 13.4495 Low income IDA
## 4924 -16.5885 13.4495 Low income IDA
## 4925 -16.5885 13.4495 Low income IDA
## 4926 -16.5885 13.4495 Low income IDA
## 4927 -16.5885 13.4495 Low income IDA
## 4928 -16.5885 13.4495 Low income IDA
## 4929 -16.5885 13.4495 Low income IDA
## 4930 -16.5885 13.4495 Low income IDA
## 4931 -16.5885 13.4495 Low income IDA
## 4932 -16.5885 13.4495 Low income IDA
## 4933 -16.5885 13.4495 Low income IDA
## 4934 -16.5885 13.4495 Low income IDA
## 4935 -16.5885 13.4495 Low income IDA
## 4936 -16.5885 13.4495 Low income IDA
## 4937 -16.5885 13.4495 Low income IDA
## 4938 -16.5885 13.4495 Low income IDA
## 4939 -16.5885 13.4495 Low income IDA
## 4940 -16.5885 13.4495 Low income IDA
## 4941 -16.5885 13.4495 Low income IDA
## 4942 -16.5885 13.4495 Low income IDA
## 4943 -16.5885 13.4495 Low income IDA
## 4944 -16.5885 13.4495 Low income IDA
## 4945 -16.5885 13.4495 Low income IDA
## 4946 -16.5885 13.4495 Low income IDA
## 4947 -16.5885 13.4495 Low income IDA
## 4948 -16.5885 13.4495 Low income IDA
## 4949 -16.5885 13.4495 Low income IDA
## 4950 -16.5885 13.4495 Low income IDA
## 4951 -16.5885 13.4495 Low income IDA
## 4952 -16.5885 13.4495 Low income IDA
## 4953 -16.5885 13.4495 Low income IDA
## 4954 -16.5885 13.4495 Low income IDA
## 4955 -16.5885 13.4495 Low income IDA
## 4956 -16.5885 13.4495 Low income IDA
## 4957 -16.5885 13.4495 Low income IDA
## 4958 -16.5885 13.4495 Low income IDA
## 4959 -16.5885 13.4495 Low income IDA
## 4960 -16.5885 13.4495 Low income IDA
## 4961 -13.7 9.51667 Low income IDA
## 4962 -13.7 9.51667 Low income IDA
## 4963 -13.7 9.51667 Low income IDA
## 4964 -13.7 9.51667 Low income IDA
## 4965 -13.7 9.51667 Low income IDA
## 4966 -13.7 9.51667 Low income IDA
## 4967 -13.7 9.51667 Low income IDA
## 4968 -13.7 9.51667 Low income IDA
## 4969 -13.7 9.51667 Low income IDA
## 4970 -13.7 9.51667 Low income IDA
## 4971 -13.7 9.51667 Low income IDA
## 4972 -13.7 9.51667 Low income IDA
## 4973 -13.7 9.51667 Low income IDA
## 4974 -13.7 9.51667 Low income IDA
## 4975 -13.7 9.51667 Low income IDA
## 4976 -13.7 9.51667 Low income IDA
## 4977 -13.7 9.51667 Low income IDA
## 4978 -13.7 9.51667 Low income IDA
## 4979 -13.7 9.51667 Low income IDA
## 4980 -13.7 9.51667 Low income IDA
## 4981 -13.7 9.51667 Low income IDA
## 4982 -13.7 9.51667 Low income IDA
## 4983 -13.7 9.51667 Low income IDA
## 4984 -13.7 9.51667 Low income IDA
## 4985 -13.7 9.51667 Low income IDA
## 4986 -13.7 9.51667 Low income IDA
## 4987 -13.7 9.51667 Low income IDA
## 4988 -13.7 9.51667 Low income IDA
## 4989 -13.7 9.51667 Low income IDA
## 4990 -13.7 9.51667 Low income IDA
## 4991 -13.7 9.51667 Low income IDA
## 4992 -13.7 9.51667 Low income IDA
## 4993 -13.7 9.51667 Low income IDA
## 4994 -13.7 9.51667 Low income IDA
## 4995 -13.7 9.51667 Low income IDA
## 4996 -13.7 9.51667 Low income IDA
## 4997 -13.7 9.51667 Low income IDA
## 4998 -13.7 9.51667 Low income IDA
## 4999 -13.7 9.51667 Low income IDA
## 5000 -13.7 9.51667 Low income IDA
## 5001 -13.7 9.51667 Low income IDA
## 5002 -13.7 9.51667 Low income IDA
## 5003 -13.7 9.51667 Low income IDA
## 5004 -13.7 9.51667 Low income IDA
## 5005 -13.7 9.51667 Low income IDA
## 5006 -13.7 9.51667 Low income IDA
## 5007 -13.7 9.51667 Low income IDA
## 5008 -13.7 9.51667 Low income IDA
## 5009 -13.7 9.51667 Low income IDA
## 5010 -13.7 9.51667 Low income IDA
## 5011 -13.7 9.51667 Low income IDA
## 5012 -13.7 9.51667 Low income IDA
## 5013 -13.7 9.51667 Low income IDA
## 5014 -13.7 9.51667 Low income IDA
## 5015 -13.7 9.51667 Low income IDA
## 5016 -13.7 9.51667 Low income IDA
## 5017 -13.7 9.51667 Low income IDA
## 5018 -13.7 9.51667 Low income IDA
## 5019 -13.7 9.51667 Low income IDA
## 5020 -13.7 9.51667 Low income IDA
## 5021 -13.7 9.51667 Low income IDA
## 5022 -13.7 9.51667 Low income IDA
## 5023 8.7741 3.7523 Upper middle income IBRD
## 5024 8.7741 3.7523 Upper middle income IBRD
## 5025 8.7741 3.7523 Upper middle income IBRD
## 5026 8.7741 3.7523 Upper middle income IBRD
## 5027 8.7741 3.7523 Upper middle income IBRD
## 5028 8.7741 3.7523 Upper middle income IBRD
## 5029 8.7741 3.7523 Upper middle income IBRD
## 5030 8.7741 3.7523 Upper middle income IBRD
## 5031 8.7741 3.7523 Upper middle income IBRD
## 5032 8.7741 3.7523 Upper middle income IBRD
## 5033 8.7741 3.7523 Upper middle income IBRD
## 5034 8.7741 3.7523 Upper middle income IBRD
## 5035 8.7741 3.7523 Upper middle income IBRD
## 5036 8.7741 3.7523 Upper middle income IBRD
## 5037 8.7741 3.7523 Upper middle income IBRD
## 5038 8.7741 3.7523 Upper middle income IBRD
## 5039 8.7741 3.7523 Upper middle income IBRD
## 5040 8.7741 3.7523 Upper middle income IBRD
## 5041 8.7741 3.7523 Upper middle income IBRD
## 5042 8.7741 3.7523 Upper middle income IBRD
## 5043 8.7741 3.7523 Upper middle income IBRD
## 5044 8.7741 3.7523 Upper middle income IBRD
## 5045 8.7741 3.7523 Upper middle income IBRD
## 5046 8.7741 3.7523 Upper middle income IBRD
## 5047 8.7741 3.7523 Upper middle income IBRD
## 5048 8.7741 3.7523 Upper middle income IBRD
## 5049 8.7741 3.7523 Upper middle income IBRD
## 5050 8.7741 3.7523 Upper middle income IBRD
## 5051 8.7741 3.7523 Upper middle income IBRD
## 5052 8.7741 3.7523 Upper middle income IBRD
## 5053 8.7741 3.7523 Upper middle income IBRD
## 5054 8.7741 3.7523 Upper middle income IBRD
## 5055 8.7741 3.7523 Upper middle income IBRD
## 5056 8.7741 3.7523 Upper middle income IBRD
## 5057 8.7741 3.7523 Upper middle income IBRD
## 5058 8.7741 3.7523 Upper middle income IBRD
## 5059 8.7741 3.7523 Upper middle income IBRD
## 5060 8.7741 3.7523 Upper middle income IBRD
## 5061 8.7741 3.7523 Upper middle income IBRD
## 5062 8.7741 3.7523 Upper middle income IBRD
## 5063 8.7741 3.7523 Upper middle income IBRD
## 5064 8.7741 3.7523 Upper middle income IBRD
## 5065 8.7741 3.7523 Upper middle income IBRD
## 5066 8.7741 3.7523 Upper middle income IBRD
## 5067 8.7741 3.7523 Upper middle income IBRD
## 5068 8.7741 3.7523 Upper middle income IBRD
## 5069 8.7741 3.7523 Upper middle income IBRD
## 5070 8.7741 3.7523 Upper middle income IBRD
## 5071 8.7741 3.7523 Upper middle income IBRD
## 5072 8.7741 3.7523 Upper middle income IBRD
## 5073 8.7741 3.7523 Upper middle income IBRD
## 5074 8.7741 3.7523 Upper middle income IBRD
## 5075 8.7741 3.7523 Upper middle income IBRD
## 5076 8.7741 3.7523 Upper middle income IBRD
## 5077 8.7741 3.7523 Upper middle income IBRD
## 5078 8.7741 3.7523 Upper middle income IBRD
## 5079 8.7741 3.7523 Upper middle income IBRD
## 5080 8.7741 3.7523 Upper middle income IBRD
## 5081 8.7741 3.7523 Upper middle income IBRD
## 5082 8.7741 3.7523 Upper middle income IBRD
## 5083 8.7741 3.7523 Upper middle income IBRD
## 5084 8.7741 3.7523 Upper middle income IBRD
## 5085 23.7166 37.9792 High income Not classified
## 5086 23.7166 37.9792 High income Not classified
## 5087 23.7166 37.9792 High income Not classified
## 5088 23.7166 37.9792 High income Not classified
## 5089 23.7166 37.9792 High income Not classified
## 5090 23.7166 37.9792 High income Not classified
## 5091 23.7166 37.9792 High income Not classified
## 5092 23.7166 37.9792 High income Not classified
## 5093 23.7166 37.9792 High income Not classified
## 5094 23.7166 37.9792 High income Not classified
## 5095 23.7166 37.9792 High income Not classified
## 5096 23.7166 37.9792 High income Not classified
## 5097 23.7166 37.9792 High income Not classified
## 5098 23.7166 37.9792 High income Not classified
## 5099 23.7166 37.9792 High income Not classified
## 5100 23.7166 37.9792 High income Not classified
## 5101 23.7166 37.9792 High income Not classified
## 5102 23.7166 37.9792 High income Not classified
## 5103 23.7166 37.9792 High income Not classified
## 5104 23.7166 37.9792 High income Not classified
## 5105 23.7166 37.9792 High income Not classified
## 5106 23.7166 37.9792 High income Not classified
## 5107 23.7166 37.9792 High income Not classified
## 5108 23.7166 37.9792 High income Not classified
## 5109 23.7166 37.9792 High income Not classified
## 5110 23.7166 37.9792 High income Not classified
## 5111 23.7166 37.9792 High income Not classified
## 5112 23.7166 37.9792 High income Not classified
## 5113 23.7166 37.9792 High income Not classified
## 5114 23.7166 37.9792 High income Not classified
## 5115 23.7166 37.9792 High income Not classified
## 5116 23.7166 37.9792 High income Not classified
## 5117 23.7166 37.9792 High income Not classified
## 5118 23.7166 37.9792 High income Not classified
## 5119 23.7166 37.9792 High income Not classified
## 5120 23.7166 37.9792 High income Not classified
## 5121 23.7166 37.9792 High income Not classified
## 5122 23.7166 37.9792 High income Not classified
## 5123 23.7166 37.9792 High income Not classified
## 5124 23.7166 37.9792 High income Not classified
## 5125 23.7166 37.9792 High income Not classified
## 5126 23.7166 37.9792 High income Not classified
## 5127 23.7166 37.9792 High income Not classified
## 5128 23.7166 37.9792 High income Not classified
## 5129 23.7166 37.9792 High income Not classified
## 5130 23.7166 37.9792 High income Not classified
## 5131 23.7166 37.9792 High income Not classified
## 5132 23.7166 37.9792 High income Not classified
## 5133 23.7166 37.9792 High income Not classified
## 5134 23.7166 37.9792 High income Not classified
## 5135 23.7166 37.9792 High income Not classified
## 5136 23.7166 37.9792 High income Not classified
## 5137 23.7166 37.9792 High income Not classified
## 5138 23.7166 37.9792 High income Not classified
## 5139 23.7166 37.9792 High income Not classified
## 5140 23.7166 37.9792 High income Not classified
## 5141 23.7166 37.9792 High income Not classified
## 5142 23.7166 37.9792 High income Not classified
## 5143 23.7166 37.9792 High income Not classified
## 5144 23.7166 37.9792 High income Not classified
## 5145 23.7166 37.9792 High income Not classified
## 5146 23.7166 37.9792 High income Not classified
## 5147 -90.5328 14.6248 Upper middle income IBRD
## 5148 -90.5328 14.6248 Upper middle income IBRD
## 5149 -90.5328 14.6248 Upper middle income IBRD
## 5150 -90.5328 14.6248 Upper middle income IBRD
## 5151 -90.5328 14.6248 Upper middle income IBRD
## 5152 -90.5328 14.6248 Upper middle income IBRD
## 5153 -90.5328 14.6248 Upper middle income IBRD
## 5154 -90.5328 14.6248 Upper middle income IBRD
## 5155 -90.5328 14.6248 Upper middle income IBRD
## 5156 -90.5328 14.6248 Upper middle income IBRD
## 5157 -90.5328 14.6248 Upper middle income IBRD
## 5158 -90.5328 14.6248 Upper middle income IBRD
## 5159 -90.5328 14.6248 Upper middle income IBRD
## 5160 -90.5328 14.6248 Upper middle income IBRD
## 5161 -90.5328 14.6248 Upper middle income IBRD
## 5162 -90.5328 14.6248 Upper middle income IBRD
## 5163 -90.5328 14.6248 Upper middle income IBRD
## 5164 -90.5328 14.6248 Upper middle income IBRD
## 5165 -90.5328 14.6248 Upper middle income IBRD
## 5166 -90.5328 14.6248 Upper middle income IBRD
## 5167 -90.5328 14.6248 Upper middle income IBRD
## 5168 -90.5328 14.6248 Upper middle income IBRD
## 5169 -90.5328 14.6248 Upper middle income IBRD
## 5170 -90.5328 14.6248 Upper middle income IBRD
## 5171 -90.5328 14.6248 Upper middle income IBRD
## 5172 -90.5328 14.6248 Upper middle income IBRD
## 5173 -90.5328 14.6248 Upper middle income IBRD
## 5174 -90.5328 14.6248 Upper middle income IBRD
## 5175 -90.5328 14.6248 Upper middle income IBRD
## 5176 -90.5328 14.6248 Upper middle income IBRD
## 5177 -90.5328 14.6248 Upper middle income IBRD
## 5178 -90.5328 14.6248 Upper middle income IBRD
## 5179 -90.5328 14.6248 Upper middle income IBRD
## 5180 -90.5328 14.6248 Upper middle income IBRD
## 5181 -90.5328 14.6248 Upper middle income IBRD
## 5182 -90.5328 14.6248 Upper middle income IBRD
## 5183 -90.5328 14.6248 Upper middle income IBRD
## 5184 -90.5328 14.6248 Upper middle income IBRD
## 5185 -90.5328 14.6248 Upper middle income IBRD
## 5186 -90.5328 14.6248 Upper middle income IBRD
## 5187 -90.5328 14.6248 Upper middle income IBRD
## 5188 -90.5328 14.6248 Upper middle income IBRD
## 5189 -90.5328 14.6248 Upper middle income IBRD
## 5190 -90.5328 14.6248 Upper middle income IBRD
## 5191 -90.5328 14.6248 Upper middle income IBRD
## 5192 -90.5328 14.6248 Upper middle income IBRD
## 5193 -90.5328 14.6248 Upper middle income IBRD
## 5194 -90.5328 14.6248 Upper middle income IBRD
## 5195 -90.5328 14.6248 Upper middle income IBRD
## 5196 -90.5328 14.6248 Upper middle income IBRD
## 5197 -90.5328 14.6248 Upper middle income IBRD
## 5198 -90.5328 14.6248 Upper middle income IBRD
## 5199 -90.5328 14.6248 Upper middle income IBRD
## 5200 -90.5328 14.6248 Upper middle income IBRD
## 5201 -90.5328 14.6248 Upper middle income IBRD
## 5202 -90.5328 14.6248 Upper middle income IBRD
## 5203 -90.5328 14.6248 Upper middle income IBRD
## 5204 -90.5328 14.6248 Upper middle income IBRD
## 5205 -90.5328 14.6248 Upper middle income IBRD
## 5206 -90.5328 14.6248 Upper middle income IBRD
## 5207 -90.5328 14.6248 Upper middle income IBRD
## 5208 -90.5328 14.6248 Upper middle income IBRD
## 5209 144.794 13.4443 High income Not classified
## 5210 144.794 13.4443 High income Not classified
## 5211 144.794 13.4443 High income Not classified
## 5212 144.794 13.4443 High income Not classified
## 5213 144.794 13.4443 High income Not classified
## 5214 144.794 13.4443 High income Not classified
## 5215 144.794 13.4443 High income Not classified
## 5216 144.794 13.4443 High income Not classified
## 5217 144.794 13.4443 High income Not classified
## 5218 144.794 13.4443 High income Not classified
## 5219 144.794 13.4443 High income Not classified
## 5220 144.794 13.4443 High income Not classified
## 5221 144.794 13.4443 High income Not classified
## 5222 144.794 13.4443 High income Not classified
## 5223 144.794 13.4443 High income Not classified
## 5224 144.794 13.4443 High income Not classified
## 5225 144.794 13.4443 High income Not classified
## 5226 144.794 13.4443 High income Not classified
## 5227 144.794 13.4443 High income Not classified
## 5228 144.794 13.4443 High income Not classified
## 5229 144.794 13.4443 High income Not classified
## 5230 144.794 13.4443 High income Not classified
## 5231 144.794 13.4443 High income Not classified
## 5232 144.794 13.4443 High income Not classified
## 5233 144.794 13.4443 High income Not classified
## 5234 144.794 13.4443 High income Not classified
## 5235 144.794 13.4443 High income Not classified
## 5236 144.794 13.4443 High income Not classified
## 5237 144.794 13.4443 High income Not classified
## 5238 144.794 13.4443 High income Not classified
## 5239 144.794 13.4443 High income Not classified
## 5240 144.794 13.4443 High income Not classified
## 5241 144.794 13.4443 High income Not classified
## 5242 144.794 13.4443 High income Not classified
## 5243 144.794 13.4443 High income Not classified
## 5244 144.794 13.4443 High income Not classified
## 5245 144.794 13.4443 High income Not classified
## 5246 144.794 13.4443 High income Not classified
## 5247 144.794 13.4443 High income Not classified
## 5248 144.794 13.4443 High income Not classified
## 5249 144.794 13.4443 High income Not classified
## 5250 144.794 13.4443 High income Not classified
## 5251 144.794 13.4443 High income Not classified
## 5252 144.794 13.4443 High income Not classified
## 5253 144.794 13.4443 High income Not classified
## 5254 144.794 13.4443 High income Not classified
## 5255 144.794 13.4443 High income Not classified
## 5256 144.794 13.4443 High income Not classified
## 5257 144.794 13.4443 High income Not classified
## 5258 144.794 13.4443 High income Not classified
## 5259 144.794 13.4443 High income Not classified
## 5260 144.794 13.4443 High income Not classified
## 5261 144.794 13.4443 High income Not classified
## 5262 144.794 13.4443 High income Not classified
## 5263 144.794 13.4443 High income Not classified
## 5264 144.794 13.4443 High income Not classified
## 5265 144.794 13.4443 High income Not classified
## 5266 144.794 13.4443 High income Not classified
## 5267 144.794 13.4443 High income Not classified
## 5268 144.794 13.4443 High income Not classified
## 5269 144.794 13.4443 High income Not classified
## 5270 144.794 13.4443 High income Not classified
## 5271 -15.1804 11.8037 Low income IDA
## 5272 -15.1804 11.8037 Low income IDA
## 5273 -15.1804 11.8037 Low income IDA
## 5274 -15.1804 11.8037 Low income IDA
## 5275 -15.1804 11.8037 Low income IDA
## 5276 -15.1804 11.8037 Low income IDA
## 5277 -15.1804 11.8037 Low income IDA
## 5278 -15.1804 11.8037 Low income IDA
## 5279 -15.1804 11.8037 Low income IDA
## 5280 -15.1804 11.8037 Low income IDA
## 5281 -15.1804 11.8037 Low income IDA
## 5282 -15.1804 11.8037 Low income IDA
## 5283 -15.1804 11.8037 Low income IDA
## 5284 -15.1804 11.8037 Low income IDA
## 5285 -15.1804 11.8037 Low income IDA
## 5286 -15.1804 11.8037 Low income IDA
## 5287 -15.1804 11.8037 Low income IDA
## 5288 -15.1804 11.8037 Low income IDA
## 5289 -15.1804 11.8037 Low income IDA
## 5290 -15.1804 11.8037 Low income IDA
## 5291 -15.1804 11.8037 Low income IDA
## 5292 -15.1804 11.8037 Low income IDA
## 5293 -15.1804 11.8037 Low income IDA
## 5294 -15.1804 11.8037 Low income IDA
## 5295 -15.1804 11.8037 Low income IDA
## 5296 -15.1804 11.8037 Low income IDA
## 5297 -15.1804 11.8037 Low income IDA
## 5298 -15.1804 11.8037 Low income IDA
## 5299 -15.1804 11.8037 Low income IDA
## 5300 -15.1804 11.8037 Low income IDA
## 5301 -15.1804 11.8037 Low income IDA
## 5302 -15.1804 11.8037 Low income IDA
## 5303 -15.1804 11.8037 Low income IDA
## 5304 -15.1804 11.8037 Low income IDA
## 5305 -15.1804 11.8037 Low income IDA
## 5306 -15.1804 11.8037 Low income IDA
## 5307 -15.1804 11.8037 Low income IDA
## 5308 -15.1804 11.8037 Low income IDA
## 5309 -15.1804 11.8037 Low income IDA
## 5310 -15.1804 11.8037 Low income IDA
## 5311 -15.1804 11.8037 Low income IDA
## 5312 -15.1804 11.8037 Low income IDA
## 5313 -15.1804 11.8037 Low income IDA
## 5314 -15.1804 11.8037 Low income IDA
## 5315 -15.1804 11.8037 Low income IDA
## 5316 -15.1804 11.8037 Low income IDA
## 5317 -15.1804 11.8037 Low income IDA
## 5318 -15.1804 11.8037 Low income IDA
## 5319 -15.1804 11.8037 Low income IDA
## 5320 -15.1804 11.8037 Low income IDA
## 5321 -15.1804 11.8037 Low income IDA
## 5322 -15.1804 11.8037 Low income IDA
## 5323 -15.1804 11.8037 Low income IDA
## 5324 -15.1804 11.8037 Low income IDA
## 5325 -15.1804 11.8037 Low income IDA
## 5326 -15.1804 11.8037 Low income IDA
## 5327 -15.1804 11.8037 Low income IDA
## 5328 -15.1804 11.8037 Low income IDA
## 5329 -15.1804 11.8037 Low income IDA
## 5330 -15.1804 11.8037 Low income IDA
## 5331 -15.1804 11.8037 Low income IDA
## 5332 -15.1804 11.8037 Low income IDA
## 5333 -58.1548 6.80461 Upper middle income IDA
## 5334 -58.1548 6.80461 Upper middle income IDA
## 5335 -58.1548 6.80461 Upper middle income IDA
## 5336 -58.1548 6.80461 Upper middle income IDA
## 5337 -58.1548 6.80461 Upper middle income IDA
## 5338 -58.1548 6.80461 Upper middle income IDA
## 5339 -58.1548 6.80461 Upper middle income IDA
## 5340 -58.1548 6.80461 Upper middle income IDA
## 5341 -58.1548 6.80461 Upper middle income IDA
## 5342 -58.1548 6.80461 Upper middle income IDA
## 5343 -58.1548 6.80461 Upper middle income IDA
## 5344 -58.1548 6.80461 Upper middle income IDA
## 5345 -58.1548 6.80461 Upper middle income IDA
## 5346 -58.1548 6.80461 Upper middle income IDA
## 5347 -58.1548 6.80461 Upper middle income IDA
## 5348 -58.1548 6.80461 Upper middle income IDA
## 5349 -58.1548 6.80461 Upper middle income IDA
## 5350 -58.1548 6.80461 Upper middle income IDA
## 5351 -58.1548 6.80461 Upper middle income IDA
## 5352 -58.1548 6.80461 Upper middle income IDA
## 5353 -58.1548 6.80461 Upper middle income IDA
## 5354 -58.1548 6.80461 Upper middle income IDA
## 5355 -58.1548 6.80461 Upper middle income IDA
## 5356 -58.1548 6.80461 Upper middle income IDA
## 5357 -58.1548 6.80461 Upper middle income IDA
## 5358 -58.1548 6.80461 Upper middle income IDA
## 5359 -58.1548 6.80461 Upper middle income IDA
## 5360 -58.1548 6.80461 Upper middle income IDA
## 5361 -58.1548 6.80461 Upper middle income IDA
## 5362 -58.1548 6.80461 Upper middle income IDA
## 5363 -58.1548 6.80461 Upper middle income IDA
## 5364 -58.1548 6.80461 Upper middle income IDA
## 5365 -58.1548 6.80461 Upper middle income IDA
## 5366 -58.1548 6.80461 Upper middle income IDA
## 5367 -58.1548 6.80461 Upper middle income IDA
## 5368 -58.1548 6.80461 Upper middle income IDA
## 5369 -58.1548 6.80461 Upper middle income IDA
## 5370 -58.1548 6.80461 Upper middle income IDA
## 5371 -58.1548 6.80461 Upper middle income IDA
## 5372 -58.1548 6.80461 Upper middle income IDA
## 5373 -58.1548 6.80461 Upper middle income IDA
## 5374 -58.1548 6.80461 Upper middle income IDA
## 5375 -58.1548 6.80461 Upper middle income IDA
## 5376 -58.1548 6.80461 Upper middle income IDA
## 5377 -58.1548 6.80461 Upper middle income IDA
## 5378 -58.1548 6.80461 Upper middle income IDA
## 5379 -58.1548 6.80461 Upper middle income IDA
## 5380 -58.1548 6.80461 Upper middle income IDA
## 5381 -58.1548 6.80461 Upper middle income IDA
## 5382 -58.1548 6.80461 Upper middle income IDA
## 5383 -58.1548 6.80461 Upper middle income IDA
## 5384 -58.1548 6.80461 Upper middle income IDA
## 5385 -58.1548 6.80461 Upper middle income IDA
## 5386 -58.1548 6.80461 Upper middle income IDA
## 5387 -58.1548 6.80461 Upper middle income IDA
## 5388 -58.1548 6.80461 Upper middle income IDA
## 5389 -58.1548 6.80461 Upper middle income IDA
## 5390 -58.1548 6.80461 Upper middle income IDA
## 5391 -58.1548 6.80461 Upper middle income IDA
## 5392 -58.1548 6.80461 Upper middle income IDA
## 5393 -58.1548 6.80461 Upper middle income IDA
## 5394 -58.1548 6.80461 Upper middle income IDA
## 5395 114.109 22.3964 High income Not classified
## 5396 114.109 22.3964 High income Not classified
## 5397 114.109 22.3964 High income Not classified
## 5398 114.109 22.3964 High income Not classified
## 5399 114.109 22.3964 High income Not classified
## 5400 114.109 22.3964 High income Not classified
## 5401 114.109 22.3964 High income Not classified
## 5402 114.109 22.3964 High income Not classified
## 5403 114.109 22.3964 High income Not classified
## 5404 114.109 22.3964 High income Not classified
## 5405 114.109 22.3964 High income Not classified
## 5406 114.109 22.3964 High income Not classified
## 5407 114.109 22.3964 High income Not classified
## 5408 114.109 22.3964 High income Not classified
## 5409 114.109 22.3964 High income Not classified
## 5410 114.109 22.3964 High income Not classified
## 5411 114.109 22.3964 High income Not classified
## 5412 114.109 22.3964 High income Not classified
## 5413 114.109 22.3964 High income Not classified
## 5414 114.109 22.3964 High income Not classified
## 5415 114.109 22.3964 High income Not classified
## 5416 114.109 22.3964 High income Not classified
## 5417 114.109 22.3964 High income Not classified
## 5418 114.109 22.3964 High income Not classified
## 5419 114.109 22.3964 High income Not classified
## 5420 114.109 22.3964 High income Not classified
## 5421 114.109 22.3964 High income Not classified
## 5422 114.109 22.3964 High income Not classified
## 5423 114.109 22.3964 High income Not classified
## 5424 114.109 22.3964 High income Not classified
## 5425 114.109 22.3964 High income Not classified
## 5426 114.109 22.3964 High income Not classified
## 5427 114.109 22.3964 High income Not classified
## 5428 114.109 22.3964 High income Not classified
## 5429 114.109 22.3964 High income Not classified
## 5430 114.109 22.3964 High income Not classified
## 5431 114.109 22.3964 High income Not classified
## 5432 114.109 22.3964 High income Not classified
## 5433 114.109 22.3964 High income Not classified
## 5434 114.109 22.3964 High income Not classified
## 5435 114.109 22.3964 High income Not classified
## 5436 114.109 22.3964 High income Not classified
## 5437 114.109 22.3964 High income Not classified
## 5438 114.109 22.3964 High income Not classified
## 5439 114.109 22.3964 High income Not classified
## 5440 114.109 22.3964 High income Not classified
## 5441 114.109 22.3964 High income Not classified
## 5442 114.109 22.3964 High income Not classified
## 5443 114.109 22.3964 High income Not classified
## 5444 114.109 22.3964 High income Not classified
## 5445 114.109 22.3964 High income Not classified
## 5446 114.109 22.3964 High income Not classified
## 5447 114.109 22.3964 High income Not classified
## 5448 114.109 22.3964 High income Not classified
## 5449 114.109 22.3964 High income Not classified
## 5450 114.109 22.3964 High income Not classified
## 5451 114.109 22.3964 High income Not classified
## 5452 114.109 22.3964 High income Not classified
## 5453 114.109 22.3964 High income Not classified
## 5454 114.109 22.3964 High income Not classified
## 5455 114.109 22.3964 High income Not classified
## 5456 114.109 22.3964 High income Not classified
## 5457 -87.4667 15.1333 Lower middle income IDA
## 5458 -87.4667 15.1333 Lower middle income IDA
## 5459 -87.4667 15.1333 Lower middle income IDA
## 5460 -87.4667 15.1333 Lower middle income IDA
## 5461 -87.4667 15.1333 Lower middle income IDA
## 5462 -87.4667 15.1333 Lower middle income IDA
## 5463 -87.4667 15.1333 Lower middle income IDA
## 5464 -87.4667 15.1333 Lower middle income IDA
## 5465 -87.4667 15.1333 Lower middle income IDA
## 5466 -87.4667 15.1333 Lower middle income IDA
## 5467 -87.4667 15.1333 Lower middle income IDA
## 5468 -87.4667 15.1333 Lower middle income IDA
## 5469 -87.4667 15.1333 Lower middle income IDA
## 5470 -87.4667 15.1333 Lower middle income IDA
## 5471 -87.4667 15.1333 Lower middle income IDA
## 5472 -87.4667 15.1333 Lower middle income IDA
## 5473 -87.4667 15.1333 Lower middle income IDA
## 5474 -87.4667 15.1333 Lower middle income IDA
## 5475 -87.4667 15.1333 Lower middle income IDA
## 5476 -87.4667 15.1333 Lower middle income IDA
## 5477 -87.4667 15.1333 Lower middle income IDA
## 5478 -87.4667 15.1333 Lower middle income IDA
## 5479 -87.4667 15.1333 Lower middle income IDA
## 5480 -87.4667 15.1333 Lower middle income IDA
## 5481 -87.4667 15.1333 Lower middle income IDA
## 5482 -87.4667 15.1333 Lower middle income IDA
## 5483 -87.4667 15.1333 Lower middle income IDA
## 5484 -87.4667 15.1333 Lower middle income IDA
## 5485 -87.4667 15.1333 Lower middle income IDA
## 5486 -87.4667 15.1333 Lower middle income IDA
## 5487 -87.4667 15.1333 Lower middle income IDA
## 5488 -87.4667 15.1333 Lower middle income IDA
## 5489 -87.4667 15.1333 Lower middle income IDA
## 5490 -87.4667 15.1333 Lower middle income IDA
## 5491 -87.4667 15.1333 Lower middle income IDA
## 5492 -87.4667 15.1333 Lower middle income IDA
## 5493 -87.4667 15.1333 Lower middle income IDA
## 5494 -87.4667 15.1333 Lower middle income IDA
## 5495 -87.4667 15.1333 Lower middle income IDA
## 5496 -87.4667 15.1333 Lower middle income IDA
## 5497 -87.4667 15.1333 Lower middle income IDA
## 5498 -87.4667 15.1333 Lower middle income IDA
## 5499 -87.4667 15.1333 Lower middle income IDA
## 5500 -87.4667 15.1333 Lower middle income IDA
## 5501 -87.4667 15.1333 Lower middle income IDA
## 5502 -87.4667 15.1333 Lower middle income IDA
## 5503 -87.4667 15.1333 Lower middle income IDA
## 5504 -87.4667 15.1333 Lower middle income IDA
## 5505 -87.4667 15.1333 Lower middle income IDA
## 5506 -87.4667 15.1333 Lower middle income IDA
## 5507 -87.4667 15.1333 Lower middle income IDA
## 5508 -87.4667 15.1333 Lower middle income IDA
## 5509 -87.4667 15.1333 Lower middle income IDA
## 5510 -87.4667 15.1333 Lower middle income IDA
## 5511 -87.4667 15.1333 Lower middle income IDA
## 5512 -87.4667 15.1333 Lower middle income IDA
## 5513 -87.4667 15.1333 Lower middle income IDA
## 5514 -87.4667 15.1333 Lower middle income IDA
## 5515 -87.4667 15.1333 Lower middle income IDA
## 5516 -87.4667 15.1333 Lower middle income IDA
## 5517 -87.4667 15.1333 Lower middle income IDA
## 5518 -87.4667 15.1333 Lower middle income IDA
## 5519 15.9614 45.8069 High income IBRD
## 5520 15.9614 45.8069 High income IBRD
## 5521 15.9614 45.8069 High income IBRD
## 5522 15.9614 45.8069 High income IBRD
## 5523 15.9614 45.8069 High income IBRD
## 5524 15.9614 45.8069 High income IBRD
## 5525 15.9614 45.8069 High income IBRD
## 5526 15.9614 45.8069 High income IBRD
## 5527 15.9614 45.8069 High income IBRD
## 5528 15.9614 45.8069 High income IBRD
## 5529 15.9614 45.8069 High income IBRD
## 5530 15.9614 45.8069 High income IBRD
## 5531 15.9614 45.8069 High income IBRD
## 5532 15.9614 45.8069 High income IBRD
## 5533 15.9614 45.8069 High income IBRD
## 5534 15.9614 45.8069 High income IBRD
## 5535 15.9614 45.8069 High income IBRD
## 5536 15.9614 45.8069 High income IBRD
## 5537 15.9614 45.8069 High income IBRD
## 5538 15.9614 45.8069 High income IBRD
## 5539 15.9614 45.8069 High income IBRD
## 5540 15.9614 45.8069 High income IBRD
## 5541 15.9614 45.8069 High income IBRD
## 5542 15.9614 45.8069 High income IBRD
## 5543 15.9614 45.8069 High income IBRD
## 5544 15.9614 45.8069 High income IBRD
## 5545 15.9614 45.8069 High income IBRD
## 5546 15.9614 45.8069 High income IBRD
## 5547 15.9614 45.8069 High income IBRD
## 5548 15.9614 45.8069 High income IBRD
## 5549 15.9614 45.8069 High income IBRD
## 5550 15.9614 45.8069 High income IBRD
## 5551 15.9614 45.8069 High income IBRD
## 5552 15.9614 45.8069 High income IBRD
## 5553 15.9614 45.8069 High income IBRD
## 5554 15.9614 45.8069 High income IBRD
## 5555 15.9614 45.8069 High income IBRD
## 5556 15.9614 45.8069 High income IBRD
## 5557 15.9614 45.8069 High income IBRD
## 5558 15.9614 45.8069 High income IBRD
## 5559 15.9614 45.8069 High income IBRD
## 5560 15.9614 45.8069 High income IBRD
## 5561 15.9614 45.8069 High income IBRD
## 5562 15.9614 45.8069 High income IBRD
## 5563 15.9614 45.8069 High income IBRD
## 5564 15.9614 45.8069 High income IBRD
## 5565 15.9614 45.8069 High income IBRD
## 5566 15.9614 45.8069 High income IBRD
## 5567 15.9614 45.8069 High income IBRD
## 5568 15.9614 45.8069 High income IBRD
## 5569 15.9614 45.8069 High income IBRD
## 5570 15.9614 45.8069 High income IBRD
## 5571 15.9614 45.8069 High income IBRD
## 5572 15.9614 45.8069 High income IBRD
## 5573 15.9614 45.8069 High income IBRD
## 5574 15.9614 45.8069 High income IBRD
## 5575 15.9614 45.8069 High income IBRD
## 5576 15.9614 45.8069 High income IBRD
## 5577 15.9614 45.8069 High income IBRD
## 5578 15.9614 45.8069 High income IBRD
## 5579 15.9614 45.8069 High income IBRD
## 5580 15.9614 45.8069 High income IBRD
## 5581 -72.3288 18.5392 Lower middle income IDA
## 5582 -72.3288 18.5392 Lower middle income IDA
## 5583 -72.3288 18.5392 Lower middle income IDA
## 5584 -72.3288 18.5392 Lower middle income IDA
## 5585 -72.3288 18.5392 Lower middle income IDA
## 5586 -72.3288 18.5392 Lower middle income IDA
## 5587 -72.3288 18.5392 Lower middle income IDA
## 5588 -72.3288 18.5392 Lower middle income IDA
## 5589 -72.3288 18.5392 Lower middle income IDA
## 5590 -72.3288 18.5392 Lower middle income IDA
## 5591 -72.3288 18.5392 Lower middle income IDA
## 5592 -72.3288 18.5392 Lower middle income IDA
## 5593 -72.3288 18.5392 Lower middle income IDA
## 5594 -72.3288 18.5392 Lower middle income IDA
## 5595 -72.3288 18.5392 Lower middle income IDA
## 5596 -72.3288 18.5392 Lower middle income IDA
## 5597 -72.3288 18.5392 Lower middle income IDA
## 5598 -72.3288 18.5392 Lower middle income IDA
## 5599 -72.3288 18.5392 Lower middle income IDA
## 5600 -72.3288 18.5392 Lower middle income IDA
## 5601 -72.3288 18.5392 Lower middle income IDA
## 5602 -72.3288 18.5392 Lower middle income IDA
## 5603 -72.3288 18.5392 Lower middle income IDA
## 5604 -72.3288 18.5392 Lower middle income IDA
## 5605 -72.3288 18.5392 Lower middle income IDA
## 5606 -72.3288 18.5392 Lower middle income IDA
## 5607 -72.3288 18.5392 Lower middle income IDA
## 5608 -72.3288 18.5392 Lower middle income IDA
## 5609 -72.3288 18.5392 Lower middle income IDA
## 5610 -72.3288 18.5392 Lower middle income IDA
## 5611 -72.3288 18.5392 Lower middle income IDA
## 5612 -72.3288 18.5392 Lower middle income IDA
## 5613 -72.3288 18.5392 Lower middle income IDA
## 5614 -72.3288 18.5392 Lower middle income IDA
## 5615 -72.3288 18.5392 Lower middle income IDA
## 5616 -72.3288 18.5392 Lower middle income IDA
## 5617 -72.3288 18.5392 Lower middle income IDA
## 5618 -72.3288 18.5392 Lower middle income IDA
## 5619 -72.3288 18.5392 Lower middle income IDA
## 5620 -72.3288 18.5392 Lower middle income IDA
## 5621 -72.3288 18.5392 Lower middle income IDA
## 5622 -72.3288 18.5392 Lower middle income IDA
## 5623 -72.3288 18.5392 Lower middle income IDA
## 5624 -72.3288 18.5392 Lower middle income IDA
## 5625 -72.3288 18.5392 Lower middle income IDA
## 5626 -72.3288 18.5392 Lower middle income IDA
## 5627 -72.3288 18.5392 Lower middle income IDA
## 5628 -72.3288 18.5392 Lower middle income IDA
## 5629 -72.3288 18.5392 Lower middle income IDA
## 5630 -72.3288 18.5392 Lower middle income IDA
## 5631 -72.3288 18.5392 Lower middle income IDA
## 5632 -72.3288 18.5392 Lower middle income IDA
## 5633 -72.3288 18.5392 Lower middle income IDA
## 5634 -72.3288 18.5392 Lower middle income IDA
## 5635 -72.3288 18.5392 Lower middle income IDA
## 5636 -72.3288 18.5392 Lower middle income IDA
## 5637 -72.3288 18.5392 Lower middle income IDA
## 5638 -72.3288 18.5392 Lower middle income IDA
## 5639 -72.3288 18.5392 Lower middle income IDA
## 5640 -72.3288 18.5392 Lower middle income IDA
## 5641 -72.3288 18.5392 Lower middle income IDA
## 5642 -72.3288 18.5392 Lower middle income IDA
## 5643 19.0408 47.4984 High income Not classified
## 5644 19.0408 47.4984 High income Not classified
## 5645 19.0408 47.4984 High income Not classified
## 5646 19.0408 47.4984 High income Not classified
## 5647 19.0408 47.4984 High income Not classified
## 5648 19.0408 47.4984 High income Not classified
## 5649 19.0408 47.4984 High income Not classified
## 5650 19.0408 47.4984 High income Not classified
## 5651 19.0408 47.4984 High income Not classified
## 5652 19.0408 47.4984 High income Not classified
## 5653 19.0408 47.4984 High income Not classified
## 5654 19.0408 47.4984 High income Not classified
## 5655 19.0408 47.4984 High income Not classified
## 5656 19.0408 47.4984 High income Not classified
## 5657 19.0408 47.4984 High income Not classified
## 5658 19.0408 47.4984 High income Not classified
## 5659 19.0408 47.4984 High income Not classified
## 5660 19.0408 47.4984 High income Not classified
## 5661 19.0408 47.4984 High income Not classified
## 5662 19.0408 47.4984 High income Not classified
## 5663 19.0408 47.4984 High income Not classified
## 5664 19.0408 47.4984 High income Not classified
## 5665 19.0408 47.4984 High income Not classified
## 5666 19.0408 47.4984 High income Not classified
## 5667 19.0408 47.4984 High income Not classified
## 5668 19.0408 47.4984 High income Not classified
## 5669 19.0408 47.4984 High income Not classified
## 5670 19.0408 47.4984 High income Not classified
## 5671 19.0408 47.4984 High income Not classified
## 5672 19.0408 47.4984 High income Not classified
## 5673 19.0408 47.4984 High income Not classified
## 5674 19.0408 47.4984 High income Not classified
## 5675 19.0408 47.4984 High income Not classified
## 5676 19.0408 47.4984 High income Not classified
## 5677 19.0408 47.4984 High income Not classified
## 5678 19.0408 47.4984 High income Not classified
## 5679 19.0408 47.4984 High income Not classified
## 5680 19.0408 47.4984 High income Not classified
## 5681 19.0408 47.4984 High income Not classified
## 5682 19.0408 47.4984 High income Not classified
## 5683 19.0408 47.4984 High income Not classified
## 5684 19.0408 47.4984 High income Not classified
## 5685 19.0408 47.4984 High income Not classified
## 5686 19.0408 47.4984 High income Not classified
## 5687 19.0408 47.4984 High income Not classified
## 5688 19.0408 47.4984 High income Not classified
## 5689 19.0408 47.4984 High income Not classified
## 5690 19.0408 47.4984 High income Not classified
## 5691 19.0408 47.4984 High income Not classified
## 5692 19.0408 47.4984 High income Not classified
## 5693 19.0408 47.4984 High income Not classified
## 5694 19.0408 47.4984 High income Not classified
## 5695 19.0408 47.4984 High income Not classified
## 5696 19.0408 47.4984 High income Not classified
## 5697 19.0408 47.4984 High income Not classified
## 5698 19.0408 47.4984 High income Not classified
## 5699 19.0408 47.4984 High income Not classified
## 5700 19.0408 47.4984 High income Not classified
## 5701 19.0408 47.4984 High income Not classified
## 5702 19.0408 47.4984 High income Not classified
## 5703 19.0408 47.4984 High income Not classified
## 5704 19.0408 47.4984 High income Not classified
## 5705 106.83 -6.19752 Lower middle income IBRD
## 5706 106.83 -6.19752 Lower middle income IBRD
## 5707 106.83 -6.19752 Lower middle income IBRD
## 5708 106.83 -6.19752 Lower middle income IBRD
## 5709 106.83 -6.19752 Lower middle income IBRD
## 5710 106.83 -6.19752 Lower middle income IBRD
## 5711 106.83 -6.19752 Lower middle income IBRD
## 5712 106.83 -6.19752 Lower middle income IBRD
## 5713 106.83 -6.19752 Lower middle income IBRD
## 5714 106.83 -6.19752 Lower middle income IBRD
## 5715 106.83 -6.19752 Lower middle income IBRD
## 5716 106.83 -6.19752 Lower middle income IBRD
## 5717 106.83 -6.19752 Lower middle income IBRD
## 5718 106.83 -6.19752 Lower middle income IBRD
## 5719 106.83 -6.19752 Lower middle income IBRD
## 5720 106.83 -6.19752 Lower middle income IBRD
## 5721 106.83 -6.19752 Lower middle income IBRD
## 5722 106.83 -6.19752 Lower middle income IBRD
## 5723 106.83 -6.19752 Lower middle income IBRD
## 5724 106.83 -6.19752 Lower middle income IBRD
## 5725 106.83 -6.19752 Lower middle income IBRD
## 5726 106.83 -6.19752 Lower middle income IBRD
## 5727 106.83 -6.19752 Lower middle income IBRD
## 5728 106.83 -6.19752 Lower middle income IBRD
## 5729 106.83 -6.19752 Lower middle income IBRD
## 5730 106.83 -6.19752 Lower middle income IBRD
## 5731 106.83 -6.19752 Lower middle income IBRD
## 5732 106.83 -6.19752 Lower middle income IBRD
## 5733 106.83 -6.19752 Lower middle income IBRD
## 5734 106.83 -6.19752 Lower middle income IBRD
## 5735 106.83 -6.19752 Lower middle income IBRD
## 5736 106.83 -6.19752 Lower middle income IBRD
## 5737 106.83 -6.19752 Lower middle income IBRD
## 5738 106.83 -6.19752 Lower middle income IBRD
## 5739 106.83 -6.19752 Lower middle income IBRD
## 5740 106.83 -6.19752 Lower middle income IBRD
## 5741 106.83 -6.19752 Lower middle income IBRD
## 5742 106.83 -6.19752 Lower middle income IBRD
## 5743 106.83 -6.19752 Lower middle income IBRD
## 5744 106.83 -6.19752 Lower middle income IBRD
## 5745 106.83 -6.19752 Lower middle income IBRD
## 5746 106.83 -6.19752 Lower middle income IBRD
## 5747 106.83 -6.19752 Lower middle income IBRD
## 5748 106.83 -6.19752 Lower middle income IBRD
## 5749 106.83 -6.19752 Lower middle income IBRD
## 5750 106.83 -6.19752 Lower middle income IBRD
## 5751 106.83 -6.19752 Lower middle income IBRD
## 5752 106.83 -6.19752 Lower middle income IBRD
## 5753 106.83 -6.19752 Lower middle income IBRD
## 5754 106.83 -6.19752 Lower middle income IBRD
## 5755 106.83 -6.19752 Lower middle income IBRD
## 5756 106.83 -6.19752 Lower middle income IBRD
## 5757 106.83 -6.19752 Lower middle income IBRD
## 5758 106.83 -6.19752 Lower middle income IBRD
## 5759 106.83 -6.19752 Lower middle income IBRD
## 5760 106.83 -6.19752 Lower middle income IBRD
## 5761 106.83 -6.19752 Lower middle income IBRD
## 5762 106.83 -6.19752 Lower middle income IBRD
## 5763 106.83 -6.19752 Lower middle income IBRD
## 5764 106.83 -6.19752 Lower middle income IBRD
## 5765 106.83 -6.19752 Lower middle income IBRD
## 5766 106.83 -6.19752 Lower middle income IBRD
## 5767 -6.26749 53.3441 High income Not classified
## 5768 -6.26749 53.3441 High income Not classified
## 5769 -6.26749 53.3441 High income Not classified
## 5770 -6.26749 53.3441 High income Not classified
## 5771 -6.26749 53.3441 High income Not classified
## 5772 -6.26749 53.3441 High income Not classified
## 5773 -6.26749 53.3441 High income Not classified
## 5774 -6.26749 53.3441 High income Not classified
## 5775 -6.26749 53.3441 High income Not classified
## 5776 -6.26749 53.3441 High income Not classified
## 5777 -6.26749 53.3441 High income Not classified
## 5778 -6.26749 53.3441 High income Not classified
## 5779 -6.26749 53.3441 High income Not classified
## 5780 -6.26749 53.3441 High income Not classified
## 5781 -6.26749 53.3441 High income Not classified
## 5782 -6.26749 53.3441 High income Not classified
## 5783 -6.26749 53.3441 High income Not classified
## 5784 -6.26749 53.3441 High income Not classified
## 5785 -6.26749 53.3441 High income Not classified
## 5786 -6.26749 53.3441 High income Not classified
## 5787 -6.26749 53.3441 High income Not classified
## 5788 -6.26749 53.3441 High income Not classified
## 5789 -6.26749 53.3441 High income Not classified
## 5790 -6.26749 53.3441 High income Not classified
## 5791 -6.26749 53.3441 High income Not classified
## 5792 -6.26749 53.3441 High income Not classified
## 5793 -6.26749 53.3441 High income Not classified
## 5794 -6.26749 53.3441 High income Not classified
## 5795 -6.26749 53.3441 High income Not classified
## 5796 -6.26749 53.3441 High income Not classified
## 5797 -6.26749 53.3441 High income Not classified
## 5798 -6.26749 53.3441 High income Not classified
## 5799 -6.26749 53.3441 High income Not classified
## 5800 -6.26749 53.3441 High income Not classified
## 5801 -6.26749 53.3441 High income Not classified
## 5802 -6.26749 53.3441 High income Not classified
## 5803 -6.26749 53.3441 High income Not classified
## 5804 -6.26749 53.3441 High income Not classified
## 5805 -6.26749 53.3441 High income Not classified
## 5806 -6.26749 53.3441 High income Not classified
## 5807 -6.26749 53.3441 High income Not classified
## 5808 -6.26749 53.3441 High income Not classified
## 5809 -6.26749 53.3441 High income Not classified
## 5810 -6.26749 53.3441 High income Not classified
## 5811 -6.26749 53.3441 High income Not classified
## 5812 -6.26749 53.3441 High income Not classified
## 5813 -6.26749 53.3441 High income Not classified
## 5814 -6.26749 53.3441 High income Not classified
## 5815 -6.26749 53.3441 High income Not classified
## 5816 -6.26749 53.3441 High income Not classified
## 5817 -6.26749 53.3441 High income Not classified
## 5818 -6.26749 53.3441 High income Not classified
## 5819 -6.26749 53.3441 High income Not classified
## 5820 -6.26749 53.3441 High income Not classified
## 5821 -6.26749 53.3441 High income Not classified
## 5822 -6.26749 53.3441 High income Not classified
## 5823 -6.26749 53.3441 High income Not classified
## 5824 -6.26749 53.3441 High income Not classified
## 5825 -6.26749 53.3441 High income Not classified
## 5826 -6.26749 53.3441 High income Not classified
## 5827 -6.26749 53.3441 High income Not classified
## 5828 -6.26749 53.3441 High income Not classified
## 5829 35.2035 31.7717 High income Not classified
## 5830 35.2035 31.7717 High income Not classified
## 5831 35.2035 31.7717 High income Not classified
## 5832 35.2035 31.7717 High income Not classified
## 5833 35.2035 31.7717 High income Not classified
## 5834 35.2035 31.7717 High income Not classified
## 5835 35.2035 31.7717 High income Not classified
## 5836 35.2035 31.7717 High income Not classified
## 5837 35.2035 31.7717 High income Not classified
## 5838 35.2035 31.7717 High income Not classified
## 5839 35.2035 31.7717 High income Not classified
## 5840 35.2035 31.7717 High income Not classified
## 5841 35.2035 31.7717 High income Not classified
## 5842 35.2035 31.7717 High income Not classified
## 5843 35.2035 31.7717 High income Not classified
## 5844 35.2035 31.7717 High income Not classified
## 5845 35.2035 31.7717 High income Not classified
## 5846 35.2035 31.7717 High income Not classified
## 5847 35.2035 31.7717 High income Not classified
## 5848 35.2035 31.7717 High income Not classified
## 5849 35.2035 31.7717 High income Not classified
## 5850 35.2035 31.7717 High income Not classified
## 5851 35.2035 31.7717 High income Not classified
## 5852 35.2035 31.7717 High income Not classified
## 5853 35.2035 31.7717 High income Not classified
## 5854 35.2035 31.7717 High income Not classified
## 5855 35.2035 31.7717 High income Not classified
## 5856 35.2035 31.7717 High income Not classified
## 5857 35.2035 31.7717 High income Not classified
## 5858 35.2035 31.7717 High income Not classified
## 5859 35.2035 31.7717 High income Not classified
## 5860 35.2035 31.7717 High income Not classified
## 5861 35.2035 31.7717 High income Not classified
## 5862 35.2035 31.7717 High income Not classified
## 5863 35.2035 31.7717 High income Not classified
## 5864 35.2035 31.7717 High income Not classified
## 5865 35.2035 31.7717 High income Not classified
## 5866 35.2035 31.7717 High income Not classified
## 5867 35.2035 31.7717 High income Not classified
## 5868 35.2035 31.7717 High income Not classified
## 5869 35.2035 31.7717 High income Not classified
## 5870 35.2035 31.7717 High income Not classified
## 5871 35.2035 31.7717 High income Not classified
## 5872 35.2035 31.7717 High income Not classified
## 5873 35.2035 31.7717 High income Not classified
## 5874 35.2035 31.7717 High income Not classified
## 5875 35.2035 31.7717 High income Not classified
## 5876 35.2035 31.7717 High income Not classified
## 5877 35.2035 31.7717 High income Not classified
## 5878 35.2035 31.7717 High income Not classified
## 5879 35.2035 31.7717 High income Not classified
## 5880 35.2035 31.7717 High income Not classified
## 5881 35.2035 31.7717 High income Not classified
## 5882 35.2035 31.7717 High income Not classified
## 5883 35.2035 31.7717 High income Not classified
## 5884 35.2035 31.7717 High income Not classified
## 5885 35.2035 31.7717 High income Not classified
## 5886 35.2035 31.7717 High income Not classified
## 5887 35.2035 31.7717 High income Not classified
## 5888 35.2035 31.7717 High income Not classified
## 5889 35.2035 31.7717 High income Not classified
## 5890 35.2035 31.7717 High income Not classified
## 5891 -4.47928 54.1509 High income Not classified
## 5892 -4.47928 54.1509 High income Not classified
## 5893 -4.47928 54.1509 High income Not classified
## 5894 -4.47928 54.1509 High income Not classified
## 5895 -4.47928 54.1509 High income Not classified
## 5896 -4.47928 54.1509 High income Not classified
## 5897 -4.47928 54.1509 High income Not classified
## 5898 -4.47928 54.1509 High income Not classified
## 5899 -4.47928 54.1509 High income Not classified
## 5900 -4.47928 54.1509 High income Not classified
## 5901 -4.47928 54.1509 High income Not classified
## 5902 -4.47928 54.1509 High income Not classified
## 5903 -4.47928 54.1509 High income Not classified
## 5904 -4.47928 54.1509 High income Not classified
## 5905 -4.47928 54.1509 High income Not classified
## 5906 -4.47928 54.1509 High income Not classified
## 5907 -4.47928 54.1509 High income Not classified
## 5908 -4.47928 54.1509 High income Not classified
## 5909 -4.47928 54.1509 High income Not classified
## 5910 -4.47928 54.1509 High income Not classified
## 5911 -4.47928 54.1509 High income Not classified
## 5912 -4.47928 54.1509 High income Not classified
## 5913 -4.47928 54.1509 High income Not classified
## 5914 -4.47928 54.1509 High income Not classified
## 5915 -4.47928 54.1509 High income Not classified
## 5916 -4.47928 54.1509 High income Not classified
## 5917 -4.47928 54.1509 High income Not classified
## 5918 -4.47928 54.1509 High income Not classified
## 5919 -4.47928 54.1509 High income Not classified
## 5920 -4.47928 54.1509 High income Not classified
## 5921 -4.47928 54.1509 High income Not classified
## 5922 -4.47928 54.1509 High income Not classified
## 5923 -4.47928 54.1509 High income Not classified
## 5924 -4.47928 54.1509 High income Not classified
## 5925 -4.47928 54.1509 High income Not classified
## 5926 -4.47928 54.1509 High income Not classified
## 5927 -4.47928 54.1509 High income Not classified
## 5928 -4.47928 54.1509 High income Not classified
## 5929 -4.47928 54.1509 High income Not classified
## 5930 -4.47928 54.1509 High income Not classified
## 5931 -4.47928 54.1509 High income Not classified
## 5932 -4.47928 54.1509 High income Not classified
## 5933 -4.47928 54.1509 High income Not classified
## 5934 -4.47928 54.1509 High income Not classified
## 5935 -4.47928 54.1509 High income Not classified
## 5936 -4.47928 54.1509 High income Not classified
## 5937 -4.47928 54.1509 High income Not classified
## 5938 -4.47928 54.1509 High income Not classified
## 5939 -4.47928 54.1509 High income Not classified
## 5940 -4.47928 54.1509 High income Not classified
## 5941 -4.47928 54.1509 High income Not classified
## 5942 -4.47928 54.1509 High income Not classified
## 5943 -4.47928 54.1509 High income Not classified
## 5944 -4.47928 54.1509 High income Not classified
## 5945 -4.47928 54.1509 High income Not classified
## 5946 -4.47928 54.1509 High income Not classified
## 5947 -4.47928 54.1509 High income Not classified
## 5948 -4.47928 54.1509 High income Not classified
## 5949 -4.47928 54.1509 High income Not classified
## 5950 -4.47928 54.1509 High income Not classified
## 5951 -4.47928 54.1509 High income Not classified
## 5952 -4.47928 54.1509 High income Not classified
## 5953 77.225 28.6353 Lower middle income IBRD
## 5954 77.225 28.6353 Lower middle income IBRD
## 5955 77.225 28.6353 Lower middle income IBRD
## 5956 77.225 28.6353 Lower middle income IBRD
## 5957 77.225 28.6353 Lower middle income IBRD
## 5958 77.225 28.6353 Lower middle income IBRD
## 5959 77.225 28.6353 Lower middle income IBRD
## 5960 77.225 28.6353 Lower middle income IBRD
## 5961 77.225 28.6353 Lower middle income IBRD
## 5962 77.225 28.6353 Lower middle income IBRD
## 5963 77.225 28.6353 Lower middle income IBRD
## 5964 77.225 28.6353 Lower middle income IBRD
## 5965 77.225 28.6353 Lower middle income IBRD
## 5966 77.225 28.6353 Lower middle income IBRD
## 5967 77.225 28.6353 Lower middle income IBRD
## 5968 77.225 28.6353 Lower middle income IBRD
## 5969 77.225 28.6353 Lower middle income IBRD
## 5970 77.225 28.6353 Lower middle income IBRD
## 5971 77.225 28.6353 Lower middle income IBRD
## 5972 77.225 28.6353 Lower middle income IBRD
## 5973 77.225 28.6353 Lower middle income IBRD
## 5974 77.225 28.6353 Lower middle income IBRD
## 5975 77.225 28.6353 Lower middle income IBRD
## 5976 77.225 28.6353 Lower middle income IBRD
## 5977 77.225 28.6353 Lower middle income IBRD
## 5978 77.225 28.6353 Lower middle income IBRD
## 5979 77.225 28.6353 Lower middle income IBRD
## 5980 77.225 28.6353 Lower middle income IBRD
## 5981 77.225 28.6353 Lower middle income IBRD
## 5982 77.225 28.6353 Lower middle income IBRD
## 5983 77.225 28.6353 Lower middle income IBRD
## 5984 77.225 28.6353 Lower middle income IBRD
## 5985 77.225 28.6353 Lower middle income IBRD
## 5986 77.225 28.6353 Lower middle income IBRD
## 5987 77.225 28.6353 Lower middle income IBRD
## 5988 77.225 28.6353 Lower middle income IBRD
## 5989 77.225 28.6353 Lower middle income IBRD
## 5990 77.225 28.6353 Lower middle income IBRD
## 5991 77.225 28.6353 Lower middle income IBRD
## 5992 77.225 28.6353 Lower middle income IBRD
## 5993 77.225 28.6353 Lower middle income IBRD
## 5994 77.225 28.6353 Lower middle income IBRD
## 5995 77.225 28.6353 Lower middle income IBRD
## 5996 77.225 28.6353 Lower middle income IBRD
## 5997 77.225 28.6353 Lower middle income IBRD
## 5998 77.225 28.6353 Lower middle income IBRD
## 5999 77.225 28.6353 Lower middle income IBRD
## 6000 77.225 28.6353 Lower middle income IBRD
## 6001 77.225 28.6353 Lower middle income IBRD
## 6002 77.225 28.6353 Lower middle income IBRD
## 6003 77.225 28.6353 Lower middle income IBRD
## 6004 77.225 28.6353 Lower middle income IBRD
## 6005 77.225 28.6353 Lower middle income IBRD
## 6006 77.225 28.6353 Lower middle income IBRD
## 6007 77.225 28.6353 Lower middle income IBRD
## 6008 77.225 28.6353 Lower middle income IBRD
## 6009 77.225 28.6353 Lower middle income IBRD
## 6010 77.225 28.6353 Lower middle income IBRD
## 6011 77.225 28.6353 Lower middle income IBRD
## 6012 77.225 28.6353 Lower middle income IBRD
## 6013 77.225 28.6353 Lower middle income IBRD
## 6014 77.225 28.6353 Lower middle income IBRD
## 6015 44.394 33.3302 Upper middle income IBRD
## 6016 44.394 33.3302 Upper middle income IBRD
## 6017 44.394 33.3302 Upper middle income IBRD
## 6018 44.394 33.3302 Upper middle income IBRD
## 6019 44.394 33.3302 Upper middle income IBRD
## 6020 44.394 33.3302 Upper middle income IBRD
## 6021 44.394 33.3302 Upper middle income IBRD
## 6022 44.394 33.3302 Upper middle income IBRD
## 6023 44.394 33.3302 Upper middle income IBRD
## 6024 44.394 33.3302 Upper middle income IBRD
## 6025 44.394 33.3302 Upper middle income IBRD
## 6026 44.394 33.3302 Upper middle income IBRD
## 6027 44.394 33.3302 Upper middle income IBRD
## 6028 44.394 33.3302 Upper middle income IBRD
## 6029 44.394 33.3302 Upper middle income IBRD
## 6030 44.394 33.3302 Upper middle income IBRD
## 6031 44.394 33.3302 Upper middle income IBRD
## 6032 44.394 33.3302 Upper middle income IBRD
## 6033 44.394 33.3302 Upper middle income IBRD
## 6034 44.394 33.3302 Upper middle income IBRD
## 6035 44.394 33.3302 Upper middle income IBRD
## 6036 44.394 33.3302 Upper middle income IBRD
## 6037 44.394 33.3302 Upper middle income IBRD
## 6038 44.394 33.3302 Upper middle income IBRD
## 6039 44.394 33.3302 Upper middle income IBRD
## 6040 44.394 33.3302 Upper middle income IBRD
## 6041 44.394 33.3302 Upper middle income IBRD
## 6042 44.394 33.3302 Upper middle income IBRD
## 6043 44.394 33.3302 Upper middle income IBRD
## 6044 44.394 33.3302 Upper middle income IBRD
## 6045 44.394 33.3302 Upper middle income IBRD
## 6046 44.394 33.3302 Upper middle income IBRD
## 6047 44.394 33.3302 Upper middle income IBRD
## 6048 44.394 33.3302 Upper middle income IBRD
## 6049 44.394 33.3302 Upper middle income IBRD
## 6050 44.394 33.3302 Upper middle income IBRD
## 6051 44.394 33.3302 Upper middle income IBRD
## 6052 44.394 33.3302 Upper middle income IBRD
## 6053 44.394 33.3302 Upper middle income IBRD
## 6054 44.394 33.3302 Upper middle income IBRD
## 6055 44.394 33.3302 Upper middle income IBRD
## 6056 44.394 33.3302 Upper middle income IBRD
## 6057 44.394 33.3302 Upper middle income IBRD
## 6058 44.394 33.3302 Upper middle income IBRD
## 6059 44.394 33.3302 Upper middle income IBRD
## 6060 44.394 33.3302 Upper middle income IBRD
## 6061 44.394 33.3302 Upper middle income IBRD
## 6062 44.394 33.3302 Upper middle income IBRD
## 6063 44.394 33.3302 Upper middle income IBRD
## 6064 44.394 33.3302 Upper middle income IBRD
## 6065 44.394 33.3302 Upper middle income IBRD
## 6066 44.394 33.3302 Upper middle income IBRD
## 6067 44.394 33.3302 Upper middle income IBRD
## 6068 44.394 33.3302 Upper middle income IBRD
## 6069 44.394 33.3302 Upper middle income IBRD
## 6070 44.394 33.3302 Upper middle income IBRD
## 6071 44.394 33.3302 Upper middle income IBRD
## 6072 44.394 33.3302 Upper middle income IBRD
## 6073 44.394 33.3302 Upper middle income IBRD
## 6074 44.394 33.3302 Upper middle income IBRD
## 6075 44.394 33.3302 Upper middle income IBRD
## 6076 44.394 33.3302 Upper middle income IBRD
## 6077 51.4447 35.6878 Lower middle income IBRD
## 6078 51.4447 35.6878 Lower middle income IBRD
## 6079 51.4447 35.6878 Lower middle income IBRD
## 6080 51.4447 35.6878 Lower middle income IBRD
## 6081 51.4447 35.6878 Lower middle income IBRD
## 6082 51.4447 35.6878 Lower middle income IBRD
## 6083 51.4447 35.6878 Lower middle income IBRD
## 6084 51.4447 35.6878 Lower middle income IBRD
## 6085 51.4447 35.6878 Lower middle income IBRD
## 6086 51.4447 35.6878 Lower middle income IBRD
## 6087 51.4447 35.6878 Lower middle income IBRD
## 6088 51.4447 35.6878 Lower middle income IBRD
## 6089 51.4447 35.6878 Lower middle income IBRD
## 6090 51.4447 35.6878 Lower middle income IBRD
## 6091 51.4447 35.6878 Lower middle income IBRD
## 6092 51.4447 35.6878 Lower middle income IBRD
## 6093 51.4447 35.6878 Lower middle income IBRD
## 6094 51.4447 35.6878 Lower middle income IBRD
## 6095 51.4447 35.6878 Lower middle income IBRD
## 6096 51.4447 35.6878 Lower middle income IBRD
## 6097 51.4447 35.6878 Lower middle income IBRD
## 6098 51.4447 35.6878 Lower middle income IBRD
## 6099 51.4447 35.6878 Lower middle income IBRD
## 6100 51.4447 35.6878 Lower middle income IBRD
## 6101 51.4447 35.6878 Lower middle income IBRD
## 6102 51.4447 35.6878 Lower middle income IBRD
## 6103 51.4447 35.6878 Lower middle income IBRD
## 6104 51.4447 35.6878 Lower middle income IBRD
## 6105 51.4447 35.6878 Lower middle income IBRD
## 6106 51.4447 35.6878 Lower middle income IBRD
## 6107 51.4447 35.6878 Lower middle income IBRD
## 6108 51.4447 35.6878 Lower middle income IBRD
## 6109 51.4447 35.6878 Lower middle income IBRD
## 6110 51.4447 35.6878 Lower middle income IBRD
## 6111 51.4447 35.6878 Lower middle income IBRD
## 6112 51.4447 35.6878 Lower middle income IBRD
## 6113 51.4447 35.6878 Lower middle income IBRD
## 6114 51.4447 35.6878 Lower middle income IBRD
## 6115 51.4447 35.6878 Lower middle income IBRD
## 6116 51.4447 35.6878 Lower middle income IBRD
## 6117 51.4447 35.6878 Lower middle income IBRD
## 6118 51.4447 35.6878 Lower middle income IBRD
## 6119 51.4447 35.6878 Lower middle income IBRD
## 6120 51.4447 35.6878 Lower middle income IBRD
## 6121 51.4447 35.6878 Lower middle income IBRD
## 6122 51.4447 35.6878 Lower middle income IBRD
## 6123 51.4447 35.6878 Lower middle income IBRD
## 6124 51.4447 35.6878 Lower middle income IBRD
## 6125 51.4447 35.6878 Lower middle income IBRD
## 6126 51.4447 35.6878 Lower middle income IBRD
## 6127 51.4447 35.6878 Lower middle income IBRD
## 6128 51.4447 35.6878 Lower middle income IBRD
## 6129 51.4447 35.6878 Lower middle income IBRD
## 6130 51.4447 35.6878 Lower middle income IBRD
## 6131 51.4447 35.6878 Lower middle income IBRD
## 6132 51.4447 35.6878 Lower middle income IBRD
## 6133 51.4447 35.6878 Lower middle income IBRD
## 6134 51.4447 35.6878 Lower middle income IBRD
## 6135 51.4447 35.6878 Lower middle income IBRD
## 6136 51.4447 35.6878 Lower middle income IBRD
## 6137 51.4447 35.6878 Lower middle income IBRD
## 6138 51.4447 35.6878 Lower middle income IBRD
## 6139 -21.8952 64.1353 High income Not classified
## 6140 -21.8952 64.1353 High income Not classified
## 6141 -21.8952 64.1353 High income Not classified
## 6142 -21.8952 64.1353 High income Not classified
## 6143 -21.8952 64.1353 High income Not classified
## 6144 -21.8952 64.1353 High income Not classified
## 6145 -21.8952 64.1353 High income Not classified
## 6146 -21.8952 64.1353 High income Not classified
## 6147 -21.8952 64.1353 High income Not classified
## 6148 -21.8952 64.1353 High income Not classified
## 6149 -21.8952 64.1353 High income Not classified
## 6150 -21.8952 64.1353 High income Not classified
## 6151 -21.8952 64.1353 High income Not classified
## 6152 -21.8952 64.1353 High income Not classified
## 6153 -21.8952 64.1353 High income Not classified
## 6154 -21.8952 64.1353 High income Not classified
## 6155 -21.8952 64.1353 High income Not classified
## 6156 -21.8952 64.1353 High income Not classified
## 6157 -21.8952 64.1353 High income Not classified
## 6158 -21.8952 64.1353 High income Not classified
## 6159 -21.8952 64.1353 High income Not classified
## 6160 -21.8952 64.1353 High income Not classified
## 6161 -21.8952 64.1353 High income Not classified
## 6162 -21.8952 64.1353 High income Not classified
## 6163 -21.8952 64.1353 High income Not classified
## 6164 -21.8952 64.1353 High income Not classified
## 6165 -21.8952 64.1353 High income Not classified
## 6166 -21.8952 64.1353 High income Not classified
## 6167 -21.8952 64.1353 High income Not classified
## 6168 -21.8952 64.1353 High income Not classified
## 6169 -21.8952 64.1353 High income Not classified
## 6170 -21.8952 64.1353 High income Not classified
## 6171 -21.8952 64.1353 High income Not classified
## 6172 -21.8952 64.1353 High income Not classified
## 6173 -21.8952 64.1353 High income Not classified
## 6174 -21.8952 64.1353 High income Not classified
## 6175 -21.8952 64.1353 High income Not classified
## 6176 -21.8952 64.1353 High income Not classified
## 6177 -21.8952 64.1353 High income Not classified
## 6178 -21.8952 64.1353 High income Not classified
## 6179 -21.8952 64.1353 High income Not classified
## 6180 -21.8952 64.1353 High income Not classified
## 6181 -21.8952 64.1353 High income Not classified
## 6182 -21.8952 64.1353 High income Not classified
## 6183 -21.8952 64.1353 High income Not classified
## 6184 -21.8952 64.1353 High income Not classified
## 6185 -21.8952 64.1353 High income Not classified
## 6186 -21.8952 64.1353 High income Not classified
## 6187 -21.8952 64.1353 High income Not classified
## 6188 -21.8952 64.1353 High income Not classified
## 6189 -21.8952 64.1353 High income Not classified
## 6190 -21.8952 64.1353 High income Not classified
## 6191 -21.8952 64.1353 High income Not classified
## 6192 -21.8952 64.1353 High income Not classified
## 6193 -21.8952 64.1353 High income Not classified
## 6194 -21.8952 64.1353 High income Not classified
## 6195 -21.8952 64.1353 High income Not classified
## 6196 -21.8952 64.1353 High income Not classified
## 6197 -21.8952 64.1353 High income Not classified
## 6198 -21.8952 64.1353 High income Not classified
## 6199 -21.8952 64.1353 High income Not classified
## 6200 -21.8952 64.1353 High income Not classified
## 6201 12.4823 41.8955 High income Not classified
## 6202 12.4823 41.8955 High income Not classified
## 6203 12.4823 41.8955 High income Not classified
## 6204 12.4823 41.8955 High income Not classified
## 6205 12.4823 41.8955 High income Not classified
## 6206 12.4823 41.8955 High income Not classified
## 6207 12.4823 41.8955 High income Not classified
## 6208 12.4823 41.8955 High income Not classified
## 6209 12.4823 41.8955 High income Not classified
## 6210 12.4823 41.8955 High income Not classified
## 6211 12.4823 41.8955 High income Not classified
## 6212 12.4823 41.8955 High income Not classified
## 6213 12.4823 41.8955 High income Not classified
## 6214 12.4823 41.8955 High income Not classified
## 6215 12.4823 41.8955 High income Not classified
## 6216 12.4823 41.8955 High income Not classified
## 6217 12.4823 41.8955 High income Not classified
## 6218 12.4823 41.8955 High income Not classified
## 6219 12.4823 41.8955 High income Not classified
## 6220 12.4823 41.8955 High income Not classified
## 6221 12.4823 41.8955 High income Not classified
## 6222 12.4823 41.8955 High income Not classified
## 6223 12.4823 41.8955 High income Not classified
## 6224 12.4823 41.8955 High income Not classified
## 6225 12.4823 41.8955 High income Not classified
## 6226 12.4823 41.8955 High income Not classified
## 6227 12.4823 41.8955 High income Not classified
## 6228 12.4823 41.8955 High income Not classified
## 6229 12.4823 41.8955 High income Not classified
## 6230 12.4823 41.8955 High income Not classified
## 6231 12.4823 41.8955 High income Not classified
## 6232 12.4823 41.8955 High income Not classified
## 6233 12.4823 41.8955 High income Not classified
## 6234 12.4823 41.8955 High income Not classified
## 6235 12.4823 41.8955 High income Not classified
## 6236 12.4823 41.8955 High income Not classified
## 6237 12.4823 41.8955 High income Not classified
## 6238 12.4823 41.8955 High income Not classified
## 6239 12.4823 41.8955 High income Not classified
## 6240 12.4823 41.8955 High income Not classified
## 6241 12.4823 41.8955 High income Not classified
## 6242 12.4823 41.8955 High income Not classified
## 6243 12.4823 41.8955 High income Not classified
## 6244 12.4823 41.8955 High income Not classified
## 6245 12.4823 41.8955 High income Not classified
## 6246 12.4823 41.8955 High income Not classified
## 6247 12.4823 41.8955 High income Not classified
## 6248 12.4823 41.8955 High income Not classified
## 6249 12.4823 41.8955 High income Not classified
## 6250 12.4823 41.8955 High income Not classified
## 6251 12.4823 41.8955 High income Not classified
## 6252 12.4823 41.8955 High income Not classified
## 6253 12.4823 41.8955 High income Not classified
## 6254 12.4823 41.8955 High income Not classified
## 6255 12.4823 41.8955 High income Not classified
## 6256 12.4823 41.8955 High income Not classified
## 6257 12.4823 41.8955 High income Not classified
## 6258 12.4823 41.8955 High income Not classified
## 6259 12.4823 41.8955 High income Not classified
## 6260 12.4823 41.8955 High income Not classified
## 6261 12.4823 41.8955 High income Not classified
## 6262 12.4823 41.8955 High income Not classified
## 6263 High income Not classified
## 6264 High income Not classified
## 6265 High income Not classified
## 6266 High income Not classified
## 6267 High income Not classified
## 6268 High income Not classified
## 6269 High income Not classified
## 6270 High income Not classified
## 6271 High income Not classified
## 6272 High income Not classified
## 6273 High income Not classified
## 6274 High income Not classified
## 6275 High income Not classified
## 6276 High income Not classified
## 6277 High income Not classified
## 6278 High income Not classified
## 6279 High income Not classified
## 6280 High income Not classified
## 6281 High income Not classified
## 6282 High income Not classified
## 6283 High income Not classified
## 6284 High income Not classified
## 6285 High income Not classified
## 6286 High income Not classified
## 6287 High income Not classified
## 6288 High income Not classified
## 6289 High income Not classified
## 6290 High income Not classified
## 6291 High income Not classified
## 6292 High income Not classified
## 6293 High income Not classified
## 6294 High income Not classified
## 6295 High income Not classified
## 6296 High income Not classified
## 6297 High income Not classified
## 6298 High income Not classified
## 6299 High income Not classified
## 6300 High income Not classified
## 6301 High income Not classified
## 6302 High income Not classified
## 6303 High income Not classified
## 6304 High income Not classified
## 6305 High income Not classified
## 6306 High income Not classified
## 6307 High income Not classified
## 6308 High income Not classified
## 6309 High income Not classified
## 6310 High income Not classified
## 6311 High income Not classified
## 6312 High income Not classified
## 6313 High income Not classified
## 6314 High income Not classified
## 6315 High income Not classified
## 6316 High income Not classified
## 6317 High income Not classified
## 6318 High income Not classified
## 6319 High income Not classified
## 6320 High income Not classified
## 6321 High income Not classified
## 6322 High income Not classified
## 6323 High income Not classified
## 6324 High income Not classified
## 6325 -76.792 17.9927 Upper middle income IBRD
## 6326 -76.792 17.9927 Upper middle income IBRD
## 6327 -76.792 17.9927 Upper middle income IBRD
## 6328 -76.792 17.9927 Upper middle income IBRD
## 6329 -76.792 17.9927 Upper middle income IBRD
## 6330 -76.792 17.9927 Upper middle income IBRD
## 6331 -76.792 17.9927 Upper middle income IBRD
## 6332 -76.792 17.9927 Upper middle income IBRD
## 6333 -76.792 17.9927 Upper middle income IBRD
## 6334 -76.792 17.9927 Upper middle income IBRD
## 6335 -76.792 17.9927 Upper middle income IBRD
## 6336 -76.792 17.9927 Upper middle income IBRD
## 6337 -76.792 17.9927 Upper middle income IBRD
## 6338 -76.792 17.9927 Upper middle income IBRD
## 6339 -76.792 17.9927 Upper middle income IBRD
## 6340 -76.792 17.9927 Upper middle income IBRD
## 6341 -76.792 17.9927 Upper middle income IBRD
## 6342 -76.792 17.9927 Upper middle income IBRD
## 6343 -76.792 17.9927 Upper middle income IBRD
## 6344 -76.792 17.9927 Upper middle income IBRD
## 6345 -76.792 17.9927 Upper middle income IBRD
## 6346 -76.792 17.9927 Upper middle income IBRD
## 6347 -76.792 17.9927 Upper middle income IBRD
## 6348 -76.792 17.9927 Upper middle income IBRD
## 6349 -76.792 17.9927 Upper middle income IBRD
## 6350 -76.792 17.9927 Upper middle income IBRD
## 6351 -76.792 17.9927 Upper middle income IBRD
## 6352 -76.792 17.9927 Upper middle income IBRD
## 6353 -76.792 17.9927 Upper middle income IBRD
## 6354 -76.792 17.9927 Upper middle income IBRD
## 6355 -76.792 17.9927 Upper middle income IBRD
## 6356 -76.792 17.9927 Upper middle income IBRD
## 6357 -76.792 17.9927 Upper middle income IBRD
## 6358 -76.792 17.9927 Upper middle income IBRD
## 6359 -76.792 17.9927 Upper middle income IBRD
## 6360 -76.792 17.9927 Upper middle income IBRD
## 6361 -76.792 17.9927 Upper middle income IBRD
## 6362 -76.792 17.9927 Upper middle income IBRD
## 6363 -76.792 17.9927 Upper middle income IBRD
## 6364 -76.792 17.9927 Upper middle income IBRD
## 6365 -76.792 17.9927 Upper middle income IBRD
## 6366 -76.792 17.9927 Upper middle income IBRD
## 6367 -76.792 17.9927 Upper middle income IBRD
## 6368 -76.792 17.9927 Upper middle income IBRD
## 6369 -76.792 17.9927 Upper middle income IBRD
## 6370 -76.792 17.9927 Upper middle income IBRD
## 6371 -76.792 17.9927 Upper middle income IBRD
## 6372 -76.792 17.9927 Upper middle income IBRD
## 6373 -76.792 17.9927 Upper middle income IBRD
## 6374 -76.792 17.9927 Upper middle income IBRD
## 6375 -76.792 17.9927 Upper middle income IBRD
## 6376 -76.792 17.9927 Upper middle income IBRD
## 6377 -76.792 17.9927 Upper middle income IBRD
## 6378 -76.792 17.9927 Upper middle income IBRD
## 6379 -76.792 17.9927 Upper middle income IBRD
## 6380 -76.792 17.9927 Upper middle income IBRD
## 6381 -76.792 17.9927 Upper middle income IBRD
## 6382 -76.792 17.9927 Upper middle income IBRD
## 6383 -76.792 17.9927 Upper middle income IBRD
## 6384 -76.792 17.9927 Upper middle income IBRD
## 6385 -76.792 17.9927 Upper middle income IBRD
## 6386 -76.792 17.9927 Upper middle income IBRD
## 6387 35.9263 31.9497 Upper middle income IBRD
## 6388 35.9263 31.9497 Upper middle income IBRD
## 6389 35.9263 31.9497 Upper middle income IBRD
## 6390 35.9263 31.9497 Upper middle income IBRD
## 6391 35.9263 31.9497 Upper middle income IBRD
## 6392 35.9263 31.9497 Upper middle income IBRD
## 6393 35.9263 31.9497 Upper middle income IBRD
## 6394 35.9263 31.9497 Upper middle income IBRD
## 6395 35.9263 31.9497 Upper middle income IBRD
## 6396 35.9263 31.9497 Upper middle income IBRD
## 6397 35.9263 31.9497 Upper middle income IBRD
## 6398 35.9263 31.9497 Upper middle income IBRD
## 6399 35.9263 31.9497 Upper middle income IBRD
## 6400 35.9263 31.9497 Upper middle income IBRD
## 6401 35.9263 31.9497 Upper middle income IBRD
## 6402 35.9263 31.9497 Upper middle income IBRD
## 6403 35.9263 31.9497 Upper middle income IBRD
## 6404 35.9263 31.9497 Upper middle income IBRD
## 6405 35.9263 31.9497 Upper middle income IBRD
## 6406 35.9263 31.9497 Upper middle income IBRD
## 6407 35.9263 31.9497 Upper middle income IBRD
## 6408 35.9263 31.9497 Upper middle income IBRD
## 6409 35.9263 31.9497 Upper middle income IBRD
## 6410 35.9263 31.9497 Upper middle income IBRD
## 6411 35.9263 31.9497 Upper middle income IBRD
## 6412 35.9263 31.9497 Upper middle income IBRD
## 6413 35.9263 31.9497 Upper middle income IBRD
## 6414 35.9263 31.9497 Upper middle income IBRD
## 6415 35.9263 31.9497 Upper middle income IBRD
## 6416 35.9263 31.9497 Upper middle income IBRD
## 6417 35.9263 31.9497 Upper middle income IBRD
## 6418 35.9263 31.9497 Upper middle income IBRD
## 6419 35.9263 31.9497 Upper middle income IBRD
## 6420 35.9263 31.9497 Upper middle income IBRD
## 6421 35.9263 31.9497 Upper middle income IBRD
## 6422 35.9263 31.9497 Upper middle income IBRD
## 6423 35.9263 31.9497 Upper middle income IBRD
## 6424 35.9263 31.9497 Upper middle income IBRD
## 6425 35.9263 31.9497 Upper middle income IBRD
## 6426 35.9263 31.9497 Upper middle income IBRD
## 6427 35.9263 31.9497 Upper middle income IBRD
## 6428 35.9263 31.9497 Upper middle income IBRD
## 6429 35.9263 31.9497 Upper middle income IBRD
## 6430 35.9263 31.9497 Upper middle income IBRD
## 6431 35.9263 31.9497 Upper middle income IBRD
## 6432 35.9263 31.9497 Upper middle income IBRD
## 6433 35.9263 31.9497 Upper middle income IBRD
## 6434 35.9263 31.9497 Upper middle income IBRD
## 6435 35.9263 31.9497 Upper middle income IBRD
## 6436 35.9263 31.9497 Upper middle income IBRD
## 6437 35.9263 31.9497 Upper middle income IBRD
## 6438 35.9263 31.9497 Upper middle income IBRD
## 6439 35.9263 31.9497 Upper middle income IBRD
## 6440 35.9263 31.9497 Upper middle income IBRD
## 6441 35.9263 31.9497 Upper middle income IBRD
## 6442 35.9263 31.9497 Upper middle income IBRD
## 6443 35.9263 31.9497 Upper middle income IBRD
## 6444 35.9263 31.9497 Upper middle income IBRD
## 6445 35.9263 31.9497 Upper middle income IBRD
## 6446 35.9263 31.9497 Upper middle income IBRD
## 6447 35.9263 31.9497 Upper middle income IBRD
## 6448 35.9263 31.9497 Upper middle income IBRD
## 6449 139.77 35.67 High income Not classified
## 6450 139.77 35.67 High income Not classified
## 6451 139.77 35.67 High income Not classified
## 6452 139.77 35.67 High income Not classified
## 6453 139.77 35.67 High income Not classified
## 6454 139.77 35.67 High income Not classified
## 6455 139.77 35.67 High income Not classified
## 6456 139.77 35.67 High income Not classified
## 6457 139.77 35.67 High income Not classified
## 6458 139.77 35.67 High income Not classified
## 6459 139.77 35.67 High income Not classified
## 6460 139.77 35.67 High income Not classified
## 6461 139.77 35.67 High income Not classified
## 6462 139.77 35.67 High income Not classified
## 6463 139.77 35.67 High income Not classified
## 6464 139.77 35.67 High income Not classified
## 6465 139.77 35.67 High income Not classified
## 6466 139.77 35.67 High income Not classified
## 6467 139.77 35.67 High income Not classified
## 6468 139.77 35.67 High income Not classified
## 6469 139.77 35.67 High income Not classified
## 6470 139.77 35.67 High income Not classified
## 6471 139.77 35.67 High income Not classified
## 6472 139.77 35.67 High income Not classified
## 6473 139.77 35.67 High income Not classified
## 6474 139.77 35.67 High income Not classified
## 6475 139.77 35.67 High income Not classified
## 6476 139.77 35.67 High income Not classified
## 6477 139.77 35.67 High income Not classified
## 6478 139.77 35.67 High income Not classified
## 6479 139.77 35.67 High income Not classified
## 6480 139.77 35.67 High income Not classified
## 6481 139.77 35.67 High income Not classified
## 6482 139.77 35.67 High income Not classified
## 6483 139.77 35.67 High income Not classified
## 6484 139.77 35.67 High income Not classified
## 6485 139.77 35.67 High income Not classified
## 6486 139.77 35.67 High income Not classified
## 6487 139.77 35.67 High income Not classified
## 6488 139.77 35.67 High income Not classified
## 6489 139.77 35.67 High income Not classified
## 6490 139.77 35.67 High income Not classified
## 6491 139.77 35.67 High income Not classified
## 6492 139.77 35.67 High income Not classified
## 6493 139.77 35.67 High income Not classified
## 6494 139.77 35.67 High income Not classified
## 6495 139.77 35.67 High income Not classified
## 6496 139.77 35.67 High income Not classified
## 6497 139.77 35.67 High income Not classified
## 6498 139.77 35.67 High income Not classified
## 6499 139.77 35.67 High income Not classified
## 6500 139.77 35.67 High income Not classified
## 6501 139.77 35.67 High income Not classified
## 6502 139.77 35.67 High income Not classified
## 6503 139.77 35.67 High income Not classified
## 6504 139.77 35.67 High income Not classified
## 6505 139.77 35.67 High income Not classified
## 6506 139.77 35.67 High income Not classified
## 6507 139.77 35.67 High income Not classified
## 6508 139.77 35.67 High income Not classified
## 6509 139.77 35.67 High income Not classified
## 6510 139.77 35.67 High income Not classified
## 6511 36.8126 -1.27975 Lower middle income Blend
## 6512 36.8126 -1.27975 Lower middle income Blend
## 6513 36.8126 -1.27975 Lower middle income Blend
## 6514 36.8126 -1.27975 Lower middle income Blend
## 6515 36.8126 -1.27975 Lower middle income Blend
## 6516 36.8126 -1.27975 Lower middle income Blend
## 6517 36.8126 -1.27975 Lower middle income Blend
## 6518 36.8126 -1.27975 Lower middle income Blend
## 6519 36.8126 -1.27975 Lower middle income Blend
## 6520 36.8126 -1.27975 Lower middle income Blend
## 6521 36.8126 -1.27975 Lower middle income Blend
## 6522 36.8126 -1.27975 Lower middle income Blend
## 6523 36.8126 -1.27975 Lower middle income Blend
## 6524 36.8126 -1.27975 Lower middle income Blend
## 6525 36.8126 -1.27975 Lower middle income Blend
## 6526 36.8126 -1.27975 Lower middle income Blend
## 6527 36.8126 -1.27975 Lower middle income Blend
## 6528 36.8126 -1.27975 Lower middle income Blend
## 6529 36.8126 -1.27975 Lower middle income Blend
## 6530 36.8126 -1.27975 Lower middle income Blend
## 6531 36.8126 -1.27975 Lower middle income Blend
## 6532 36.8126 -1.27975 Lower middle income Blend
## 6533 36.8126 -1.27975 Lower middle income Blend
## 6534 36.8126 -1.27975 Lower middle income Blend
## 6535 36.8126 -1.27975 Lower middle income Blend
## 6536 36.8126 -1.27975 Lower middle income Blend
## 6537 36.8126 -1.27975 Lower middle income Blend
## 6538 36.8126 -1.27975 Lower middle income Blend
## 6539 36.8126 -1.27975 Lower middle income Blend
## 6540 36.8126 -1.27975 Lower middle income Blend
## 6541 36.8126 -1.27975 Lower middle income Blend
## 6542 36.8126 -1.27975 Lower middle income Blend
## 6543 36.8126 -1.27975 Lower middle income Blend
## 6544 36.8126 -1.27975 Lower middle income Blend
## 6545 36.8126 -1.27975 Lower middle income Blend
## 6546 36.8126 -1.27975 Lower middle income Blend
## 6547 36.8126 -1.27975 Lower middle income Blend
## 6548 36.8126 -1.27975 Lower middle income Blend
## 6549 36.8126 -1.27975 Lower middle income Blend
## 6550 36.8126 -1.27975 Lower middle income Blend
## 6551 36.8126 -1.27975 Lower middle income Blend
## 6552 36.8126 -1.27975 Lower middle income Blend
## 6553 36.8126 -1.27975 Lower middle income Blend
## 6554 36.8126 -1.27975 Lower middle income Blend
## 6555 36.8126 -1.27975 Lower middle income Blend
## 6556 36.8126 -1.27975 Lower middle income Blend
## 6557 36.8126 -1.27975 Lower middle income Blend
## 6558 36.8126 -1.27975 Lower middle income Blend
## 6559 36.8126 -1.27975 Lower middle income Blend
## 6560 36.8126 -1.27975 Lower middle income Blend
## 6561 36.8126 -1.27975 Lower middle income Blend
## 6562 36.8126 -1.27975 Lower middle income Blend
## 6563 36.8126 -1.27975 Lower middle income Blend
## 6564 36.8126 -1.27975 Lower middle income Blend
## 6565 36.8126 -1.27975 Lower middle income Blend
## 6566 36.8126 -1.27975 Lower middle income Blend
## 6567 36.8126 -1.27975 Lower middle income Blend
## 6568 36.8126 -1.27975 Lower middle income Blend
## 6569 36.8126 -1.27975 Lower middle income Blend
## 6570 36.8126 -1.27975 Lower middle income Blend
## 6571 36.8126 -1.27975 Lower middle income Blend
## 6572 36.8126 -1.27975 Lower middle income Blend
## 6573 74.6057 42.8851 Lower middle income IDA
## 6574 74.6057 42.8851 Lower middle income IDA
## 6575 74.6057 42.8851 Lower middle income IDA
## 6576 74.6057 42.8851 Lower middle income IDA
## 6577 74.6057 42.8851 Lower middle income IDA
## 6578 74.6057 42.8851 Lower middle income IDA
## 6579 74.6057 42.8851 Lower middle income IDA
## 6580 74.6057 42.8851 Lower middle income IDA
## 6581 74.6057 42.8851 Lower middle income IDA
## 6582 74.6057 42.8851 Lower middle income IDA
## 6583 74.6057 42.8851 Lower middle income IDA
## 6584 74.6057 42.8851 Lower middle income IDA
## 6585 74.6057 42.8851 Lower middle income IDA
## 6586 74.6057 42.8851 Lower middle income IDA
## 6587 74.6057 42.8851 Lower middle income IDA
## 6588 74.6057 42.8851 Lower middle income IDA
## 6589 74.6057 42.8851 Lower middle income IDA
## 6590 74.6057 42.8851 Lower middle income IDA
## 6591 74.6057 42.8851 Lower middle income IDA
## 6592 74.6057 42.8851 Lower middle income IDA
## 6593 74.6057 42.8851 Lower middle income IDA
## 6594 74.6057 42.8851 Lower middle income IDA
## 6595 74.6057 42.8851 Lower middle income IDA
## 6596 74.6057 42.8851 Lower middle income IDA
## 6597 74.6057 42.8851 Lower middle income IDA
## 6598 74.6057 42.8851 Lower middle income IDA
## 6599 74.6057 42.8851 Lower middle income IDA
## 6600 74.6057 42.8851 Lower middle income IDA
## 6601 74.6057 42.8851 Lower middle income IDA
## 6602 74.6057 42.8851 Lower middle income IDA
## 6603 74.6057 42.8851 Lower middle income IDA
## 6604 74.6057 42.8851 Lower middle income IDA
## 6605 74.6057 42.8851 Lower middle income IDA
## 6606 74.6057 42.8851 Lower middle income IDA
## 6607 74.6057 42.8851 Lower middle income IDA
## 6608 74.6057 42.8851 Lower middle income IDA
## 6609 74.6057 42.8851 Lower middle income IDA
## 6610 74.6057 42.8851 Lower middle income IDA
## 6611 74.6057 42.8851 Lower middle income IDA
## 6612 74.6057 42.8851 Lower middle income IDA
## 6613 74.6057 42.8851 Lower middle income IDA
## 6614 74.6057 42.8851 Lower middle income IDA
## 6615 74.6057 42.8851 Lower middle income IDA
## 6616 74.6057 42.8851 Lower middle income IDA
## 6617 74.6057 42.8851 Lower middle income IDA
## 6618 74.6057 42.8851 Lower middle income IDA
## 6619 74.6057 42.8851 Lower middle income IDA
## 6620 74.6057 42.8851 Lower middle income IDA
## 6621 74.6057 42.8851 Lower middle income IDA
## 6622 74.6057 42.8851 Lower middle income IDA
## 6623 74.6057 42.8851 Lower middle income IDA
## 6624 74.6057 42.8851 Lower middle income IDA
## 6625 74.6057 42.8851 Lower middle income IDA
## 6626 74.6057 42.8851 Lower middle income IDA
## 6627 74.6057 42.8851 Lower middle income IDA
## 6628 74.6057 42.8851 Lower middle income IDA
## 6629 74.6057 42.8851 Lower middle income IDA
## 6630 74.6057 42.8851 Lower middle income IDA
## 6631 74.6057 42.8851 Lower middle income IDA
## 6632 74.6057 42.8851 Lower middle income IDA
## 6633 74.6057 42.8851 Lower middle income IDA
## 6634 74.6057 42.8851 Lower middle income IDA
## 6635 104.874 11.5556 Lower middle income IDA
## 6636 104.874 11.5556 Lower middle income IDA
## 6637 104.874 11.5556 Lower middle income IDA
## 6638 104.874 11.5556 Lower middle income IDA
## 6639 104.874 11.5556 Lower middle income IDA
## 6640 104.874 11.5556 Lower middle income IDA
## 6641 104.874 11.5556 Lower middle income IDA
## 6642 104.874 11.5556 Lower middle income IDA
## 6643 104.874 11.5556 Lower middle income IDA
## 6644 104.874 11.5556 Lower middle income IDA
## 6645 104.874 11.5556 Lower middle income IDA
## 6646 104.874 11.5556 Lower middle income IDA
## 6647 104.874 11.5556 Lower middle income IDA
## 6648 104.874 11.5556 Lower middle income IDA
## 6649 104.874 11.5556 Lower middle income IDA
## 6650 104.874 11.5556 Lower middle income IDA
## 6651 104.874 11.5556 Lower middle income IDA
## 6652 104.874 11.5556 Lower middle income IDA
## 6653 104.874 11.5556 Lower middle income IDA
## 6654 104.874 11.5556 Lower middle income IDA
## 6655 104.874 11.5556 Lower middle income IDA
## 6656 104.874 11.5556 Lower middle income IDA
## 6657 104.874 11.5556 Lower middle income IDA
## 6658 104.874 11.5556 Lower middle income IDA
## 6659 104.874 11.5556 Lower middle income IDA
## 6660 104.874 11.5556 Lower middle income IDA
## 6661 104.874 11.5556 Lower middle income IDA
## 6662 104.874 11.5556 Lower middle income IDA
## 6663 104.874 11.5556 Lower middle income IDA
## 6664 104.874 11.5556 Lower middle income IDA
## 6665 104.874 11.5556 Lower middle income IDA
## 6666 104.874 11.5556 Lower middle income IDA
## 6667 104.874 11.5556 Lower middle income IDA
## 6668 104.874 11.5556 Lower middle income IDA
## 6669 104.874 11.5556 Lower middle income IDA
## 6670 104.874 11.5556 Lower middle income IDA
## 6671 104.874 11.5556 Lower middle income IDA
## 6672 104.874 11.5556 Lower middle income IDA
## 6673 104.874 11.5556 Lower middle income IDA
## 6674 104.874 11.5556 Lower middle income IDA
## 6675 104.874 11.5556 Lower middle income IDA
## 6676 104.874 11.5556 Lower middle income IDA
## 6677 104.874 11.5556 Lower middle income IDA
## 6678 104.874 11.5556 Lower middle income IDA
## 6679 104.874 11.5556 Lower middle income IDA
## 6680 104.874 11.5556 Lower middle income IDA
## 6681 104.874 11.5556 Lower middle income IDA
## 6682 104.874 11.5556 Lower middle income IDA
## 6683 104.874 11.5556 Lower middle income IDA
## 6684 104.874 11.5556 Lower middle income IDA
## 6685 104.874 11.5556 Lower middle income IDA
## 6686 104.874 11.5556 Lower middle income IDA
## 6687 104.874 11.5556 Lower middle income IDA
## 6688 104.874 11.5556 Lower middle income IDA
## 6689 104.874 11.5556 Lower middle income IDA
## 6690 104.874 11.5556 Lower middle income IDA
## 6691 104.874 11.5556 Lower middle income IDA
## 6692 104.874 11.5556 Lower middle income IDA
## 6693 104.874 11.5556 Lower middle income IDA
## 6694 104.874 11.5556 Lower middle income IDA
## 6695 104.874 11.5556 Lower middle income IDA
## 6696 104.874 11.5556 Lower middle income IDA
## 6697 172.979 1.32905 Lower middle income IDA
## 6698 172.979 1.32905 Lower middle income IDA
## 6699 172.979 1.32905 Lower middle income IDA
## 6700 172.979 1.32905 Lower middle income IDA
## 6701 172.979 1.32905 Lower middle income IDA
## 6702 172.979 1.32905 Lower middle income IDA
## 6703 172.979 1.32905 Lower middle income IDA
## 6704 172.979 1.32905 Lower middle income IDA
## 6705 172.979 1.32905 Lower middle income IDA
## 6706 172.979 1.32905 Lower middle income IDA
## 6707 172.979 1.32905 Lower middle income IDA
## 6708 172.979 1.32905 Lower middle income IDA
## 6709 172.979 1.32905 Lower middle income IDA
## 6710 172.979 1.32905 Lower middle income IDA
## 6711 172.979 1.32905 Lower middle income IDA
## 6712 172.979 1.32905 Lower middle income IDA
## 6713 172.979 1.32905 Lower middle income IDA
## 6714 172.979 1.32905 Lower middle income IDA
## 6715 172.979 1.32905 Lower middle income IDA
## 6716 172.979 1.32905 Lower middle income IDA
## 6717 172.979 1.32905 Lower middle income IDA
## 6718 172.979 1.32905 Lower middle income IDA
## 6719 172.979 1.32905 Lower middle income IDA
## 6720 172.979 1.32905 Lower middle income IDA
## 6721 172.979 1.32905 Lower middle income IDA
## 6722 172.979 1.32905 Lower middle income IDA
## 6723 172.979 1.32905 Lower middle income IDA
## 6724 172.979 1.32905 Lower middle income IDA
## 6725 172.979 1.32905 Lower middle income IDA
## 6726 172.979 1.32905 Lower middle income IDA
## 6727 172.979 1.32905 Lower middle income IDA
## 6728 172.979 1.32905 Lower middle income IDA
## 6729 172.979 1.32905 Lower middle income IDA
## 6730 172.979 1.32905 Lower middle income IDA
## 6731 172.979 1.32905 Lower middle income IDA
## 6732 172.979 1.32905 Lower middle income IDA
## 6733 172.979 1.32905 Lower middle income IDA
## 6734 172.979 1.32905 Lower middle income IDA
## 6735 172.979 1.32905 Lower middle income IDA
## 6736 172.979 1.32905 Lower middle income IDA
## 6737 172.979 1.32905 Lower middle income IDA
## 6738 172.979 1.32905 Lower middle income IDA
## 6739 172.979 1.32905 Lower middle income IDA
## 6740 172.979 1.32905 Lower middle income IDA
## 6741 172.979 1.32905 Lower middle income IDA
## 6742 172.979 1.32905 Lower middle income IDA
## 6743 172.979 1.32905 Lower middle income IDA
## 6744 172.979 1.32905 Lower middle income IDA
## 6745 172.979 1.32905 Lower middle income IDA
## 6746 172.979 1.32905 Lower middle income IDA
## 6747 172.979 1.32905 Lower middle income IDA
## 6748 172.979 1.32905 Lower middle income IDA
## 6749 172.979 1.32905 Lower middle income IDA
## 6750 172.979 1.32905 Lower middle income IDA
## 6751 172.979 1.32905 Lower middle income IDA
## 6752 172.979 1.32905 Lower middle income IDA
## 6753 172.979 1.32905 Lower middle income IDA
## 6754 172.979 1.32905 Lower middle income IDA
## 6755 172.979 1.32905 Lower middle income IDA
## 6756 172.979 1.32905 Lower middle income IDA
## 6757 172.979 1.32905 Lower middle income IDA
## 6758 172.979 1.32905 Lower middle income IDA
## 6759 43.2418 -11.6986 Lower middle income IDA
## 6760 43.2418 -11.6986 Lower middle income IDA
## 6761 43.2418 -11.6986 Lower middle income IDA
## 6762 43.2418 -11.6986 Lower middle income IDA
## 6763 43.2418 -11.6986 Lower middle income IDA
## 6764 43.2418 -11.6986 Lower middle income IDA
## 6765 43.2418 -11.6986 Lower middle income IDA
## 6766 43.2418 -11.6986 Lower middle income IDA
## 6767 43.2418 -11.6986 Lower middle income IDA
## 6768 43.2418 -11.6986 Lower middle income IDA
## 6769 43.2418 -11.6986 Lower middle income IDA
## 6770 43.2418 -11.6986 Lower middle income IDA
## 6771 43.2418 -11.6986 Lower middle income IDA
## 6772 43.2418 -11.6986 Lower middle income IDA
## 6773 43.2418 -11.6986 Lower middle income IDA
## 6774 43.2418 -11.6986 Lower middle income IDA
## 6775 43.2418 -11.6986 Lower middle income IDA
## 6776 43.2418 -11.6986 Lower middle income IDA
## 6777 43.2418 -11.6986 Lower middle income IDA
## 6778 43.2418 -11.6986 Lower middle income IDA
## 6779 43.2418 -11.6986 Lower middle income IDA
## 6780 43.2418 -11.6986 Lower middle income IDA
## 6781 43.2418 -11.6986 Lower middle income IDA
## 6782 43.2418 -11.6986 Lower middle income IDA
## 6783 43.2418 -11.6986 Lower middle income IDA
## 6784 43.2418 -11.6986 Lower middle income IDA
## 6785 43.2418 -11.6986 Lower middle income IDA
## 6786 43.2418 -11.6986 Lower middle income IDA
## 6787 43.2418 -11.6986 Lower middle income IDA
## 6788 43.2418 -11.6986 Lower middle income IDA
## 6789 43.2418 -11.6986 Lower middle income IDA
## 6790 43.2418 -11.6986 Lower middle income IDA
## 6791 43.2418 -11.6986 Lower middle income IDA
## 6792 43.2418 -11.6986 Lower middle income IDA
## 6793 43.2418 -11.6986 Lower middle income IDA
## 6794 43.2418 -11.6986 Lower middle income IDA
## 6795 43.2418 -11.6986 Lower middle income IDA
## 6796 43.2418 -11.6986 Lower middle income IDA
## 6797 43.2418 -11.6986 Lower middle income IDA
## 6798 43.2418 -11.6986 Lower middle income IDA
## 6799 43.2418 -11.6986 Lower middle income IDA
## 6800 43.2418 -11.6986 Lower middle income IDA
## 6801 43.2418 -11.6986 Lower middle income IDA
## 6802 43.2418 -11.6986 Lower middle income IDA
## 6803 43.2418 -11.6986 Lower middle income IDA
## 6804 43.2418 -11.6986 Lower middle income IDA
## 6805 43.2418 -11.6986 Lower middle income IDA
## 6806 43.2418 -11.6986 Lower middle income IDA
## 6807 43.2418 -11.6986 Lower middle income IDA
## 6808 43.2418 -11.6986 Lower middle income IDA
## 6809 43.2418 -11.6986 Lower middle income IDA
## 6810 43.2418 -11.6986 Lower middle income IDA
## 6811 43.2418 -11.6986 Lower middle income IDA
## 6812 43.2418 -11.6986 Lower middle income IDA
## 6813 43.2418 -11.6986 Lower middle income IDA
## 6814 43.2418 -11.6986 Lower middle income IDA
## 6815 43.2418 -11.6986 Lower middle income IDA
## 6816 43.2418 -11.6986 Lower middle income IDA
## 6817 43.2418 -11.6986 Lower middle income IDA
## 6818 43.2418 -11.6986 Lower middle income IDA
## 6819 43.2418 -11.6986 Lower middle income IDA
## 6820 43.2418 -11.6986 Lower middle income IDA
## 6821 -62.7309 17.3 High income IBRD
## 6822 -62.7309 17.3 High income IBRD
## 6823 -62.7309 17.3 High income IBRD
## 6824 -62.7309 17.3 High income IBRD
## 6825 -62.7309 17.3 High income IBRD
## 6826 -62.7309 17.3 High income IBRD
## 6827 -62.7309 17.3 High income IBRD
## 6828 -62.7309 17.3 High income IBRD
## 6829 -62.7309 17.3 High income IBRD
## 6830 -62.7309 17.3 High income IBRD
## 6831 -62.7309 17.3 High income IBRD
## 6832 -62.7309 17.3 High income IBRD
## 6833 -62.7309 17.3 High income IBRD
## 6834 -62.7309 17.3 High income IBRD
## 6835 -62.7309 17.3 High income IBRD
## 6836 -62.7309 17.3 High income IBRD
## 6837 -62.7309 17.3 High income IBRD
## 6838 -62.7309 17.3 High income IBRD
## 6839 -62.7309 17.3 High income IBRD
## 6840 -62.7309 17.3 High income IBRD
## 6841 -62.7309 17.3 High income IBRD
## 6842 -62.7309 17.3 High income IBRD
## 6843 -62.7309 17.3 High income IBRD
## 6844 -62.7309 17.3 High income IBRD
## 6845 -62.7309 17.3 High income IBRD
## 6846 -62.7309 17.3 High income IBRD
## 6847 -62.7309 17.3 High income IBRD
## 6848 -62.7309 17.3 High income IBRD
## 6849 -62.7309 17.3 High income IBRD
## 6850 -62.7309 17.3 High income IBRD
## 6851 -62.7309 17.3 High income IBRD
## 6852 -62.7309 17.3 High income IBRD
## 6853 -62.7309 17.3 High income IBRD
## 6854 -62.7309 17.3 High income IBRD
## 6855 -62.7309 17.3 High income IBRD
## 6856 -62.7309 17.3 High income IBRD
## 6857 -62.7309 17.3 High income IBRD
## 6858 -62.7309 17.3 High income IBRD
## 6859 -62.7309 17.3 High income IBRD
## 6860 -62.7309 17.3 High income IBRD
## 6861 -62.7309 17.3 High income IBRD
## 6862 -62.7309 17.3 High income IBRD
## 6863 -62.7309 17.3 High income IBRD
## 6864 -62.7309 17.3 High income IBRD
## 6865 -62.7309 17.3 High income IBRD
## 6866 -62.7309 17.3 High income IBRD
## 6867 -62.7309 17.3 High income IBRD
## 6868 -62.7309 17.3 High income IBRD
## 6869 -62.7309 17.3 High income IBRD
## 6870 -62.7309 17.3 High income IBRD
## 6871 -62.7309 17.3 High income IBRD
## 6872 -62.7309 17.3 High income IBRD
## 6873 -62.7309 17.3 High income IBRD
## 6874 -62.7309 17.3 High income IBRD
## 6875 -62.7309 17.3 High income IBRD
## 6876 -62.7309 17.3 High income IBRD
## 6877 -62.7309 17.3 High income IBRD
## 6878 -62.7309 17.3 High income IBRD
## 6879 -62.7309 17.3 High income IBRD
## 6880 -62.7309 17.3 High income IBRD
## 6881 -62.7309 17.3 High income IBRD
## 6882 -62.7309 17.3 High income IBRD
## 6883 125.754 39.0319 Low income Not classified
## 6884 125.754 39.0319 Low income Not classified
## 6885 125.754 39.0319 Low income Not classified
## 6886 125.754 39.0319 Low income Not classified
## 6887 125.754 39.0319 Low income Not classified
## 6888 125.754 39.0319 Low income Not classified
## 6889 125.754 39.0319 Low income Not classified
## 6890 125.754 39.0319 Low income Not classified
## 6891 125.754 39.0319 Low income Not classified
## 6892 125.754 39.0319 Low income Not classified
## 6893 125.754 39.0319 Low income Not classified
## 6894 125.754 39.0319 Low income Not classified
## 6895 125.754 39.0319 Low income Not classified
## 6896 125.754 39.0319 Low income Not classified
## 6897 125.754 39.0319 Low income Not classified
## 6898 125.754 39.0319 Low income Not classified
## 6899 125.754 39.0319 Low income Not classified
## 6900 125.754 39.0319 Low income Not classified
## 6901 125.754 39.0319 Low income Not classified
## 6902 125.754 39.0319 Low income Not classified
## 6903 125.754 39.0319 Low income Not classified
## 6904 125.754 39.0319 Low income Not classified
## 6905 125.754 39.0319 Low income Not classified
## 6906 125.754 39.0319 Low income Not classified
## 6907 125.754 39.0319 Low income Not classified
## 6908 125.754 39.0319 Low income Not classified
## 6909 125.754 39.0319 Low income Not classified
## 6910 125.754 39.0319 Low income Not classified
## 6911 125.754 39.0319 Low income Not classified
## 6912 125.754 39.0319 Low income Not classified
## 6913 125.754 39.0319 Low income Not classified
## 6914 125.754 39.0319 Low income Not classified
## 6915 125.754 39.0319 Low income Not classified
## 6916 125.754 39.0319 Low income Not classified
## 6917 125.754 39.0319 Low income Not classified
## 6918 125.754 39.0319 Low income Not classified
## 6919 125.754 39.0319 Low income Not classified
## 6920 125.754 39.0319 Low income Not classified
## 6921 125.754 39.0319 Low income Not classified
## 6922 125.754 39.0319 Low income Not classified
## 6923 125.754 39.0319 Low income Not classified
## 6924 125.754 39.0319 Low income Not classified
## 6925 125.754 39.0319 Low income Not classified
## 6926 125.754 39.0319 Low income Not classified
## 6927 125.754 39.0319 Low income Not classified
## 6928 125.754 39.0319 Low income Not classified
## 6929 125.754 39.0319 Low income Not classified
## 6930 125.754 39.0319 Low income Not classified
## 6931 125.754 39.0319 Low income Not classified
## 6932 125.754 39.0319 Low income Not classified
## 6933 125.754 39.0319 Low income Not classified
## 6934 125.754 39.0319 Low income Not classified
## 6935 125.754 39.0319 Low income Not classified
## 6936 125.754 39.0319 Low income Not classified
## 6937 125.754 39.0319 Low income Not classified
## 6938 125.754 39.0319 Low income Not classified
## 6939 125.754 39.0319 Low income Not classified
## 6940 125.754 39.0319 Low income Not classified
## 6941 125.754 39.0319 Low income Not classified
## 6942 125.754 39.0319 Low income Not classified
## 6943 125.754 39.0319 Low income Not classified
## 6944 125.754 39.0319 Low income Not classified
## 6945 126.957 37.5323 High income Not classified
## 6946 126.957 37.5323 High income Not classified
## 6947 126.957 37.5323 High income Not classified
## 6948 126.957 37.5323 High income Not classified
## 6949 126.957 37.5323 High income Not classified
## 6950 126.957 37.5323 High income Not classified
## 6951 126.957 37.5323 High income Not classified
## 6952 126.957 37.5323 High income Not classified
## 6953 126.957 37.5323 High income Not classified
## 6954 126.957 37.5323 High income Not classified
## 6955 126.957 37.5323 High income Not classified
## 6956 126.957 37.5323 High income Not classified
## 6957 126.957 37.5323 High income Not classified
## 6958 126.957 37.5323 High income Not classified
## 6959 126.957 37.5323 High income Not classified
## 6960 126.957 37.5323 High income Not classified
## 6961 126.957 37.5323 High income Not classified
## 6962 126.957 37.5323 High income Not classified
## 6963 126.957 37.5323 High income Not classified
## 6964 126.957 37.5323 High income Not classified
## 6965 126.957 37.5323 High income Not classified
## 6966 126.957 37.5323 High income Not classified
## 6967 126.957 37.5323 High income Not classified
## 6968 126.957 37.5323 High income Not classified
## 6969 126.957 37.5323 High income Not classified
## 6970 126.957 37.5323 High income Not classified
## 6971 126.957 37.5323 High income Not classified
## 6972 126.957 37.5323 High income Not classified
## 6973 126.957 37.5323 High income Not classified
## 6974 126.957 37.5323 High income Not classified
## 6975 126.957 37.5323 High income Not classified
## 6976 126.957 37.5323 High income Not classified
## 6977 126.957 37.5323 High income Not classified
## 6978 126.957 37.5323 High income Not classified
## 6979 126.957 37.5323 High income Not classified
## 6980 126.957 37.5323 High income Not classified
## 6981 126.957 37.5323 High income Not classified
## 6982 126.957 37.5323 High income Not classified
## 6983 126.957 37.5323 High income Not classified
## 6984 126.957 37.5323 High income Not classified
## 6985 126.957 37.5323 High income Not classified
## 6986 126.957 37.5323 High income Not classified
## 6987 126.957 37.5323 High income Not classified
## 6988 126.957 37.5323 High income Not classified
## 6989 126.957 37.5323 High income Not classified
## 6990 126.957 37.5323 High income Not classified
## 6991 126.957 37.5323 High income Not classified
## 6992 126.957 37.5323 High income Not classified
## 6993 126.957 37.5323 High income Not classified
## 6994 126.957 37.5323 High income Not classified
## 6995 126.957 37.5323 High income Not classified
## 6996 126.957 37.5323 High income Not classified
## 6997 126.957 37.5323 High income Not classified
## 6998 126.957 37.5323 High income Not classified
## 6999 126.957 37.5323 High income Not classified
## 7000 126.957 37.5323 High income Not classified
## 7001 126.957 37.5323 High income Not classified
## 7002 126.957 37.5323 High income Not classified
## 7003 126.957 37.5323 High income Not classified
## 7004 126.957 37.5323 High income Not classified
## 7005 126.957 37.5323 High income Not classified
## 7006 126.957 37.5323 High income Not classified
## 7007 47.9824 29.3721 High income Not classified
## 7008 47.9824 29.3721 High income Not classified
## 7009 47.9824 29.3721 High income Not classified
## 7010 47.9824 29.3721 High income Not classified
## 7011 47.9824 29.3721 High income Not classified
## 7012 47.9824 29.3721 High income Not classified
## 7013 47.9824 29.3721 High income Not classified
## 7014 47.9824 29.3721 High income Not classified
## 7015 47.9824 29.3721 High income Not classified
## 7016 47.9824 29.3721 High income Not classified
## 7017 47.9824 29.3721 High income Not classified
## 7018 47.9824 29.3721 High income Not classified
## 7019 47.9824 29.3721 High income Not classified
## 7020 47.9824 29.3721 High income Not classified
## 7021 47.9824 29.3721 High income Not classified
## 7022 47.9824 29.3721 High income Not classified
## 7023 47.9824 29.3721 High income Not classified
## 7024 47.9824 29.3721 High income Not classified
## 7025 47.9824 29.3721 High income Not classified
## 7026 47.9824 29.3721 High income Not classified
## 7027 47.9824 29.3721 High income Not classified
## 7028 47.9824 29.3721 High income Not classified
## 7029 47.9824 29.3721 High income Not classified
## 7030 47.9824 29.3721 High income Not classified
## 7031 47.9824 29.3721 High income Not classified
## 7032 47.9824 29.3721 High income Not classified
## 7033 47.9824 29.3721 High income Not classified
## 7034 47.9824 29.3721 High income Not classified
## 7035 47.9824 29.3721 High income Not classified
## 7036 47.9824 29.3721 High income Not classified
## 7037 47.9824 29.3721 High income Not classified
## 7038 47.9824 29.3721 High income Not classified
## 7039 47.9824 29.3721 High income Not classified
## 7040 47.9824 29.3721 High income Not classified
## 7041 47.9824 29.3721 High income Not classified
## 7042 47.9824 29.3721 High income Not classified
## 7043 47.9824 29.3721 High income Not classified
## 7044 47.9824 29.3721 High income Not classified
## 7045 47.9824 29.3721 High income Not classified
## 7046 47.9824 29.3721 High income Not classified
## 7047 47.9824 29.3721 High income Not classified
## 7048 47.9824 29.3721 High income Not classified
## 7049 47.9824 29.3721 High income Not classified
## 7050 47.9824 29.3721 High income Not classified
## 7051 47.9824 29.3721 High income Not classified
## 7052 47.9824 29.3721 High income Not classified
## 7053 47.9824 29.3721 High income Not classified
## 7054 47.9824 29.3721 High income Not classified
## 7055 47.9824 29.3721 High income Not classified
## 7056 47.9824 29.3721 High income Not classified
## 7057 47.9824 29.3721 High income Not classified
## 7058 47.9824 29.3721 High income Not classified
## 7059 47.9824 29.3721 High income Not classified
## 7060 47.9824 29.3721 High income Not classified
## 7061 47.9824 29.3721 High income Not classified
## 7062 47.9824 29.3721 High income Not classified
## 7063 47.9824 29.3721 High income Not classified
## 7064 47.9824 29.3721 High income Not classified
## 7065 47.9824 29.3721 High income Not classified
## 7066 47.9824 29.3721 High income Not classified
## 7067 47.9824 29.3721 High income Not classified
## 7068 47.9824 29.3721 High income Not classified
## 7069 -81.3857 19.3022 High income Not classified
## 7070 -81.3857 19.3022 High income Not classified
## 7071 -81.3857 19.3022 High income Not classified
## 7072 -81.3857 19.3022 High income Not classified
## 7073 -81.3857 19.3022 High income Not classified
## 7074 -81.3857 19.3022 High income Not classified
## 7075 -81.3857 19.3022 High income Not classified
## 7076 -81.3857 19.3022 High income Not classified
## 7077 -81.3857 19.3022 High income Not classified
## 7078 -81.3857 19.3022 High income Not classified
## 7079 -81.3857 19.3022 High income Not classified
## 7080 -81.3857 19.3022 High income Not classified
## 7081 -81.3857 19.3022 High income Not classified
## 7082 -81.3857 19.3022 High income Not classified
## 7083 -81.3857 19.3022 High income Not classified
## 7084 -81.3857 19.3022 High income Not classified
## 7085 -81.3857 19.3022 High income Not classified
## 7086 -81.3857 19.3022 High income Not classified
## 7087 -81.3857 19.3022 High income Not classified
## 7088 -81.3857 19.3022 High income Not classified
## 7089 -81.3857 19.3022 High income Not classified
## 7090 -81.3857 19.3022 High income Not classified
## 7091 -81.3857 19.3022 High income Not classified
## 7092 -81.3857 19.3022 High income Not classified
## 7093 -81.3857 19.3022 High income Not classified
## 7094 -81.3857 19.3022 High income Not classified
## 7095 -81.3857 19.3022 High income Not classified
## 7096 -81.3857 19.3022 High income Not classified
## 7097 -81.3857 19.3022 High income Not classified
## 7098 -81.3857 19.3022 High income Not classified
## 7099 -81.3857 19.3022 High income Not classified
## 7100 -81.3857 19.3022 High income Not classified
## 7101 -81.3857 19.3022 High income Not classified
## 7102 -81.3857 19.3022 High income Not classified
## 7103 -81.3857 19.3022 High income Not classified
## 7104 -81.3857 19.3022 High income Not classified
## 7105 -81.3857 19.3022 High income Not classified
## 7106 -81.3857 19.3022 High income Not classified
## 7107 -81.3857 19.3022 High income Not classified
## 7108 -81.3857 19.3022 High income Not classified
## 7109 -81.3857 19.3022 High income Not classified
## 7110 -81.3857 19.3022 High income Not classified
## 7111 -81.3857 19.3022 High income Not classified
## 7112 -81.3857 19.3022 High income Not classified
## 7113 -81.3857 19.3022 High income Not classified
## 7114 -81.3857 19.3022 High income Not classified
## 7115 -81.3857 19.3022 High income Not classified
## 7116 -81.3857 19.3022 High income Not classified
## 7117 -81.3857 19.3022 High income Not classified
## 7118 -81.3857 19.3022 High income Not classified
## 7119 -81.3857 19.3022 High income Not classified
## 7120 -81.3857 19.3022 High income Not classified
## 7121 -81.3857 19.3022 High income Not classified
## 7122 -81.3857 19.3022 High income Not classified
## 7123 -81.3857 19.3022 High income Not classified
## 7124 -81.3857 19.3022 High income Not classified
## 7125 -81.3857 19.3022 High income Not classified
## 7126 -81.3857 19.3022 High income Not classified
## 7127 -81.3857 19.3022 High income Not classified
## 7128 -81.3857 19.3022 High income Not classified
## 7129 -81.3857 19.3022 High income Not classified
## 7130 -81.3857 19.3022 High income Not classified
## 7131 71.4382 51.1879 Upper middle income IBRD
## 7132 71.4382 51.1879 Upper middle income IBRD
## 7133 71.4382 51.1879 Upper middle income IBRD
## 7134 71.4382 51.1879 Upper middle income IBRD
## 7135 71.4382 51.1879 Upper middle income IBRD
## 7136 71.4382 51.1879 Upper middle income IBRD
## 7137 71.4382 51.1879 Upper middle income IBRD
## 7138 71.4382 51.1879 Upper middle income IBRD
## 7139 71.4382 51.1879 Upper middle income IBRD
## 7140 71.4382 51.1879 Upper middle income IBRD
## 7141 71.4382 51.1879 Upper middle income IBRD
## 7142 71.4382 51.1879 Upper middle income IBRD
## 7143 71.4382 51.1879 Upper middle income IBRD
## 7144 71.4382 51.1879 Upper middle income IBRD
## 7145 71.4382 51.1879 Upper middle income IBRD
## 7146 71.4382 51.1879 Upper middle income IBRD
## 7147 71.4382 51.1879 Upper middle income IBRD
## 7148 71.4382 51.1879 Upper middle income IBRD
## 7149 71.4382 51.1879 Upper middle income IBRD
## 7150 71.4382 51.1879 Upper middle income IBRD
## 7151 71.4382 51.1879 Upper middle income IBRD
## 7152 71.4382 51.1879 Upper middle income IBRD
## 7153 71.4382 51.1879 Upper middle income IBRD
## 7154 71.4382 51.1879 Upper middle income IBRD
## 7155 71.4382 51.1879 Upper middle income IBRD
## 7156 71.4382 51.1879 Upper middle income IBRD
## 7157 71.4382 51.1879 Upper middle income IBRD
## 7158 71.4382 51.1879 Upper middle income IBRD
## 7159 71.4382 51.1879 Upper middle income IBRD
## 7160 71.4382 51.1879 Upper middle income IBRD
## 7161 71.4382 51.1879 Upper middle income IBRD
## 7162 71.4382 51.1879 Upper middle income IBRD
## 7163 71.4382 51.1879 Upper middle income IBRD
## 7164 71.4382 51.1879 Upper middle income IBRD
## 7165 71.4382 51.1879 Upper middle income IBRD
## 7166 71.4382 51.1879 Upper middle income IBRD
## 7167 71.4382 51.1879 Upper middle income IBRD
## 7168 71.4382 51.1879 Upper middle income IBRD
## 7169 71.4382 51.1879 Upper middle income IBRD
## 7170 71.4382 51.1879 Upper middle income IBRD
## 7171 71.4382 51.1879 Upper middle income IBRD
## 7172 71.4382 51.1879 Upper middle income IBRD
## 7173 71.4382 51.1879 Upper middle income IBRD
## 7174 71.4382 51.1879 Upper middle income IBRD
## 7175 71.4382 51.1879 Upper middle income IBRD
## 7176 71.4382 51.1879 Upper middle income IBRD
## 7177 71.4382 51.1879 Upper middle income IBRD
## 7178 71.4382 51.1879 Upper middle income IBRD
## 7179 71.4382 51.1879 Upper middle income IBRD
## 7180 71.4382 51.1879 Upper middle income IBRD
## 7181 71.4382 51.1879 Upper middle income IBRD
## 7182 71.4382 51.1879 Upper middle income IBRD
## 7183 71.4382 51.1879 Upper middle income IBRD
## 7184 71.4382 51.1879 Upper middle income IBRD
## 7185 71.4382 51.1879 Upper middle income IBRD
## 7186 71.4382 51.1879 Upper middle income IBRD
## 7187 71.4382 51.1879 Upper middle income IBRD
## 7188 71.4382 51.1879 Upper middle income IBRD
## 7189 71.4382 51.1879 Upper middle income IBRD
## 7190 71.4382 51.1879 Upper middle income IBRD
## 7191 71.4382 51.1879 Upper middle income IBRD
## 7192 71.4382 51.1879 Upper middle income IBRD
## 7193 102.177 18.5826 Lower middle income IDA
## 7194 102.177 18.5826 Lower middle income IDA
## 7195 102.177 18.5826 Lower middle income IDA
## 7196 102.177 18.5826 Lower middle income IDA
## 7197 102.177 18.5826 Lower middle income IDA
## 7198 102.177 18.5826 Lower middle income IDA
## 7199 102.177 18.5826 Lower middle income IDA
## 7200 102.177 18.5826 Lower middle income IDA
## 7201 102.177 18.5826 Lower middle income IDA
## 7202 102.177 18.5826 Lower middle income IDA
## 7203 102.177 18.5826 Lower middle income IDA
## 7204 102.177 18.5826 Lower middle income IDA
## 7205 102.177 18.5826 Lower middle income IDA
## 7206 102.177 18.5826 Lower middle income IDA
## 7207 102.177 18.5826 Lower middle income IDA
## 7208 102.177 18.5826 Lower middle income IDA
## 7209 102.177 18.5826 Lower middle income IDA
## 7210 102.177 18.5826 Lower middle income IDA
## 7211 102.177 18.5826 Lower middle income IDA
## 7212 102.177 18.5826 Lower middle income IDA
## 7213 102.177 18.5826 Lower middle income IDA
## 7214 102.177 18.5826 Lower middle income IDA
## 7215 102.177 18.5826 Lower middle income IDA
## 7216 102.177 18.5826 Lower middle income IDA
## 7217 102.177 18.5826 Lower middle income IDA
## 7218 102.177 18.5826 Lower middle income IDA
## 7219 102.177 18.5826 Lower middle income IDA
## 7220 102.177 18.5826 Lower middle income IDA
## 7221 102.177 18.5826 Lower middle income IDA
## 7222 102.177 18.5826 Lower middle income IDA
## 7223 102.177 18.5826 Lower middle income IDA
## 7224 102.177 18.5826 Lower middle income IDA
## 7225 102.177 18.5826 Lower middle income IDA
## 7226 102.177 18.5826 Lower middle income IDA
## 7227 102.177 18.5826 Lower middle income IDA
## 7228 102.177 18.5826 Lower middle income IDA
## 7229 102.177 18.5826 Lower middle income IDA
## 7230 102.177 18.5826 Lower middle income IDA
## 7231 102.177 18.5826 Lower middle income IDA
## 7232 102.177 18.5826 Lower middle income IDA
## 7233 102.177 18.5826 Lower middle income IDA
## 7234 102.177 18.5826 Lower middle income IDA
## 7235 102.177 18.5826 Lower middle income IDA
## 7236 102.177 18.5826 Lower middle income IDA
## 7237 102.177 18.5826 Lower middle income IDA
## 7238 102.177 18.5826 Lower middle income IDA
## 7239 102.177 18.5826 Lower middle income IDA
## 7240 102.177 18.5826 Lower middle income IDA
## 7241 102.177 18.5826 Lower middle income IDA
## 7242 102.177 18.5826 Lower middle income IDA
## 7243 102.177 18.5826 Lower middle income IDA
## 7244 102.177 18.5826 Lower middle income IDA
## 7245 102.177 18.5826 Lower middle income IDA
## 7246 102.177 18.5826 Lower middle income IDA
## 7247 102.177 18.5826 Lower middle income IDA
## 7248 102.177 18.5826 Lower middle income IDA
## 7249 102.177 18.5826 Lower middle income IDA
## 7250 102.177 18.5826 Lower middle income IDA
## 7251 102.177 18.5826 Lower middle income IDA
## 7252 102.177 18.5826 Lower middle income IDA
## 7253 102.177 18.5826 Lower middle income IDA
## 7254 102.177 18.5826 Lower middle income IDA
## 7255 35.5134 33.8872 Lower middle income IBRD
## 7256 35.5134 33.8872 Lower middle income IBRD
## 7257 35.5134 33.8872 Lower middle income IBRD
## 7258 35.5134 33.8872 Lower middle income IBRD
## 7259 35.5134 33.8872 Lower middle income IBRD
## 7260 35.5134 33.8872 Lower middle income IBRD
## 7261 35.5134 33.8872 Lower middle income IBRD
## 7262 35.5134 33.8872 Lower middle income IBRD
## 7263 35.5134 33.8872 Lower middle income IBRD
## 7264 35.5134 33.8872 Lower middle income IBRD
## 7265 35.5134 33.8872 Lower middle income IBRD
## 7266 35.5134 33.8872 Lower middle income IBRD
## 7267 35.5134 33.8872 Lower middle income IBRD
## 7268 35.5134 33.8872 Lower middle income IBRD
## 7269 35.5134 33.8872 Lower middle income IBRD
## 7270 35.5134 33.8872 Lower middle income IBRD
## 7271 35.5134 33.8872 Lower middle income IBRD
## 7272 35.5134 33.8872 Lower middle income IBRD
## 7273 35.5134 33.8872 Lower middle income IBRD
## 7274 35.5134 33.8872 Lower middle income IBRD
## 7275 35.5134 33.8872 Lower middle income IBRD
## 7276 35.5134 33.8872 Lower middle income IBRD
## 7277 35.5134 33.8872 Lower middle income IBRD
## 7278 35.5134 33.8872 Lower middle income IBRD
## 7279 35.5134 33.8872 Lower middle income IBRD
## 7280 35.5134 33.8872 Lower middle income IBRD
## 7281 35.5134 33.8872 Lower middle income IBRD
## 7282 35.5134 33.8872 Lower middle income IBRD
## 7283 35.5134 33.8872 Lower middle income IBRD
## 7284 35.5134 33.8872 Lower middle income IBRD
## 7285 35.5134 33.8872 Lower middle income IBRD
## 7286 35.5134 33.8872 Lower middle income IBRD
## 7287 35.5134 33.8872 Lower middle income IBRD
## 7288 35.5134 33.8872 Lower middle income IBRD
## 7289 35.5134 33.8872 Lower middle income IBRD
## 7290 35.5134 33.8872 Lower middle income IBRD
## 7291 35.5134 33.8872 Lower middle income IBRD
## 7292 35.5134 33.8872 Lower middle income IBRD
## 7293 35.5134 33.8872 Lower middle income IBRD
## 7294 35.5134 33.8872 Lower middle income IBRD
## 7295 35.5134 33.8872 Lower middle income IBRD
## 7296 35.5134 33.8872 Lower middle income IBRD
## 7297 35.5134 33.8872 Lower middle income IBRD
## 7298 35.5134 33.8872 Lower middle income IBRD
## 7299 35.5134 33.8872 Lower middle income IBRD
## 7300 35.5134 33.8872 Lower middle income IBRD
## 7301 35.5134 33.8872 Lower middle income IBRD
## 7302 35.5134 33.8872 Lower middle income IBRD
## 7303 35.5134 33.8872 Lower middle income IBRD
## 7304 35.5134 33.8872 Lower middle income IBRD
## 7305 35.5134 33.8872 Lower middle income IBRD
## 7306 35.5134 33.8872 Lower middle income IBRD
## 7307 35.5134 33.8872 Lower middle income IBRD
## 7308 35.5134 33.8872 Lower middle income IBRD
## 7309 35.5134 33.8872 Lower middle income IBRD
## 7310 35.5134 33.8872 Lower middle income IBRD
## 7311 35.5134 33.8872 Lower middle income IBRD
## 7312 35.5134 33.8872 Lower middle income IBRD
## 7313 35.5134 33.8872 Lower middle income IBRD
## 7314 35.5134 33.8872 Lower middle income IBRD
## 7315 35.5134 33.8872 Lower middle income IBRD
## 7316 35.5134 33.8872 Lower middle income IBRD
## 7317 -60.9832 14 Upper middle income Blend
## 7318 -60.9832 14 Upper middle income Blend
## 7319 -60.9832 14 Upper middle income Blend
## 7320 -60.9832 14 Upper middle income Blend
## 7321 -60.9832 14 Upper middle income Blend
## 7322 -60.9832 14 Upper middle income Blend
## 7323 -60.9832 14 Upper middle income Blend
## 7324 -60.9832 14 Upper middle income Blend
## 7325 -60.9832 14 Upper middle income Blend
## 7326 -60.9832 14 Upper middle income Blend
## 7327 -60.9832 14 Upper middle income Blend
## 7328 -60.9832 14 Upper middle income Blend
## 7329 -60.9832 14 Upper middle income Blend
## 7330 -60.9832 14 Upper middle income Blend
## 7331 -60.9832 14 Upper middle income Blend
## 7332 -60.9832 14 Upper middle income Blend
## 7333 -60.9832 14 Upper middle income Blend
## 7334 -60.9832 14 Upper middle income Blend
## 7335 -60.9832 14 Upper middle income Blend
## 7336 -60.9832 14 Upper middle income Blend
## 7337 -60.9832 14 Upper middle income Blend
## 7338 -60.9832 14 Upper middle income Blend
## 7339 -60.9832 14 Upper middle income Blend
## 7340 -60.9832 14 Upper middle income Blend
## 7341 -60.9832 14 Upper middle income Blend
## 7342 -60.9832 14 Upper middle income Blend
## 7343 -60.9832 14 Upper middle income Blend
## 7344 -60.9832 14 Upper middle income Blend
## 7345 -60.9832 14 Upper middle income Blend
## 7346 -60.9832 14 Upper middle income Blend
## 7347 -60.9832 14 Upper middle income Blend
## 7348 -60.9832 14 Upper middle income Blend
## 7349 -60.9832 14 Upper middle income Blend
## 7350 -60.9832 14 Upper middle income Blend
## 7351 -60.9832 14 Upper middle income Blend
## 7352 -60.9832 14 Upper middle income Blend
## 7353 -60.9832 14 Upper middle income Blend
## 7354 -60.9832 14 Upper middle income Blend
## 7355 -60.9832 14 Upper middle income Blend
## 7356 -60.9832 14 Upper middle income Blend
## 7357 -60.9832 14 Upper middle income Blend
## 7358 -60.9832 14 Upper middle income Blend
## 7359 -60.9832 14 Upper middle income Blend
## 7360 -60.9832 14 Upper middle income Blend
## 7361 -60.9832 14 Upper middle income Blend
## 7362 -60.9832 14 Upper middle income Blend
## 7363 -60.9832 14 Upper middle income Blend
## 7364 -60.9832 14 Upper middle income Blend
## 7365 -60.9832 14 Upper middle income Blend
## 7366 -60.9832 14 Upper middle income Blend
## 7367 -60.9832 14 Upper middle income Blend
## 7368 -60.9832 14 Upper middle income Blend
## 7369 -60.9832 14 Upper middle income Blend
## 7370 -60.9832 14 Upper middle income Blend
## 7371 -60.9832 14 Upper middle income Blend
## 7372 -60.9832 14 Upper middle income Blend
## 7373 -60.9832 14 Upper middle income Blend
## 7374 -60.9832 14 Upper middle income Blend
## 7375 -60.9832 14 Upper middle income Blend
## 7376 -60.9832 14 Upper middle income Blend
## 7377 -60.9832 14 Upper middle income Blend
## 7378 -60.9832 14 Upper middle income Blend
## 7379 9.52148 47.1411 High income Not classified
## 7380 9.52148 47.1411 High income Not classified
## 7381 9.52148 47.1411 High income Not classified
## 7382 9.52148 47.1411 High income Not classified
## 7383 9.52148 47.1411 High income Not classified
## 7384 9.52148 47.1411 High income Not classified
## 7385 9.52148 47.1411 High income Not classified
## 7386 9.52148 47.1411 High income Not classified
## 7387 9.52148 47.1411 High income Not classified
## 7388 9.52148 47.1411 High income Not classified
## 7389 9.52148 47.1411 High income Not classified
## 7390 9.52148 47.1411 High income Not classified
## 7391 9.52148 47.1411 High income Not classified
## 7392 9.52148 47.1411 High income Not classified
## 7393 9.52148 47.1411 High income Not classified
## 7394 9.52148 47.1411 High income Not classified
## 7395 9.52148 47.1411 High income Not classified
## 7396 9.52148 47.1411 High income Not classified
## 7397 9.52148 47.1411 High income Not classified
## 7398 9.52148 47.1411 High income Not classified
## 7399 9.52148 47.1411 High income Not classified
## 7400 9.52148 47.1411 High income Not classified
## 7401 9.52148 47.1411 High income Not classified
## 7402 9.52148 47.1411 High income Not classified
## 7403 9.52148 47.1411 High income Not classified
## 7404 9.52148 47.1411 High income Not classified
## 7405 9.52148 47.1411 High income Not classified
## 7406 9.52148 47.1411 High income Not classified
## 7407 9.52148 47.1411 High income Not classified
## 7408 9.52148 47.1411 High income Not classified
## 7409 9.52148 47.1411 High income Not classified
## 7410 9.52148 47.1411 High income Not classified
## 7411 9.52148 47.1411 High income Not classified
## 7412 9.52148 47.1411 High income Not classified
## 7413 9.52148 47.1411 High income Not classified
## 7414 9.52148 47.1411 High income Not classified
## 7415 9.52148 47.1411 High income Not classified
## 7416 9.52148 47.1411 High income Not classified
## 7417 9.52148 47.1411 High income Not classified
## 7418 9.52148 47.1411 High income Not classified
## 7419 9.52148 47.1411 High income Not classified
## 7420 9.52148 47.1411 High income Not classified
## 7421 9.52148 47.1411 High income Not classified
## 7422 9.52148 47.1411 High income Not classified
## 7423 9.52148 47.1411 High income Not classified
## 7424 9.52148 47.1411 High income Not classified
## 7425 9.52148 47.1411 High income Not classified
## 7426 9.52148 47.1411 High income Not classified
## 7427 9.52148 47.1411 High income Not classified
## 7428 9.52148 47.1411 High income Not classified
## 7429 9.52148 47.1411 High income Not classified
## 7430 9.52148 47.1411 High income Not classified
## 7431 9.52148 47.1411 High income Not classified
## 7432 9.52148 47.1411 High income Not classified
## 7433 9.52148 47.1411 High income Not classified
## 7434 9.52148 47.1411 High income Not classified
## 7435 9.52148 47.1411 High income Not classified
## 7436 9.52148 47.1411 High income Not classified
## 7437 9.52148 47.1411 High income Not classified
## 7438 9.52148 47.1411 High income Not classified
## 7439 9.52148 47.1411 High income Not classified
## 7440 9.52148 47.1411 High income Not classified
## 7441 79.8528 6.92148 Lower middle income IBRD
## 7442 79.8528 6.92148 Lower middle income IBRD
## 7443 79.8528 6.92148 Lower middle income IBRD
## 7444 79.8528 6.92148 Lower middle income IBRD
## 7445 79.8528 6.92148 Lower middle income IBRD
## 7446 79.8528 6.92148 Lower middle income IBRD
## 7447 79.8528 6.92148 Lower middle income IBRD
## 7448 79.8528 6.92148 Lower middle income IBRD
## 7449 79.8528 6.92148 Lower middle income IBRD
## 7450 79.8528 6.92148 Lower middle income IBRD
## 7451 79.8528 6.92148 Lower middle income IBRD
## 7452 79.8528 6.92148 Lower middle income IBRD
## 7453 79.8528 6.92148 Lower middle income IBRD
## 7454 79.8528 6.92148 Lower middle income IBRD
## 7455 79.8528 6.92148 Lower middle income IBRD
## 7456 79.8528 6.92148 Lower middle income IBRD
## 7457 79.8528 6.92148 Lower middle income IBRD
## 7458 79.8528 6.92148 Lower middle income IBRD
## 7459 79.8528 6.92148 Lower middle income IBRD
## 7460 79.8528 6.92148 Lower middle income IBRD
## 7461 79.8528 6.92148 Lower middle income IBRD
## 7462 79.8528 6.92148 Lower middle income IBRD
## 7463 79.8528 6.92148 Lower middle income IBRD
## 7464 79.8528 6.92148 Lower middle income IBRD
## 7465 79.8528 6.92148 Lower middle income IBRD
## 7466 79.8528 6.92148 Lower middle income IBRD
## 7467 79.8528 6.92148 Lower middle income IBRD
## 7468 79.8528 6.92148 Lower middle income IBRD
## 7469 79.8528 6.92148 Lower middle income IBRD
## 7470 79.8528 6.92148 Lower middle income IBRD
## 7471 79.8528 6.92148 Lower middle income IBRD
## 7472 79.8528 6.92148 Lower middle income IBRD
## 7473 79.8528 6.92148 Lower middle income IBRD
## 7474 79.8528 6.92148 Lower middle income IBRD
## 7475 79.8528 6.92148 Lower middle income IBRD
## 7476 79.8528 6.92148 Lower middle income IBRD
## 7477 79.8528 6.92148 Lower middle income IBRD
## 7478 79.8528 6.92148 Lower middle income IBRD
## 7479 79.8528 6.92148 Lower middle income IBRD
## 7480 79.8528 6.92148 Lower middle income IBRD
## 7481 79.8528 6.92148 Lower middle income IBRD
## 7482 79.8528 6.92148 Lower middle income IBRD
## 7483 79.8528 6.92148 Lower middle income IBRD
## 7484 79.8528 6.92148 Lower middle income IBRD
## 7485 79.8528 6.92148 Lower middle income IBRD
## 7486 79.8528 6.92148 Lower middle income IBRD
## 7487 79.8528 6.92148 Lower middle income IBRD
## 7488 79.8528 6.92148 Lower middle income IBRD
## 7489 79.8528 6.92148 Lower middle income IBRD
## 7490 79.8528 6.92148 Lower middle income IBRD
## 7491 79.8528 6.92148 Lower middle income IBRD
## 7492 79.8528 6.92148 Lower middle income IBRD
## 7493 79.8528 6.92148 Lower middle income IBRD
## 7494 79.8528 6.92148 Lower middle income IBRD
## 7495 79.8528 6.92148 Lower middle income IBRD
## 7496 79.8528 6.92148 Lower middle income IBRD
## 7497 79.8528 6.92148 Lower middle income IBRD
## 7498 79.8528 6.92148 Lower middle income IBRD
## 7499 79.8528 6.92148 Lower middle income IBRD
## 7500 79.8528 6.92148 Lower middle income IBRD
## 7501 79.8528 6.92148 Lower middle income IBRD
## 7502 79.8528 6.92148 Lower middle income IBRD
## 7503 -10.7957 6.30039 Low income IDA
## 7504 -10.7957 6.30039 Low income IDA
## 7505 -10.7957 6.30039 Low income IDA
## 7506 -10.7957 6.30039 Low income IDA
## 7507 -10.7957 6.30039 Low income IDA
## 7508 -10.7957 6.30039 Low income IDA
## 7509 -10.7957 6.30039 Low income IDA
## 7510 -10.7957 6.30039 Low income IDA
## 7511 -10.7957 6.30039 Low income IDA
## 7512 -10.7957 6.30039 Low income IDA
## 7513 -10.7957 6.30039 Low income IDA
## 7514 -10.7957 6.30039 Low income IDA
## 7515 -10.7957 6.30039 Low income IDA
## 7516 -10.7957 6.30039 Low income IDA
## 7517 -10.7957 6.30039 Low income IDA
## 7518 -10.7957 6.30039 Low income IDA
## 7519 -10.7957 6.30039 Low income IDA
## 7520 -10.7957 6.30039 Low income IDA
## 7521 -10.7957 6.30039 Low income IDA
## 7522 -10.7957 6.30039 Low income IDA
## 7523 -10.7957 6.30039 Low income IDA
## 7524 -10.7957 6.30039 Low income IDA
## 7525 -10.7957 6.30039 Low income IDA
## 7526 -10.7957 6.30039 Low income IDA
## 7527 -10.7957 6.30039 Low income IDA
## 7528 -10.7957 6.30039 Low income IDA
## 7529 -10.7957 6.30039 Low income IDA
## 7530 -10.7957 6.30039 Low income IDA
## 7531 -10.7957 6.30039 Low income IDA
## 7532 -10.7957 6.30039 Low income IDA
## 7533 -10.7957 6.30039 Low income IDA
## 7534 -10.7957 6.30039 Low income IDA
## 7535 -10.7957 6.30039 Low income IDA
## 7536 -10.7957 6.30039 Low income IDA
## 7537 -10.7957 6.30039 Low income IDA
## 7538 -10.7957 6.30039 Low income IDA
## 7539 -10.7957 6.30039 Low income IDA
## 7540 -10.7957 6.30039 Low income IDA
## 7541 -10.7957 6.30039 Low income IDA
## 7542 -10.7957 6.30039 Low income IDA
## 7543 -10.7957 6.30039 Low income IDA
## 7544 -10.7957 6.30039 Low income IDA
## 7545 -10.7957 6.30039 Low income IDA
## 7546 -10.7957 6.30039 Low income IDA
## 7547 -10.7957 6.30039 Low income IDA
## 7548 -10.7957 6.30039 Low income IDA
## 7549 -10.7957 6.30039 Low income IDA
## 7550 -10.7957 6.30039 Low income IDA
## 7551 -10.7957 6.30039 Low income IDA
## 7552 -10.7957 6.30039 Low income IDA
## 7553 -10.7957 6.30039 Low income IDA
## 7554 -10.7957 6.30039 Low income IDA
## 7555 -10.7957 6.30039 Low income IDA
## 7556 -10.7957 6.30039 Low income IDA
## 7557 -10.7957 6.30039 Low income IDA
## 7558 -10.7957 6.30039 Low income IDA
## 7559 -10.7957 6.30039 Low income IDA
## 7560 -10.7957 6.30039 Low income IDA
## 7561 -10.7957 6.30039 Low income IDA
## 7562 -10.7957 6.30039 Low income IDA
## 7563 -10.7957 6.30039 Low income IDA
## 7564 -10.7957 6.30039 Low income IDA
## 7565 27.7167 -29.5208 Lower middle income IDA
## 7566 27.7167 -29.5208 Lower middle income IDA
## 7567 27.7167 -29.5208 Lower middle income IDA
## 7568 27.7167 -29.5208 Lower middle income IDA
## 7569 27.7167 -29.5208 Lower middle income IDA
## 7570 27.7167 -29.5208 Lower middle income IDA
## 7571 27.7167 -29.5208 Lower middle income IDA
## 7572 27.7167 -29.5208 Lower middle income IDA
## 7573 27.7167 -29.5208 Lower middle income IDA
## 7574 27.7167 -29.5208 Lower middle income IDA
## 7575 27.7167 -29.5208 Lower middle income IDA
## 7576 27.7167 -29.5208 Lower middle income IDA
## 7577 27.7167 -29.5208 Lower middle income IDA
## 7578 27.7167 -29.5208 Lower middle income IDA
## 7579 27.7167 -29.5208 Lower middle income IDA
## 7580 27.7167 -29.5208 Lower middle income IDA
## 7581 27.7167 -29.5208 Lower middle income IDA
## 7582 27.7167 -29.5208 Lower middle income IDA
## 7583 27.7167 -29.5208 Lower middle income IDA
## 7584 27.7167 -29.5208 Lower middle income IDA
## 7585 27.7167 -29.5208 Lower middle income IDA
## 7586 27.7167 -29.5208 Lower middle income IDA
## 7587 27.7167 -29.5208 Lower middle income IDA
## 7588 27.7167 -29.5208 Lower middle income IDA
## 7589 27.7167 -29.5208 Lower middle income IDA
## 7590 27.7167 -29.5208 Lower middle income IDA
## 7591 27.7167 -29.5208 Lower middle income IDA
## 7592 27.7167 -29.5208 Lower middle income IDA
## 7593 27.7167 -29.5208 Lower middle income IDA
## 7594 27.7167 -29.5208 Lower middle income IDA
## 7595 27.7167 -29.5208 Lower middle income IDA
## 7596 27.7167 -29.5208 Lower middle income IDA
## 7597 27.7167 -29.5208 Lower middle income IDA
## 7598 27.7167 -29.5208 Lower middle income IDA
## 7599 27.7167 -29.5208 Lower middle income IDA
## 7600 27.7167 -29.5208 Lower middle income IDA
## 7601 27.7167 -29.5208 Lower middle income IDA
## 7602 27.7167 -29.5208 Lower middle income IDA
## 7603 27.7167 -29.5208 Lower middle income IDA
## 7604 27.7167 -29.5208 Lower middle income IDA
## 7605 27.7167 -29.5208 Lower middle income IDA
## 7606 27.7167 -29.5208 Lower middle income IDA
## 7607 27.7167 -29.5208 Lower middle income IDA
## 7608 27.7167 -29.5208 Lower middle income IDA
## 7609 27.7167 -29.5208 Lower middle income IDA
## 7610 27.7167 -29.5208 Lower middle income IDA
## 7611 27.7167 -29.5208 Lower middle income IDA
## 7612 27.7167 -29.5208 Lower middle income IDA
## 7613 27.7167 -29.5208 Lower middle income IDA
## 7614 27.7167 -29.5208 Lower middle income IDA
## 7615 27.7167 -29.5208 Lower middle income IDA
## 7616 27.7167 -29.5208 Lower middle income IDA
## 7617 27.7167 -29.5208 Lower middle income IDA
## 7618 27.7167 -29.5208 Lower middle income IDA
## 7619 27.7167 -29.5208 Lower middle income IDA
## 7620 27.7167 -29.5208 Lower middle income IDA
## 7621 27.7167 -29.5208 Lower middle income IDA
## 7622 27.7167 -29.5208 Lower middle income IDA
## 7623 27.7167 -29.5208 Lower middle income IDA
## 7624 27.7167 -29.5208 Lower middle income IDA
## 7625 27.7167 -29.5208 Lower middle income IDA
## 7626 27.7167 -29.5208 Lower middle income IDA
## 7627 25.2799 54.6896 High income Not classified
## 7628 25.2799 54.6896 High income Not classified
## 7629 25.2799 54.6896 High income Not classified
## 7630 25.2799 54.6896 High income Not classified
## 7631 25.2799 54.6896 High income Not classified
## 7632 25.2799 54.6896 High income Not classified
## 7633 25.2799 54.6896 High income Not classified
## 7634 25.2799 54.6896 High income Not classified
## 7635 25.2799 54.6896 High income Not classified
## 7636 25.2799 54.6896 High income Not classified
## 7637 25.2799 54.6896 High income Not classified
## 7638 25.2799 54.6896 High income Not classified
## 7639 25.2799 54.6896 High income Not classified
## 7640 25.2799 54.6896 High income Not classified
## 7641 25.2799 54.6896 High income Not classified
## 7642 25.2799 54.6896 High income Not classified
## 7643 25.2799 54.6896 High income Not classified
## 7644 25.2799 54.6896 High income Not classified
## 7645 25.2799 54.6896 High income Not classified
## 7646 25.2799 54.6896 High income Not classified
## 7647 25.2799 54.6896 High income Not classified
## 7648 25.2799 54.6896 High income Not classified
## 7649 25.2799 54.6896 High income Not classified
## 7650 25.2799 54.6896 High income Not classified
## 7651 25.2799 54.6896 High income Not classified
## 7652 25.2799 54.6896 High income Not classified
## 7653 25.2799 54.6896 High income Not classified
## 7654 25.2799 54.6896 High income Not classified
## 7655 25.2799 54.6896 High income Not classified
## 7656 25.2799 54.6896 High income Not classified
## 7657 25.2799 54.6896 High income Not classified
## 7658 25.2799 54.6896 High income Not classified
## 7659 25.2799 54.6896 High income Not classified
## 7660 25.2799 54.6896 High income Not classified
## 7661 25.2799 54.6896 High income Not classified
## 7662 25.2799 54.6896 High income Not classified
## 7663 25.2799 54.6896 High income Not classified
## 7664 25.2799 54.6896 High income Not classified
## 7665 25.2799 54.6896 High income Not classified
## 7666 25.2799 54.6896 High income Not classified
## 7667 25.2799 54.6896 High income Not classified
## 7668 25.2799 54.6896 High income Not classified
## 7669 25.2799 54.6896 High income Not classified
## 7670 25.2799 54.6896 High income Not classified
## 7671 25.2799 54.6896 High income Not classified
## 7672 25.2799 54.6896 High income Not classified
## 7673 25.2799 54.6896 High income Not classified
## 7674 25.2799 54.6896 High income Not classified
## 7675 25.2799 54.6896 High income Not classified
## 7676 25.2799 54.6896 High income Not classified
## 7677 25.2799 54.6896 High income Not classified
## 7678 25.2799 54.6896 High income Not classified
## 7679 25.2799 54.6896 High income Not classified
## 7680 25.2799 54.6896 High income Not classified
## 7681 25.2799 54.6896 High income Not classified
## 7682 25.2799 54.6896 High income Not classified
## 7683 25.2799 54.6896 High income Not classified
## 7684 25.2799 54.6896 High income Not classified
## 7685 25.2799 54.6896 High income Not classified
## 7686 25.2799 54.6896 High income Not classified
## 7687 25.2799 54.6896 High income Not classified
## 7688 25.2799 54.6896 High income Not classified
## 7689 6.1296 49.61 High income Not classified
## 7690 6.1296 49.61 High income Not classified
## 7691 6.1296 49.61 High income Not classified
## 7692 6.1296 49.61 High income Not classified
## [ reached 'max' / getOption("max.print") -- omitted 8800 rows ]
Compare the following:
- 16,226 rows = 13,054 rows (country) + 3172 rows (not country)
gdp_pcap_country <- gdp_pcap %>% semi_join(wb_countries, by = "country")
head(gdp_pcap_country)## iso2c country NY.GDP.PCAP.KD year
## 1 AF Afghanistan NA 2021
## 2 AF Afghanistan 529.7412 2020
## 3 AF Afghanistan 555.1390 2019
## 4 AF Afghanistan 546.7430 2018
## 5 AF Afghanistan 553.3551 2017
## 6 AF Afghanistan 552.9969 2016
gdp_pcap_extra %>% filter(region != "Aggregates") ## iso2c country NY.GDP.PCAP.KD year status lastupdated
## 1 AD Andorra 38301.4504 2018 2022-09-16
## 2 AD Andorra 37707.8332 2017 2022-09-16
## 3 AD Andorra 34722.0298 2014 2022-09-16
## 4 AD Andorra 33220.6938 2013 2022-09-16
## 5 AD Andorra 37432.9112 2016 2022-09-16
## 6 AD Andorra 35770.9187 2015 2022-09-16
## 7 AD Andorra 40602.6987 2006 2022-09-16
## 8 AD Andorra 39783.0866 2005 2022-09-16
## 9 AD Andorra 39043.1137 2004 2022-09-16
## 10 AD Andorra 37620.3548 2003 2022-09-16
## 11 AD Andorra 36158.7299 2002 2022-09-16
## 12 AD Andorra 35975.0224 2001 2022-09-16
## 13 AD Andorra 34267.7182 2000 2022-09-16
## 14 AD Andorra 33750.1908 2012 2022-09-16
## 15 AD Andorra 34956.7349 2011 2022-09-16
## 16 AD Andorra 34667.3089 2010 2022-09-16
## 17 AD Andorra 35362.8369 2009 2022-09-16
## 18 AD Andorra 37610.7102 2008 2022-09-16
## 19 AD Andorra 40392.0317 2007 2022-09-16
## 20 AD Andorra 34014.6234 1980 2022-09-16
## 21 AD Andorra 34462.6295 1979 2022-09-16
## 22 AD Andorra 35551.8767 1978 2022-09-16
## 23 AD Andorra 36081.8008 1977 2022-09-16
## 24 AD Andorra 36175.4646 1976 2022-09-16
## 25 AD Andorra 36246.8271 1975 2022-09-16
## 26 AD Andorra 37504.8905 1974 2022-09-16
## 27 AD Andorra 37123.4096 1973 2022-09-16
## 28 AD Andorra 36166.5570 1972 2022-09-16
## 29 AD Andorra 35159.6061 1971 2022-09-16
## 30 AD Andorra 35391.2140 1970 2022-09-16
## 31 AD Andorra NA 1969 2022-09-16
## 32 AD Andorra NA 1968 2022-09-16
## 33 AD Andorra NA 1967 2022-09-16
## 34 AD Andorra NA 1966 2022-09-16
## 35 AD Andorra NA 1965 2022-09-16
## 36 AD Andorra NA 1964 2022-09-16
## 37 AD Andorra NA 1963 2022-09-16
## 38 AD Andorra NA 1962 2022-09-16
## 39 AD Andorra NA 1961 2022-09-16
## 40 AD Andorra NA 1960 2022-09-16
## 41 AD Andorra 33625.3772 1999 2022-09-16
## 42 AD Andorra 32416.1429 1998 2022-09-16
## 43 AD Andorra 31325.6417 1997 2022-09-16
## 44 AD Andorra 28701.2086 1996 2022-09-16
## 45 AD Andorra 27641.9961 1995 2022-09-16
## 46 AD Andorra 27408.3889 1994 2022-09-16
## 47 AD Andorra 27517.6580 1993 2022-09-16
## 48 AD Andorra 28792.3124 1992 2022-09-16
## 49 AD Andorra 29642.8291 1991 2022-09-16
## 50 AD Andorra 30051.2970 1990 2022-09-16
## 51 AD Andorra 30091.3687 1989 2022-09-16
## 52 AD Andorra 29854.9187 1988 2022-09-16
## 53 AD Andorra 29564.9384 1987 2022-09-16
## 54 AD Andorra 29178.6586 1986 2022-09-16
## 55 AD Andorra 29480.4634 1985 2022-09-16
## 56 AD Andorra 30084.6863 1984 2022-09-16
## 57 AD Andorra 30897.0741 1983 2022-09-16
## 58 AD Andorra 31709.4219 1982 2022-09-16
## 59 AD Andorra 32669.5914 1981 2022-09-16
## 60 AD Andorra 37640.1263 2021 2022-09-16
## 61 AD Andorra 34588.0537 2020 2022-09-16
## 62 AD Andorra 39003.5392 2019 2022-09-16
## 63 AE United Arab Emirates NA 2021 2022-09-16
## 64 AE United Arab Emirates 37497.5807 2020 2022-09-16
## 65 AE United Arab Emirates 40438.3257 2019 2022-09-16
## 66 AE United Arab Emirates 39670.9190 2018 2022-09-16
## 67 AE United Arab Emirates 39798.5091 2017 2022-09-16
## 68 AE United Arab Emirates 39400.0053 2016 2022-09-16
## 69 AE United Arab Emirates 38663.3883 2015 2022-09-16
## 70 AE United Arab Emirates 36995.6900 2014 2022-09-16
## 71 AE United Arab Emirates 35495.7540 2013 2022-09-16
## 72 AE United Arab Emirates 33996.5281 2012 2022-09-16
## 73 AE United Arab Emirates 33246.1301 2011 2022-09-16
## 74 AE United Arab Emirates 32534.8072 2010 2022-09-16
## 75 AE United Arab Emirates 34580.2023 2009 2022-09-16
## 76 AE United Arab Emirates 40755.0989 2008 2022-09-16
## 77 AE United Arab Emirates 45388.6673 2007 2022-09-16
## 78 AE United Arab Emirates 51197.3396 2006 2022-09-16
## 79 AE United Arab Emirates 53844.7058 2005 2022-09-16
## 80 AE United Arab Emirates 57910.2130 2004 2022-09-16
## 81 AE United Arab Emirates 57932.2331 2003 2022-09-16
## 82 AE United Arab Emirates 56815.0664 2002 2022-09-16
## 83 AE United Arab Emirates 58421.8441 2001 2022-09-16
## 84 AE United Arab Emirates 60716.2539 2000 2022-09-16
## 85 AE United Arab Emirates 57875.0740 1999 2022-09-16
## 86 AE United Arab Emirates 59297.9207 1998 2022-09-16
## 87 AE United Arab Emirates 62264.9131 1997 2022-09-16
## 88 AE United Arab Emirates 60548.5642 1996 2022-09-16
## 89 AE United Arab Emirates 60169.0552 1995 2022-09-16
## 90 AE United Arab Emirates 59364.6946 1994 2022-09-16
## 91 AE United Arab Emirates 58633.2887 1993 2022-09-16
## 92 AE United Arab Emirates 61294.5453 1992 2022-09-16
## 93 AE United Arab Emirates 62854.0726 1991 2022-09-16
## 94 AE United Arab Emirates 66023.6263 1990 2022-09-16
## 95 AE United Arab Emirates 59119.7576 1989 2022-09-16
## 96 AE United Arab Emirates 55816.1572 1988 2022-09-16
## 97 AE United Arab Emirates 60813.4793 1987 2022-09-16
## 98 AE United Arab Emirates 62368.0166 1986 2022-09-16
## 99 AE United Arab Emirates 77644.4145 1985 2022-09-16
## 100 AE United Arab Emirates 85032.9507 1984 2022-09-16
## 101 AE United Arab Emirates 86108.7683 1983 2022-09-16
## 102 AE United Arab Emirates 95337.9852 1982 2022-09-16
## 103 AE United Arab Emirates 108563.1766 1981 2022-09-16
## 104 AE United Arab Emirates 111574.2690 1980 2022-09-16
## 105 AE United Arab Emirates 98553.2726 1979 2022-09-16
## 106 AE United Arab Emirates 90889.7686 1978 2022-09-16
## 107 AE United Arab Emirates 104936.6281 1977 2022-09-16
## 108 AE United Arab Emirates 99606.9779 1976 2022-09-16
## 109 AE United Arab Emirates 99453.4265 1975 2022-09-16
## 110 AE United Arab Emirates NA 1974 2022-09-16
## 111 AE United Arab Emirates NA 1973 2022-09-16
## 112 AE United Arab Emirates NA 1972 2022-09-16
## 113 AE United Arab Emirates NA 1971 2022-09-16
## 114 AE United Arab Emirates NA 1970 2022-09-16
## 115 AE United Arab Emirates NA 1969 2022-09-16
## 116 AE United Arab Emirates NA 1968 2022-09-16
## 117 AE United Arab Emirates NA 1967 2022-09-16
## 118 AE United Arab Emirates NA 1966 2022-09-16
## 119 AE United Arab Emirates NA 1965 2022-09-16
## 120 AE United Arab Emirates NA 1964 2022-09-16
## 121 AE United Arab Emirates NA 1963 2022-09-16
## 122 AE United Arab Emirates NA 1962 2022-09-16
## 123 AE United Arab Emirates NA 1961 2022-09-16
## 124 AE United Arab Emirates NA 1960 2022-09-16
## 125 AF Afghanistan 556.0072 2015 2022-09-16
## 126 AF Afghanistan 511.9985 2011 2022-09-16
## 127 AF Afghanistan 565.1793 2014 2022-09-16
## 128 AF Afghanistan 568.9645 2013 2022-09-16
## 129 AF Afghanistan 557.9497 2012 2022-09-16
## 130 AF Afghanistan 392.7105 2007 2022-09-16
## 131 AF Afghanistan 526.1037 2010 2022-09-16
## 132 AF Afghanistan 472.8423 2009 2022-09-16
## 133 AF Afghanistan 398.9711 2008 2022-09-16
## 134 AF Afghanistan 332.2200 2003 2022-09-16
## 135 AF Afghanistan 319.8471 2002 2022-09-16
## 136 AF Afghanistan NA 2001 2022-09-16
## 137 AF Afghanistan NA 2000 2022-09-16
## 138 AF Afghanistan NA 1999 2022-09-16
## 139 AF Afghanistan NA 1998 2022-09-16
## 140 AF Afghanistan NA 1997 2022-09-16
## 141 AF Afghanistan NA 1996 2022-09-16
## 142 AF Afghanistan NA 1995 2022-09-16
## 143 AF Afghanistan NA 1994 2022-09-16
## 144 AF Afghanistan 353.7206 2006 2022-09-16
## 145 AF Afghanistan 345.9258 2005 2022-09-16
## 146 AF Afghanistan 322.6680 2004 2022-09-16
## 147 AF Afghanistan NA 1977 2022-09-16
## 148 AF Afghanistan NA 1976 2022-09-16
## 149 AF Afghanistan NA 1975 2022-09-16
## 150 AF Afghanistan NA 1974 2022-09-16
## 151 AF Afghanistan NA 1973 2022-09-16
## 152 AF Afghanistan NA 1972 2022-09-16
## 153 AF Afghanistan NA 1971 2022-09-16
## 154 AF Afghanistan NA 1970 2022-09-16
## 155 AF Afghanistan NA 1969 2022-09-16
## 156 AF Afghanistan NA 1968 2022-09-16
## 157 AF Afghanistan NA 1967 2022-09-16
## 158 AF Afghanistan NA 1966 2022-09-16
## 159 AF Afghanistan NA 1965 2022-09-16
## 160 AF Afghanistan NA 1964 2022-09-16
## 161 AF Afghanistan NA 1963 2022-09-16
## 162 AF Afghanistan NA 1962 2022-09-16
## 163 AF Afghanistan NA 1961 2022-09-16
## 164 AF Afghanistan NA 1960 2022-09-16
## 165 AF Afghanistan NA 1986 2022-09-16
## 166 AF Afghanistan NA 1985 2022-09-16
## 167 AF Afghanistan NA 1984 2022-09-16
## 168 AF Afghanistan NA 1983 2022-09-16
## 169 AF Afghanistan NA 1982 2022-09-16
## 170 AF Afghanistan NA 1981 2022-09-16
## 171 AF Afghanistan NA 1993 2022-09-16
## 172 AF Afghanistan NA 1992 2022-09-16
## 173 AF Afghanistan NA 1991 2022-09-16
## 174 AF Afghanistan NA 1990 2022-09-16
## 175 AF Afghanistan NA 1989 2022-09-16
## 176 AF Afghanistan NA 1988 2022-09-16
## 177 AF Afghanistan NA 1987 2022-09-16
## 178 AF Afghanistan 553.3551 2017 2022-09-16
## 179 AF Afghanistan 552.9969 2016 2022-09-16
## 180 AF Afghanistan NA 1980 2022-09-16
## 181 AF Afghanistan NA 1979 2022-09-16
## 182 AF Afghanistan NA 1978 2022-09-16
## 183 AF Afghanistan NA 2021 2022-09-16
## 184 AF Afghanistan 529.7412 2020 2022-09-16
## 185 AF Afghanistan 555.1390 2019 2022-09-16
## 186 AF Afghanistan 546.7430 2018 2022-09-16
## 187 AG Antigua and Barbuda 16786.4474 2019 2022-09-16
## 188 AG Antigua and Barbuda 14285.3298 2015 2022-09-16
## 189 AG Antigua and Barbuda 16146.5927 2018 2022-09-16
## 190 AG Antigua and Barbuda 15242.3731 2017 2022-09-16
## 191 AG Antigua and Barbuda 14919.2060 2016 2022-09-16
## 192 AG Antigua and Barbuda 13285.6447 2020 2022-09-16
## 193 AG Antigua and Barbuda 16785.7470 2006 2022-09-16
## 194 AG Antigua and Barbuda 15122.1856 2005 2022-09-16
## 195 AG Antigua and Barbuda 14399.8207 2004 2022-09-16
## 196 AG Antigua and Barbuda 13792.5009 2003 2022-09-16
## 197 AG Antigua and Barbuda 13170.6260 2002 2022-09-16
## 198 AG Antigua and Barbuda 13908.9916 2014 2022-09-16
## 199 AG Antigua and Barbuda 13554.4014 2013 2022-09-16
## 200 AG Antigua and Barbuda 13802.7075 2012 2022-09-16
## 201 AG Antigua and Barbuda 13525.4449 2011 2022-09-16
## 202 AG Antigua and Barbuda 13986.8409 2010 2022-09-16
## 203 AG Antigua and Barbuda 15401.9686 2009 2022-09-16
## 204 AG Antigua and Barbuda 17771.1932 2008 2022-09-16
## 205 AG Antigua and Barbuda 18062.4657 2007 2022-09-16
## 206 AG Antigua and Barbuda 6830.3986 1980 2022-09-16
## 207 AG Antigua and Barbuda 6306.1351 1979 2022-09-16
## 208 AG Antigua and Barbuda 5826.2412 1978 2022-09-16
## 209 AG Antigua and Barbuda 5570.4320 1977 2022-09-16
## 210 AG Antigua and Barbuda NA 1976 2022-09-16
## 211 AG Antigua and Barbuda NA 1975 2022-09-16
## 212 AG Antigua and Barbuda NA 1974 2022-09-16
## 213 AG Antigua and Barbuda NA 1973 2022-09-16
## 214 AG Antigua and Barbuda NA 1972 2022-09-16
## 215 AG Antigua and Barbuda NA 1971 2022-09-16
## 216 AG Antigua and Barbuda NA 1970 2022-09-16
## 217 AG Antigua and Barbuda NA 1969 2022-09-16
## 218 AG Antigua and Barbuda NA 1968 2022-09-16
## 219 AG Antigua and Barbuda NA 1967 2022-09-16
## 220 AG Antigua and Barbuda NA 1966 2022-09-16
## 221 AG Antigua and Barbuda NA 1965 2022-09-16
## 222 AG Antigua and Barbuda NA 1964 2022-09-16
## 223 AG Antigua and Barbuda NA 1963 2022-09-16
## 224 AG Antigua and Barbuda NA 1962 2022-09-16
## 225 AG Antigua and Barbuda 13220.0448 2001 2022-09-16
## 226 AG Antigua and Barbuda 14069.5148 2000 2022-09-16
## 227 AG Antigua and Barbuda 13484.1865 1999 2022-09-16
## 228 AG Antigua and Barbuda 13260.4943 1998 2022-09-16
## 229 AG Antigua and Barbuda 12928.4418 1997 2022-09-16
## 230 AG Antigua and Barbuda 12525.1679 1996 2022-09-16
## 231 AG Antigua and Barbuda 12006.5186 1995 2022-09-16
## 232 AG Antigua and Barbuda 12828.6104 1994 2022-09-16
## 233 AG Antigua and Barbuda 12286.0333 1993 2022-09-16
## 234 AG Antigua and Barbuda 11908.4932 1992 2022-09-16
## 235 AG Antigua and Barbuda 11975.7403 1991 2022-09-16
## 236 AG Antigua and Barbuda 11876.1994 1990 2022-09-16
## 237 AG Antigua and Barbuda 11626.7788 1989 2022-09-16
## 238 AG Antigua and Barbuda 11091.1203 1988 2022-09-16
## 239 AG Antigua and Barbuda 10549.2467 1987 2022-09-16
## 240 AG Antigua and Barbuda 9887.0879 1986 2022-09-16
## 241 AG Antigua and Barbuda 8863.3849 1985 2022-09-16
## 242 AG Antigua and Barbuda 8234.1286 1984 2022-09-16
## 243 AG Antigua and Barbuda 7474.9651 1983 2022-09-16
## 244 AG Antigua and Barbuda 7094.3045 1982 2022-09-16
## 245 AG Antigua and Barbuda 7099.2353 1981 2022-09-16
## 246 AG Antigua and Barbuda 13872.5822 2021 2022-09-16
## 247 AG Antigua and Barbuda NA 1961 2022-09-16
## 248 AG Antigua and Barbuda NA 1960 2022-09-16
## 249 AL Albania 4090.3717 2016 2022-09-16
## 250 AL Albania 4543.3865 2019 2022-09-16
## 251 AL Albania 4431.5392 2018 2022-09-16
## 252 AL Albania 4249.8037 2017 2022-09-16
## 253 AL Albania 4831.8687 2021 2022-09-16
## 254 AL Albania 4410.4552 2020 2022-09-16
## 255 AL Albania 1305.0007 1994 2022-09-16
## 256 AL Albania 1197.5806 1993 2022-09-16
## 257 AL Albania 1086.4385 1992 2022-09-16
## 258 AL Albania 1163.4913 1991 2022-09-16
## 259 AL Albania 1606.2960 1990 2022-09-16
## 260 AL Albania 1808.6456 1989 2022-09-16
## 261 AL Albania 1691.5305 1988 2022-09-16
## 262 AL Albania 1748.5783 1987 2022-09-16
## 263 AL Albania 1798.0146 1986 2022-09-16
## 264 AL Albania 1735.2899 1985 2022-09-16
## 265 AL Albania 1740.3472 1984 2022-09-16
## 266 AL Albania 1799.8781 1983 2022-09-16
## 267 AL Albania 1818.3673 1982 2022-09-16
## 268 AL Albania 1804.0103 1981 2022-09-16
## 269 AL Albania 1740.5054 1980 2022-09-16
## 270 AL Albania NA 1979 2022-09-16
## 271 AL Albania NA 1978 2022-09-16
## 272 AL Albania NA 1977 2022-09-16
## 273 AL Albania NA 1976 2022-09-16
## 274 AL Albania 3952.8025 2015 2022-09-16
## 275 AL Albania 3855.7597 2014 2022-09-16
## 276 AL Albania 3780.6982 2013 2022-09-16
## 277 AL Albania 3736.3391 2012 2022-09-16
## 278 AL Albania 3678.0467 2011 2022-09-16
## 279 AL Albania 3577.1134 2010 2022-09-16
## 280 AL Albania 3432.1700 2009 2022-09-16
## 281 AL Albania 3298.4780 2008 2022-09-16
## 282 AL Albania 3044.8958 2007 2022-09-16
## 283 AL Albania 2851.3670 2006 2022-09-16
## 284 AL Albania 2675.5079 2005 2022-09-16
## 285 AL Albania 2522.4487 2004 2022-09-16
## 286 AL Albania 2380.6440 2003 2022-09-16
## 287 AL Albania 2247.4975 2002 2022-09-16
## 288 AL Albania 2143.5263 2001 2022-09-16
## 289 AL Albania 1960.8819 2000 2022-09-16
## 290 AL Albania 1821.8727 1999 2022-09-16
## 291 AL Albania 1603.6472 1998 2022-09-16
## 292 AL Albania 1464.2976 1997 2022-09-16
## 293 AL Albania 1633.5516 1996 2022-09-16
## 294 AL Albania 1488.0205 1995 2022-09-16
## 295 AL Albania NA 1968 2022-09-16
## 296 AL Albania NA 1967 2022-09-16
## 297 AL Albania NA 1966 2022-09-16
## 298 AL Albania NA 1965 2022-09-16
## 299 AL Albania NA 1964 2022-09-16
## 300 AL Albania NA 1963 2022-09-16
## 301 AL Albania NA 1975 2022-09-16
## 302 AL Albania NA 1974 2022-09-16
## 303 AL Albania NA 1973 2022-09-16
## 304 AL Albania NA 1972 2022-09-16
## 305 AL Albania NA 1971 2022-09-16
## 306 AL Albania NA 1970 2022-09-16
## 307 AL Albania NA 1969 2022-09-16
## 308 AL Albania NA 1960 2022-09-16
## 309 AL Albania NA 1962 2022-09-16
## 310 AL Albania NA 1961 2022-09-16
## 311 AM Armenia 4021.0463 2020 2022-09-16
## 312 AM Armenia 4350.4662 2019 2022-09-16
## 313 AM Armenia 4051.3850 2018 2022-09-16
## 314 AM Armenia 4243.2379 2021 2022-09-16
## 315 AM Armenia 3335.2442 2008 2022-09-16
## 316 AM Armenia 3093.3693 2007 2022-09-16
## 317 AM Armenia 2697.0190 2006 2022-09-16
## 318 AM Armenia 2364.1759 2005 2022-09-16
## 319 AM Armenia 3860.2181 2017 2022-09-16
## 320 AM Armenia 3601.4697 2016 2022-09-16
## 321 AM Armenia 3607.2893 2015 2022-09-16
## 322 AM Armenia 3511.2251 2014 2022-09-16
## 323 AM Armenia 3406.5361 2013 2022-09-16
## 324 AM Armenia 3312.9800 2012 2022-09-16
## 325 AM Armenia 3098.7423 2011 2022-09-16
## 326 AM Armenia 2958.8390 2010 2022-09-16
## 327 AM Armenia 2884.3395 2009 2022-09-16
## 328 AM Armenia NA 1982 2022-09-16
## 329 AM Armenia NA 1981 2022-09-16
## 330 AM Armenia NA 1980 2022-09-16
## 331 AM Armenia NA 1979 2022-09-16
## 332 AM Armenia NA 1978 2022-09-16
## 333 AM Armenia NA 1977 2022-09-16
## 334 AM Armenia NA 1976 2022-09-16
## 335 AM Armenia NA 1975 2022-09-16
## 336 AM Armenia NA 1974 2022-09-16
## 337 AM Armenia NA 1973 2022-09-16
## 338 AM Armenia NA 1972 2022-09-16
## 339 AM Armenia NA 1971 2022-09-16
## 340 AM Armenia NA 1970 2022-09-16
## 341 AM Armenia NA 1969 2022-09-16
## 342 AM Armenia NA 1968 2022-09-16
## 343 AM Armenia NA 1967 2022-09-16
## 344 AM Armenia NA 1966 2022-09-16
## 345 AM Armenia NA 1965 2022-09-16
## 346 AM Armenia 2062.2032 2004 2022-09-16
## 347 AM Armenia 1855.5968 2003 2022-09-16
## 348 AM Armenia 1619.1122 2002 2022-09-16
## 349 AM Armenia 1422.4767 2001 2022-09-16
## 350 AM Armenia 1289.8843 2000 2022-09-16
## 351 AM Armenia 1210.3624 1999 2022-09-16
## 352 AM Armenia 1164.2822 1998 2022-09-16
## 353 AM Armenia 1076.6250 1997 2022-09-16
## 354 AM Armenia 1030.4639 1996 2022-09-16
## 355 AM Armenia 958.5062 1995 2022-09-16
## 356 AM Armenia 878.5302 1994 2022-09-16
## 357 AM Armenia 813.8298 1993 2022-09-16
## 358 AM Armenia 871.6972 1992 2022-09-16
## 359 AM Armenia 1471.0862 1991 2022-09-16
## 360 AM Armenia 1650.5106 1990 2022-09-16
## 361 AM Armenia NA 1989 2022-09-16
## 362 AM Armenia NA 1988 2022-09-16
## 363 AM Armenia NA 1987 2022-09-16
## 364 AM Armenia NA 1986 2022-09-16
## 365 AM Armenia NA 1985 2022-09-16
## 366 AM Armenia NA 1984 2022-09-16
## 367 AM Armenia NA 1983 2022-09-16
## 368 AM Armenia NA 1962 2022-09-16
## 369 AM Armenia NA 1961 2022-09-16
## 370 AM Armenia NA 1964 2022-09-16
## 371 AM Armenia NA 1963 2022-09-16
## 372 AM Armenia NA 1960 2022-09-16
## 373 AO Angola NA 1960 2022-09-16
## 374 AO Angola 1832.3557 2000 2022-09-16
## 375 AO Angola 1837.2788 1999 2022-09-16
## 376 AO Angola 1857.4376 1998 2022-09-16
## 377 AO Angola 1832.4296 1997 2022-09-16
## 378 AO Angola 1764.0233 1996 2022-09-16
## 379 AO Angola 1604.3461 1995 2022-09-16
## 380 AO Angola 1440.6904 1994 2022-09-16
## 381 AO Angola 1468.2628 1993 2022-09-16
## 382 AO Angola 1995.2414 1992 2022-09-16
## 383 AO Angola 2189.6118 1991 2022-09-16
## 384 AO Angola 2241.4077 1990 2022-09-16
## 385 AO Angola 2401.2716 1989 2022-09-16
## 386 AO Angola 2484.1414 1988 2022-09-16
## 387 AO Angola 2423.6323 1987 2022-09-16
## 388 AO Angola 2411.8512 1986 2022-09-16
## 389 AO Angola 2428.1386 1985 2022-09-16
## 390 AO Angola 2430.7545 1984 2022-09-16
## 391 AO Angola 2376.3710 1983 2022-09-16
## 392 AO Angola 2363.4074 1982 2022-09-16
## 393 AO Angola 2331.4954 2021 2022-09-16
## 394 AO Angola 2390.4781 2020 2022-09-16
## 395 AO Angola 2612.3470 2019 2022-09-16
## 396 AO Angola 2717.4741 2018 2022-09-16
## 397 AO Angola 2845.4317 2017 2022-09-16
## 398 AO Angola 2945.9681 2016 2022-09-16
## 399 AO Angola 3127.8906 2015 2022-09-16
## 400 AO Angola 3207.1781 2014 2022-09-16
## 401 AO Angola 3168.6053 2013 2022-09-16
## 402 AO Angola 3128.3247 2012 2022-09-16
## 403 AO Angola 2987.7679 2011 2022-09-16
## 404 AO Angola 2994.4380 2010 2022-09-16
## 405 AO Angola 2962.4468 2009 2022-09-16
## 406 AO Angola 3048.0156 2008 2022-09-16
## 407 AO Angola 2845.4064 2007 2022-09-16
## 408 AO Angola 2589.3217 2006 2022-09-16
## 409 AO Angola 2406.7783 2005 2022-09-16
## 410 AO Angola 2167.6472 2004 2022-09-16
## 411 AO Angola 2022.3551 2003 2022-09-16
## 412 AO Angola 2031.1233 2002 2022-09-16
## 413 AO Angola 1847.4202 2001 2022-09-16
## 414 AO Angola NA 1974 2022-09-16
## 415 AO Angola NA 1973 2022-09-16
## 416 AO Angola NA 1972 2022-09-16
## 417 AO Angola NA 1971 2022-09-16
## 418 AO Angola NA 1970 2022-09-16
## 419 AO Angola NA 1969 2022-09-16
## 420 AO Angola 2448.8828 1981 2022-09-16
## 421 AO Angola 2653.4729 1980 2022-09-16
## 422 AO Angola NA 1979 2022-09-16
## 423 AO Angola NA 1978 2022-09-16
## 424 AO Angola NA 1977 2022-09-16
## 425 AO Angola NA 1976 2022-09-16
## 426 AO Angola NA 1975 2022-09-16
## 427 AO Angola NA 1961 2022-09-16
## 428 AO Angola NA 1965 2022-09-16
## 429 AO Angola NA 1968 2022-09-16
## 430 AO Angola NA 1967 2022-09-16
## 431 AO Angola NA 1966 2022-09-16
## 432 AO Angola NA 1964 2022-09-16
## 433 AO Angola NA 1963 2022-09-16
## 434 AO Angola NA 1962 2022-09-16
## 435 AR Argentina 7637.0667 1961 2022-09-16
## 436 AR Argentina 7362.5341 1960 2022-09-16
## 437 AR Argentina 11445.5649 1998 2022-09-16
## 438 AR Argentina 11146.7210 1997 2022-09-16
## 439 AR Argentina 10730.6082 2000 2022-09-16
## 440 AR Argentina 10935.6446 1999 2022-09-16
## 441 AR Argentina 10423.3789 1994 2022-09-16
## 442 AR Argentina 9974.0044 1993 2022-09-16
## 443 AR Argentina 9338.6995 1992 2022-09-16
## 444 AR Argentina 8769.7504 1991 2022-09-16
## 445 AR Argentina 8149.2406 1990 2022-09-16
## 446 AR Argentina 8477.6729 1989 2022-09-16
## 447 AR Argentina 9269.3558 1988 2022-09-16
## 448 AR Argentina 9517.1086 1987 2022-09-16
## 449 AR Argentina 9412.9948 1986 2022-09-16
## 450 AR Argentina 9009.0017 1985 2022-09-16
## 451 AR Argentina 9655.1836 1984 2022-09-16
## 452 AR Argentina 10430.6825 1996 2022-09-16
## 453 AR Argentina 10003.0917 1995 2022-09-16
## 454 AR Argentina 12390.8087 2021 2022-09-16
## 455 AR Argentina 11344.4057 2020 2022-09-16
## 456 AR Argentina 12712.9707 2019 2022-09-16
## 457 AR Argentina 13105.3972 2018 2022-09-16
## 458 AR Argentina 13595.0374 2017 2022-09-16
## 459 AR Argentina 13360.2118 2016 2022-09-16
## 460 AR Argentina 13789.0604 2015 2022-09-16
## 461 AR Argentina 13567.9484 2014 2022-09-16
## 462 AR Argentina 14071.5087 2013 2022-09-16
## 463 AR Argentina 13895.6337 2012 2022-09-16
## 464 AR Argentina 14200.2699 2011 2022-09-16
## 465 AR Argentina 13551.3392 2010 2022-09-16
## 466 AR Argentina 12398.2836 2009 2022-09-16
## 467 AR Argentina 13310.6237 2008 2022-09-16
## 468 AR Argentina 12919.2354 2007 2022-09-16
## 469 AR Argentina 11970.6554 2006 2022-09-16
## 470 AR Argentina 11192.1796 2005 2022-09-16
## 471 AR Argentina 10389.1513 2004 2022-09-16
## 472 AR Argentina 9629.8441 2003 2022-09-16
## 473 AR Argentina 8943.3080 2002 2022-09-16
## 474 AR Argentina 10146.1068 2001 2022-09-16
## 475 AR Argentina 10100.0685 1974 2022-09-16
## 476 AR Argentina 9725.4670 1973 2022-09-16
## 477 AR Argentina 9614.2379 1972 2022-09-16
## 478 AR Argentina 9613.6769 1971 2022-09-16
## 479 AR Argentina 9660.1921 1983 2022-09-16
## 480 AR Argentina 9407.8746 1982 2022-09-16
## 481 AR Argentina 9630.1152 1981 2022-09-16
## 482 AR Argentina 10318.1830 1980 2022-09-16
## 483 AR Argentina 10321.2391 1979 2022-09-16
## 484 AR Argentina 9505.8562 1978 2022-09-16
## 485 AR Argentina 10103.6274 1977 2022-09-16
## 486 AR Argentina 9591.1720 1976 2022-09-16
## 487 AR Argentina 9939.6966 1975 2022-09-16
## 488 AR Argentina 9243.2566 1970 2022-09-16
## 489 AR Argentina 9108.4969 1969 2022-09-16
## 490 AR Argentina 8429.8689 1968 2022-09-16
## 491 AR Argentina 8161.6021 1967 2022-09-16
## 492 AR Argentina 8026.8762 1966 2022-09-16
## 493 AR Argentina 8202.1125 1965 2022-09-16
## 494 AR Argentina 7532.0045 1964 2022-09-16
## 495 AR Argentina 6945.9571 1963 2022-09-16
## 496 AR Argentina 7451.8034 1962 2022-09-16
## 497 AS American Samoa NA 2021 2022-09-16
## 498 AS American Samoa 11839.0105 2020 2022-09-16
## 499 AS American Samoa 11368.5696 2019 2022-09-16
## 500 AS American Samoa NA 1997 2022-09-16
## 501 AS American Samoa NA 1996 2022-09-16
## 502 AS American Samoa NA 1995 2022-09-16
## 503 AS American Samoa NA 1994 2022-09-16
## 504 AS American Samoa NA 1993 2022-09-16
## 505 AS American Samoa NA 1992 2022-09-16
## 506 AS American Samoa NA 1991 2022-09-16
## 507 AS American Samoa NA 1990 2022-09-16
## 508 AS American Samoa NA 1989 2022-09-16
## 509 AS American Samoa NA 1988 2022-09-16
## 510 AS American Samoa NA 1987 2022-09-16
## 511 AS American Samoa NA 1986 2022-09-16
## 512 AS American Samoa NA 1985 2022-09-16
## 513 AS American Samoa NA 1984 2022-09-16
## 514 AS American Samoa NA 1983 2022-09-16
## 515 AS American Samoa NA 1982 2022-09-16
## 516 AS American Samoa NA 1981 2022-09-16
## 517 AS American Samoa NA 1980 2022-09-16
## 518 AS American Samoa NA 1979 2022-09-16
## 519 AS American Samoa 11393.6057 2018 2022-09-16
## 520 AS American Samoa 11066.0602 2017 2022-09-16
## 521 AS American Samoa 11871.3595 2016 2022-09-16
## 522 AS American Samoa 12059.6352 2015 2022-09-16
## 523 AS American Samoa 11694.5454 2014 2022-09-16
## 524 AS American Samoa 11507.2257 2013 2022-09-16
## 525 AS American Samoa 11812.4591 2012 2022-09-16
## 526 AS American Samoa 12328.6653 2011 2022-09-16
## 527 AS American Samoa 12256.3429 2010 2022-09-16
## 528 AS American Samoa 12092.2765 2009 2022-09-16
## 529 AS American Samoa 12439.1497 2008 2022-09-16
## 530 AS American Samoa 12586.7160 2007 2022-09-16
## 531 AS American Samoa 12202.7374 2006 2022-09-16
## 532 AS American Samoa 12628.5077 2005 2022-09-16
## 533 AS American Samoa 12653.2818 2004 2022-09-16
## 534 AS American Samoa 12641.6679 2003 2022-09-16
## 535 AS American Samoa 12609.3685 2002 2022-09-16
## 536 AS American Samoa NA 2001 2022-09-16
## 537 AS American Samoa NA 2000 2022-09-16
## 538 AS American Samoa NA 1999 2022-09-16
## 539 AS American Samoa NA 1998 2022-09-16
## 540 AS American Samoa NA 1971 2022-09-16
## 541 AS American Samoa NA 1970 2022-09-16
## 542 AS American Samoa NA 1969 2022-09-16
## 543 AS American Samoa NA 1968 2022-09-16
## 544 AS American Samoa NA 1967 2022-09-16
## 545 AS American Samoa NA 1966 2022-09-16
## 546 AS American Samoa NA 1978 2022-09-16
## 547 AS American Samoa NA 1977 2022-09-16
## 548 AS American Samoa NA 1976 2022-09-16
## 549 AS American Samoa NA 1975 2022-09-16
## 550 AS American Samoa NA 1974 2022-09-16
## 551 AS American Samoa NA 1973 2022-09-16
## 552 AS American Samoa NA 1972 2022-09-16
## 553 AS American Samoa NA 1963 2022-09-16
## 554 AS American Samoa NA 1962 2022-09-16
## 555 AS American Samoa NA 1965 2022-09-16
## 556 AS American Samoa NA 1964 2022-09-16
## 557 AS American Samoa NA 1961 2022-09-16
## 558 AS American Samoa NA 1960 2022-09-16
## 559 AT Austria 14471.8213 1965 2022-09-16
## 560 AT Austria 12904.6699 1962 2022-09-16
## 561 AT Austria 12648.9747 1961 2022-09-16
## 562 AT Austria 14076.2762 1964 2022-09-16
## 563 AT Austria 13352.6511 1963 2022-09-16
## 564 AT Austria 15521.8096 1967 2022-09-16
## 565 AT Austria 15181.5888 1966 2022-09-16
## 566 AT Austria 32962.8174 1994 2022-09-16
## 567 AT Austria 32313.7119 1993 2022-09-16
## 568 AT Austria 32410.5398 1992 2022-09-16
## 569 AT Austria 32097.2411 1991 2022-09-16
## 570 AT Austria 31340.6813 1990 2022-09-16
## 571 AT Austria 12051.1512 1960 2022-09-16
## 572 AT Austria 39184.8086 2001 2022-09-16
## 573 AT Austria 38842.8905 2000 2022-09-16
## 574 AT Austria 37664.9433 1999 2022-09-16
## 575 AT Austria 36442.2882 1998 2022-09-16
## 576 AT Austria 35220.8877 1997 2022-09-16
## 577 AT Austria 34537.7396 1996 2022-09-16
## 578 AT Austria 33790.4850 1995 2022-09-16
## 579 AT Austria 45090.7589 2021 2022-09-16
## 580 AT Austria 43346.4318 2020 2022-09-16
## 581 AT Austria 46669.7512 2019 2022-09-16
## 582 AT Austria 46188.9665 2018 2022-09-16
## 583 AT Austria 45281.7234 2017 2022-09-16
## 584 AT Austria 44590.2516 2016 2022-09-16
## 585 AT Austria 44195.8176 2015 2022-09-16
## 586 AT Austria 44245.1687 2014 2022-09-16
## 587 AT Austria 44299.3782 2013 2022-09-16
## 588 AT Austria 44549.8817 2012 2022-09-16
## 589 AT Austria 44451.0002 2011 2022-09-16
## 590 AT Austria 43334.5090 2010 2022-09-16
## 591 AT Austria 42655.1921 2009 2022-09-16
## 592 AT Austria 44440.0559 2008 2022-09-16
## 593 AT Austria 43937.7129 2007 2022-09-16
## 594 AT Austria 42496.3511 2006 2022-09-16
## 595 AT Austria 41281.2708 2005 2022-09-16
## 596 AT Austria 40651.2266 2004 2022-09-16
## 597 AT Austria 39815.2220 2003 2022-09-16
## 598 AT Austria 39636.4826 2002 2022-09-16
## 599 AT Austria 29264.3236 1988 2022-09-16
## 600 AT Austria 28370.7179 1987 2022-09-16
## 601 AT Austria 28008.5546 1986 2022-09-16
## 602 AT Austria 27395.8726 1985 2022-09-16
## 603 AT Austria 26740.5772 1984 2022-09-16
## 604 AT Austria 26725.1907 1983 2022-09-16
## 605 AT Austria 25911.6609 1982 2022-09-16
## 606 AT Austria 25419.0096 1981 2022-09-16
## 607 AT Austria 25520.7406 1980 2022-09-16
## 608 AT Austria 25086.4002 1979 2022-09-16
## 609 AT Austria 23770.3662 1978 2022-09-16
## 610 AT Austria 23801.2675 1977 2022-09-16
## 611 AT Austria 30265.1932 1989 2022-09-16
## 612 AT Austria 21629.0463 1975 2022-09-16
## 613 AT Austria 21650.4868 1974 2022-09-16
## 614 AT Austria 20864.8475 1973 2022-09-16
## 615 AT Austria 20002.5561 1972 2022-09-16
## 616 AT Austria 18943.1811 1971 2022-09-16
## 617 AT Austria 18101.9919 1970 2022-09-16
## 618 AT Austria 17085.3300 1969 2022-09-16
## 619 AT Austria 16132.0095 1968 2022-09-16
## 620 AT Austria 22659.3178 1976 2022-09-16
## 621 AU Australia 58780.3331 2021 2022-09-16
## 622 AU Australia 54108.1111 2011 2022-09-16
## 623 AU Australia 53542.8337 2010 2022-09-16
## 624 AU Australia 53225.9510 2009 2022-09-16
## 625 AU Australia 53338.6028 2008 2022-09-16
## 626 AU Australia 58029.5155 2020 2022-09-16
## 627 AU Australia 58781.0467 2019 2022-09-16
## 628 AU Australia 58447.2527 2018 2022-09-16
## 629 AU Australia 57695.5713 2017 2022-09-16
## 630 AU Australia 57358.7828 2016 2022-09-16
## 631 AU Australia 56707.0221 2015 2022-09-16
## 632 AU Australia 56305.9791 2014 2022-09-16
## 633 AU Australia 55723.9482 2013 2022-09-16
## 634 AU Australia 55254.6062 2012 2022-09-16
## 635 AU Australia 32995.1381 1985 2022-09-16
## 636 AU Australia 31780.2585 1984 2022-09-16
## 637 AU Australia 30729.8076 1983 2022-09-16
## 638 AU Australia 31823.6227 1982 2022-09-16
## 639 AU Australia 31318.0837 1981 2022-09-16
## 640 AU Australia 30790.9685 1980 2022-09-16
## 641 AU Australia 30250.3701 1979 2022-09-16
## 642 AU Australia 29388.5744 1978 2022-09-16
## 643 AU Australia 29468.8425 1977 2022-09-16
## 644 AU Australia 28769.1030 1976 2022-09-16
## 645 AU Australia 28325.0161 1975 2022-09-16
## 646 AU Australia 28297.9448 1974 2022-09-16
## 647 AU Australia 27878.8169 1973 2022-09-16
## 648 AU Australia 27585.7828 1972 2022-09-16
## 649 AU Australia 27040.5103 1971 2022-09-16
## 650 AU Australia 26894.5065 1970 2022-09-16
## 651 AU Australia 25593.1264 1969 2022-09-16
## 652 AU Australia 24414.7801 1968 2022-09-16
## 653 AU Australia 52538.9756 2007 2022-09-16
## 654 AU Australia 50948.2250 2006 2022-09-16
## 655 AU Australia 50332.8748 2005 2022-09-16
## 656 AU Australia 49439.1223 2004 2022-09-16
## 657 AU Australia 47997.1371 2003 2022-09-16
## 658 AU Australia 47127.2781 2002 2022-09-16
## 659 AU Australia 45864.7680 2001 2022-09-16
## 660 AU Australia 45558.7531 2000 2022-09-16
## 661 AU Australia 44369.2728 1999 2022-09-16
## 662 AU Australia 42767.7940 1998 2022-09-16
## 663 AU Australia 41309.8260 1997 2022-09-16
## 664 AU Australia 40203.3023 1996 2022-09-16
## 665 AU Australia 39223.1608 1995 2022-09-16
## 666 AU Australia 38234.0299 1994 2022-09-16
## 667 AU Australia 37161.6791 1993 2022-09-16
## 668 AU Australia 36072.0398 1992 2022-09-16
## 669 AU Australia 36361.9423 1991 2022-09-16
## 670 AU Australia 36974.4509 1990 2022-09-16
## 671 AU Australia 36231.0162 1989 2022-09-16
## 672 AU Australia 35478.4268 1988 2022-09-16
## 673 AU Australia 34104.8306 1987 2022-09-16
## 674 AU Australia 33767.1612 1986 2022-09-16
## 675 AU Australia 20045.8437 1961 2022-09-16
## 676 AU Australia 19953.2063 1960 2022-09-16
## 677 AU Australia 21659.1521 1964 2022-09-16
## 678 AU Australia 23644.6005 1967 2022-09-16
## 679 AU Australia 22525.0520 1966 2022-09-16
## 680 AU Australia 22509.0974 1965 2022-09-16
## 681 AU Australia 20647.4859 1963 2022-09-16
## 682 AU Australia 19815.7496 1962 2022-09-16
## 683 AW Aruba NA 1964 2022-09-16
## 684 AW Aruba NA 1963 2022-09-16
## 685 AW Aruba NA 1961 2022-09-16
## 686 AW Aruba NA 1960 2022-09-16
## 687 AW Aruba 28442.5161 2000 2022-09-16
## 688 AW Aruba NA 1962 2022-09-16
## 689 AW Aruba 27298.5555 1994 2022-09-16
## 690 AW Aruba 26693.9204 1993 2022-09-16
## 691 AW Aruba 26427.1629 1992 2022-09-16
## 692 AW Aruba 26355.9613 1991 2022-09-16
## 693 AW Aruba 25382.6194 1990 2022-09-16
## 694 AW Aruba 24863.0671 1989 2022-09-16
## 695 AW Aruba 22159.3018 1988 2022-09-16
## 696 AW Aruba 18445.0562 1987 2022-09-16
## 697 AW Aruba 26980.8907 1999 2022-09-16
## 698 AW Aruba 27178.8908 1998 2022-09-16
## 699 AW Aruba 27218.7610 1997 2022-09-16
## 700 AW Aruba 26111.1313 1996 2022-09-16
## 701 AW Aruba 26732.6236 1995 2022-09-16
## 702 AW Aruba NA 2021 2022-09-16
## 703 AW Aruba 23026.3329 2020 2022-09-16
## 704 AW Aruba 29769.2939 2019 2022-09-16
## 705 AW Aruba 30536.6672 2018 2022-09-16
## 706 AW Aruba 30293.3515 2017 2022-09-16
## 707 AW Aruba 28854.7133 2016 2022-09-16
## 708 AW Aruba 28399.0501 2015 2022-09-16
## 709 AW Aruba 27575.9303 2014 2022-09-16
## 710 AW Aruba 27744.9321 2013 2022-09-16
## 711 AW Aruba 26221.2595 2012 2022-09-16
## 712 AW Aruba 26629.2995 2011 2022-09-16
## 713 AW Aruba 25859.5109 2010 2022-09-16
## 714 AW Aruba 26641.8166 2009 2022-09-16
## 715 AW Aruba 30193.1098 2008 2022-09-16
## 716 AW Aruba 29689.3416 2007 2022-09-16
## 717 AW Aruba 28910.6607 2006 2022-09-16
## 718 AW Aruba 28814.2916 2005 2022-09-16
## 719 AW Aruba 29301.7636 2004 2022-09-16
## 720 AW Aruba 27799.5774 2003 2022-09-16
## 721 AW Aruba 28077.1931 2002 2022-09-16
## 722 AW Aruba 28989.5852 2001 2022-09-16
## 723 AW Aruba NA 1974 2022-09-16
## 724 AW Aruba 15685.4677 1986 2022-09-16
## 725 AW Aruba NA 1985 2022-09-16
## 726 AW Aruba NA 1984 2022-09-16
## 727 AW Aruba NA 1983 2022-09-16
## 728 AW Aruba NA 1982 2022-09-16
## 729 AW Aruba NA 1981 2022-09-16
## 730 AW Aruba NA 1980 2022-09-16
## 731 AW Aruba NA 1979 2022-09-16
## 732 AW Aruba NA 1978 2022-09-16
## 733 AW Aruba NA 1977 2022-09-16
## 734 AW Aruba NA 1976 2022-09-16
## 735 AW Aruba NA 1975 2022-09-16
## 736 AW Aruba NA 1970 2022-09-16
## 737 AW Aruba NA 1973 2022-09-16
## 738 AW Aruba NA 1972 2022-09-16
## 739 AW Aruba NA 1971 2022-09-16
## 740 AW Aruba NA 1966 2022-09-16
## 741 AW Aruba NA 1969 2022-09-16
## 742 AW Aruba NA 1968 2022-09-16
## 743 AW Aruba NA 1967 2022-09-16
## 744 AW Aruba NA 1965 2022-09-16
## 745 AZ Azerbaijan 5194.7384 2012 2022-09-16
## 746 AZ Azerbaijan 5152.6575 2011 2022-09-16
## 747 AZ Azerbaijan 5215.0209 2010 2022-09-16
## 748 AZ Azerbaijan 5425.9053 2013 2022-09-16
## 749 AZ Azerbaijan 5340.4904 2021 2022-09-16
## 750 AZ Azerbaijan 5083.3816 2020 2022-09-16
## 751 AZ Azerbaijan 5348.2653 2019 2022-09-16
## 752 AZ Azerbaijan 5262.1838 2018 2022-09-16
## 753 AZ Azerbaijan 5229.5261 2017 2022-09-16
## 754 AZ Azerbaijan 5270.5530 2016 2022-09-16
## 755 AZ Azerbaijan 5500.3104 2015 2022-09-16
## 756 AZ Azerbaijan 5505.9882 2014 2022-09-16
## 757 AZ Azerbaijan NA 1987 2022-09-16
## 758 AZ Azerbaijan NA 1986 2022-09-16
## 759 AZ Azerbaijan NA 1985 2022-09-16
## 760 AZ Azerbaijan NA 1984 2022-09-16
## 761 AZ Azerbaijan NA 1983 2022-09-16
## 762 AZ Azerbaijan NA 1982 2022-09-16
## 763 AZ Azerbaijan NA 1981 2022-09-16
## 764 AZ Azerbaijan NA 1980 2022-09-16
## 765 AZ Azerbaijan NA 1979 2022-09-16
## 766 AZ Azerbaijan NA 1978 2022-09-16
## 767 AZ Azerbaijan NA 1977 2022-09-16
## 768 AZ Azerbaijan NA 1976 2022-09-16
## 769 AZ Azerbaijan NA 1975 2022-09-16
## 770 AZ Azerbaijan NA 1974 2022-09-16
## 771 AZ Azerbaijan NA 1973 2022-09-16
## 772 AZ Azerbaijan NA 1972 2022-09-16
## 773 AZ Azerbaijan NA 1971 2022-09-16
## 774 AZ Azerbaijan NA 1970 2022-09-16
## 775 AZ Azerbaijan 5023.7908 2009 2022-09-16
## 776 AZ Azerbaijan 4692.9122 2008 2022-09-16
## 777 AZ Azerbaijan 4326.9616 2007 2022-09-16
## 778 AZ Azerbaijan 3501.0418 2006 2022-09-16
## 779 AZ Azerbaijan 2631.7590 2005 2022-09-16
## 780 AZ Azerbaijan 2077.8123 2004 2022-09-16
## 781 AZ Azerbaijan 1918.5436 2003 2022-09-16
## 782 AZ Azerbaijan 1754.0736 2002 2022-09-16
## 783 AZ Azerbaijan 1614.7921 2001 2022-09-16
## 784 AZ Azerbaijan 1480.7567 2000 2022-09-16
## 785 AZ Azerbaijan 1343.8087 1999 2022-09-16
## 786 AZ Azerbaijan 1262.2475 1998 2022-09-16
## 787 AZ Azerbaijan 1158.4410 1997 2022-09-16
## 788 AZ Azerbaijan 1105.5484 1996 2022-09-16
## 789 AZ Azerbaijan 1102.4592 1995 2022-09-16
## 790 AZ Azerbaijan 1264.4828 1994 2022-09-16
## 791 AZ Azerbaijan 1596.0766 1993 2022-09-16
## 792 AZ Azerbaijan 2107.2227 1992 2022-09-16
## 793 AZ Azerbaijan 2763.9769 1991 2022-09-16
## 794 AZ Azerbaijan 2820.7410 1990 2022-09-16
## 795 AZ Azerbaijan NA 1989 2022-09-16
## 796 AZ Azerbaijan NA 1988 2022-09-16
## 797 AZ Azerbaijan NA 1962 2022-09-16
## 798 AZ Azerbaijan NA 1961 2022-09-16
## 799 AZ Azerbaijan NA 1960 2022-09-16
## 800 AZ Azerbaijan NA 1968 2022-09-16
## 801 AZ Azerbaijan NA 1967 2022-09-16
## 802 AZ Azerbaijan NA 1966 2022-09-16
## 803 AZ Azerbaijan NA 1969 2022-09-16
## 804 AZ Azerbaijan NA 1964 2022-09-16
## 805 AZ Azerbaijan NA 1963 2022-09-16
## 806 AZ Azerbaijan NA 1965 2022-09-16
## 807 BA Bosnia and Herzegovina 3056.5368 2002 2022-09-16
## 808 BA Bosnia and Herzegovina 2314.4349 1998 2022-09-16
## 809 BA Bosnia and Herzegovina 2913.2296 2001 2022-09-16
## 810 BA Bosnia and Herzegovina 2847.5925 2000 2022-09-16
## 811 BA Bosnia and Herzegovina 2530.5118 1999 2022-09-16
## 812 BA Bosnia and Herzegovina 619.1424 1994 2022-09-16
## 813 BA Bosnia and Herzegovina NA 1993 2022-09-16
## 814 BA Bosnia and Herzegovina NA 1992 2022-09-16
## 815 BA Bosnia and Herzegovina NA 1991 2022-09-16
## 816 BA Bosnia and Herzegovina NA 1990 2022-09-16
## 817 BA Bosnia and Herzegovina NA 1989 2022-09-16
## 818 BA Bosnia and Herzegovina NA 1988 2022-09-16
## 819 BA Bosnia and Herzegovina NA 1987 2022-09-16
## 820 BA Bosnia and Herzegovina NA 1986 2022-09-16
## 821 BA Bosnia and Herzegovina NA 1985 2022-09-16
## 822 BA Bosnia and Herzegovina 2001.1782 1997 2022-09-16
## 823 BA Bosnia and Herzegovina 1477.8734 1996 2022-09-16
## 824 BA Bosnia and Herzegovina 768.9175 1995 2022-09-16
## 825 BA Bosnia and Herzegovina 5854.6673 2021 2022-09-16
## 826 BA Bosnia and Herzegovina 5437.5102 2020 2022-09-16
## 827 BA Bosnia and Herzegovina 5578.2665 2019 2022-09-16
## 828 BA Bosnia and Herzegovina 5387.2697 2018 2022-09-16
## 829 BA Bosnia and Herzegovina 5150.2733 2017 2022-09-16
## 830 BA Bosnia and Herzegovina 4940.7599 2016 2022-09-16
## 831 BA Bosnia and Herzegovina 4729.6901 2015 2022-09-16
## 832 BA Bosnia and Herzegovina 4518.4659 2014 2022-09-16
## 833 BA Bosnia and Herzegovina 4390.6489 2013 2022-09-16
## 834 BA Bosnia and Herzegovina 4215.6199 2012 2022-09-16
## 835 BA Bosnia and Herzegovina 4185.3042 2011 2022-09-16
## 836 BA Bosnia and Herzegovina 4095.9609 2010 2022-09-16
## 837 BA Bosnia and Herzegovina 4027.6914 2009 2022-09-16
## 838 BA Bosnia and Herzegovina 4132.1913 2008 2022-09-16
## 839 BA Bosnia and Herzegovina 3909.9716 2007 2022-09-16
## 840 BA Bosnia and Herzegovina 3691.0502 2006 2022-09-16
## 841 BA Bosnia and Herzegovina 3501.5636 2005 2022-09-16
## 842 BA Bosnia and Herzegovina 3371.2390 2004 2022-09-16
## 843 BA Bosnia and Herzegovina 3172.3830 2003 2022-09-16
## 844 BA Bosnia and Herzegovina NA 1963 2022-09-16
## 845 BA Bosnia and Herzegovina NA 1962 2022-09-16
## 846 BA Bosnia and Herzegovina NA 1961 2022-09-16
## 847 BA Bosnia and Herzegovina NA 1960 2022-09-16
## 848 BA Bosnia and Herzegovina NA 1973 2022-09-16
## 849 BA Bosnia and Herzegovina NA 1972 2022-09-16
## 850 BA Bosnia and Herzegovina NA 1984 2022-09-16
## 851 BA Bosnia and Herzegovina NA 1983 2022-09-16
## 852 BA Bosnia and Herzegovina NA 1982 2022-09-16
## 853 BA Bosnia and Herzegovina NA 1981 2022-09-16
## 854 BA Bosnia and Herzegovina NA 1980 2022-09-16
## 855 BA Bosnia and Herzegovina NA 1979 2022-09-16
## 856 BA Bosnia and Herzegovina NA 1978 2022-09-16
## 857 BA Bosnia and Herzegovina NA 1977 2022-09-16
## 858 BA Bosnia and Herzegovina NA 1976 2022-09-16
## 859 BA Bosnia and Herzegovina NA 1975 2022-09-16
## 860 BA Bosnia and Herzegovina NA 1974 2022-09-16
## 861 BA Bosnia and Herzegovina NA 1969 2022-09-16
## 862 BA Bosnia and Herzegovina NA 1968 2022-09-16
## 863 BA Bosnia and Herzegovina NA 1971 2022-09-16
## 864 BA Bosnia and Herzegovina NA 1970 2022-09-16
## 865 BA Bosnia and Herzegovina NA 1965 2022-09-16
## 866 BA Bosnia and Herzegovina NA 1964 2022-09-16
## 867 BA Bosnia and Herzegovina NA 1967 2022-09-16
## 868 BA Bosnia and Herzegovina NA 1966 2022-09-16
## 869 BB Barbados 16950.3243 2016 2022-09-16
## 870 BB Barbados 16678.5495 2019 2022-09-16
## 871 BB Barbados 16803.2646 2018 2022-09-16
## 872 BB Barbados 17002.0271 2017 2022-09-16
## 873 BB Barbados 14512.7794 2021 2022-09-16
## 874 BB Barbados 14329.1899 2020 2022-09-16
## 875 BB Barbados 13594.4438 1993 2022-09-16
## 876 BB Barbados 13537.7062 1992 2022-09-16
## 877 BB Barbados 14408.4618 1991 2022-09-16
## 878 BB Barbados 15049.4351 1990 2022-09-16
## 879 BB Barbados 15622.4318 1989 2022-09-16
## 880 BB Barbados 15137.2723 1988 2022-09-16
## 881 BB Barbados 14678.9247 1987 2022-09-16
## 882 BB Barbados 14358.0093 1986 2022-09-16
## 883 BB Barbados 13706.4274 1985 2022-09-16
## 884 BB Barbados 13598.2334 1984 2022-09-16
## 885 BB Barbados 13161.8243 1983 2022-09-16
## 886 BB Barbados 13132.9301 1982 2022-09-16
## 887 BB Barbados 13852.3716 1981 2022-09-16
## 888 BB Barbados 14171.4293 1980 2022-09-16
## 889 BB Barbados 13633.9035 1979 2022-09-16
## 890 BB Barbados 12694.4332 1978 2022-09-16
## 891 BB Barbados 12165.8269 1977 2022-09-16
## 892 BB Barbados 11802.1571 1976 2022-09-16
## 893 BB Barbados 16558.8648 2015 2022-09-16
## 894 BB Barbados 16187.7870 2014 2022-09-16
## 895 BB Barbados 16232.1870 2013 2022-09-16
## 896 BB Barbados 16505.1853 2012 2022-09-16
## 897 BB Barbados 16618.5592 2011 2022-09-16
## 898 BB Barbados 16784.4206 2010 2022-09-16
## 899 BB Barbados 17253.6389 2009 2022-09-16
## 900 BB Barbados 18240.4529 2008 2022-09-16
## 901 BB Barbados 18205.4033 2007 2022-09-16
## 902 BB Barbados 17913.6595 2006 2022-09-16
## 903 BB Barbados 16952.2925 2005 2022-09-16
## 904 BB Barbados 16368.6955 2004 2022-09-16
## 905 BB Barbados 16196.8644 2003 2022-09-16
## 906 BB Barbados 15904.6494 2002 2022-09-16
## 907 BB Barbados 15834.1936 2001 2022-09-16
## 908 BB Barbados 16276.5366 2000 2022-09-16
## 909 BB Barbados 15644.3548 1999 2022-09-16
## 910 BB Barbados 15657.0712 1998 2022-09-16
## 911 BB Barbados 15159.0684 1997 2022-09-16
## 912 BB Barbados 14534.5992 1996 2022-09-16
## 913 BB Barbados 14036.1339 1995 2022-09-16
## 914 BB Barbados 13814.1896 1994 2022-09-16
## 915 BB Barbados NA 1970 2022-09-16
## 916 BB Barbados NA 1969 2022-09-16
## 917 BB Barbados NA 1968 2022-09-16
## 918 BB Barbados NA 1967 2022-09-16
## 919 BB Barbados NA 1966 2022-09-16
## 920 BB Barbados NA 1965 2022-09-16
## 921 BB Barbados NA 1964 2022-09-16
## 922 BB Barbados NA 1963 2022-09-16
## 923 BB Barbados 11374.5720 1975 2022-09-16
## 924 BB Barbados 11666.6782 1974 2022-09-16
## 925 BB Barbados NA 1973 2022-09-16
## 926 BB Barbados NA 1972 2022-09-16
## 927 BB Barbados NA 1971 2022-09-16
## 928 BB Barbados NA 1962 2022-09-16
## 929 BB Barbados NA 1961 2022-09-16
## 930 BB Barbados NA 1960 2022-09-16
## 931 BD Bangladesh 401.4605 1972 2022-09-16
## 932 BD Bangladesh 474.4632 1971 2022-09-16
## 933 BD Bangladesh 512.1212 1970 2022-09-16
## 934 BD Bangladesh 496.8835 1969 2022-09-16
## 935 BD Bangladesh 505.0833 1968 2022-09-16
## 936 BD Bangladesh 476.0313 1967 2022-09-16
## 937 BD Bangladesh 501.0596 1966 2022-09-16
## 938 BD Bangladesh 504.1547 1965 2022-09-16
## 939 BD Bangladesh 511.3578 1964 2022-09-16
## 940 BD Bangladesh 474.4725 1963 2022-09-16
## 941 BD Bangladesh 490.2620 1962 2022-09-16
## 942 BD Bangladesh 477.9952 1961 2022-09-16
## 943 BD Bangladesh 463.3574 1960 2022-09-16
## 944 BD Bangladesh 653.8086 2000 2022-09-16
## 945 BD Bangladesh 633.1827 1999 2022-09-16
## 946 BD Bangladesh 617.2923 1998 2022-09-16
## 947 BD Bangladesh 599.2275 1997 2022-09-16
## 948 BD Bangladesh 585.7169 1996 2022-09-16
## 949 BD Bangladesh 572.4385 1995 2022-09-16
## 950 BD Bangladesh 1715.3548 2021 2022-09-16
## 951 BD Bangladesh 1619.7759 2020 2022-09-16
## 952 BD Bangladesh 1581.5675 2019 2022-09-16
## 953 BD Bangladesh 1481.1834 2018 2022-09-16
## 954 BD Bangladesh 1394.7814 2017 2022-09-16
## 955 BD Bangladesh 1322.6948 2016 2022-09-16
## 956 BD Bangladesh 1248.4533 2015 2022-09-16
## 957 BD Bangladesh 1184.8633 2014 2022-09-16
## 958 BD Bangladesh 1129.9935 2013 2022-09-16
## 959 BD Bangladesh 1078.2875 2012 2022-09-16
## 960 BD Bangladesh 1024.0220 2011 2022-09-16
## 961 BD Bangladesh 972.9097 2010 2022-09-16
## 962 BD Bangladesh 931.9865 2009 2022-09-16
## 963 BD Bangladesh 897.1890 2008 2022-09-16
## 964 BD Bangladesh 856.0459 2007 2022-09-16
## 965 BD Bangladesh 809.4736 2006 2022-09-16
## 966 BD Bangladesh 769.1360 2005 2022-09-16
## 967 BD Bangladesh 732.7488 2004 2022-09-16
## 968 BD Bangladesh 707.6051 2003 2022-09-16
## 969 BD Bangladesh 687.3833 2002 2022-09-16
## 970 BD Bangladesh 674.1670 2001 2022-09-16
## 971 BD Bangladesh 496.4329 1987 2022-09-16
## 972 BD Bangladesh 491.1358 1986 2022-09-16
## 973 BD Bangladesh 484.0480 1985 2022-09-16
## 974 BD Bangladesh 480.8311 1984 2022-09-16
## 975 BD Bangladesh 470.9053 1983 2022-09-16
## 976 BD Bangladesh 465.2501 1982 2022-09-16
## 977 BD Bangladesh 556.2989 1994 2022-09-16
## 978 BD Bangladesh 547.0514 1993 2022-09-16
## 979 BD Bangladesh 533.8880 1992 2022-09-16
## 980 BD Bangladesh 517.7637 1991 2022-09-16
## 981 BD Bangladesh 512.0966 1990 2022-09-16
## 982 BD Bangladesh 496.7616 1989 2022-09-16
## 983 BD Bangladesh 495.4038 1988 2022-09-16
## 984 BD Bangladesh 440.6036 1974 2022-09-16
## 985 BD Bangladesh 408.6063 1973 2022-09-16
## 986 BD Bangladesh 467.5867 1981 2022-09-16
## 987 BD Bangladesh 447.6949 1980 2022-09-16
## 988 BD Bangladesh 456.1454 1979 2022-09-16
## 989 BD Bangladesh 447.2395 1978 2022-09-16
## 990 BD Bangladesh 428.9870 1977 2022-09-16
## 991 BD Bangladesh 428.3799 1976 2022-09-16
## 992 BD Bangladesh 414.6048 1975 2022-09-16
## 993 BE Belgium 40424.6388 2020 2022-09-16
## 994 BE Belgium 43065.5151 2019 2022-09-16
## 995 BE Belgium 42403.5336 2018 2022-09-16
## 996 BE Belgium 41825.7628 2017 2022-09-16
## 997 BE Belgium 42787.2952 2021 2022-09-16
## 998 BE Belgium 30664.3079 1994 2022-09-16
## 999 BE Belgium 29797.4063 1993 2022-09-16
## 1000 BE Belgium 30204.5638 1992 2022-09-16
## 1001 BE Belgium 29870.1478 1991 2022-09-16
## 1002 BE Belgium 29441.6621 1990 2022-09-16
## 1003 BE Belgium 28631.3191 1989 2022-09-16
## 1004 BE Belgium 27772.0520 1988 2022-09-16
## 1005 BE Belgium 26603.9281 1987 2022-09-16
## 1006 BE Belgium 26026.2805 1986 2022-09-16
## 1007 BE Belgium 25569.4893 1985 2022-09-16
## 1008 BE Belgium 25161.4910 1984 2022-09-16
## 1009 BE Belgium 24555.4810 1983 2022-09-16
## 1010 BE Belgium 24477.1999 1982 2022-09-16
## 1011 BE Belgium 24325.8133 1981 2022-09-16
## 1012 BE Belgium 24393.2982 1980 2022-09-16
## 1013 BE Belgium 23381.1272 1979 2022-09-16
## 1014 BE Belgium 22866.8232 1978 2022-09-16
## 1015 BE Belgium 22255.6844 1977 2022-09-16
## 1016 BE Belgium 41318.0196 2016 2022-09-16
## 1017 BE Belgium 41008.2967 2015 2022-09-16
## 1018 BE Belgium 40421.4208 2014 2022-09-16
## 1019 BE Belgium 39970.3175 2013 2022-09-16
## 1020 BE Belgium 39975.5736 2012 2022-09-16
## 1021 BE Belgium 39929.0951 2011 2022-09-16
## 1022 BE Belgium 39777.9253 2010 2022-09-16
## 1023 BE Belgium 39025.2208 2009 2022-09-16
## 1024 BE Belgium 40151.8499 2008 2022-09-16
## 1025 BE Belgium 40290.2278 2007 2022-09-16
## 1026 BE Belgium 39147.7636 2006 2022-09-16
## 1027 BE Belgium 38426.0519 2005 2022-09-16
## 1028 BE Belgium 37761.2813 2004 2022-09-16
## 1029 BE Belgium 36617.3804 2003 2022-09-16
## 1030 BE Belgium 36393.2418 2002 2022-09-16
## 1031 BE Belgium 35943.2380 2001 2022-09-16
## 1032 BE Belgium 35674.7913 2000 2022-09-16
## 1033 BE Belgium 34479.9064 1999 2022-09-16
## 1034 BE Belgium 33376.5748 1998 2022-09-16
## 1035 BE Belgium 32804.3605 1997 2022-09-16
## 1036 BE Belgium 31681.9364 1996 2022-09-16
## 1037 BE Belgium 31329.8921 1995 2022-09-16
## 1038 BE Belgium 16922.3544 1969 2022-09-16
## 1039 BE Belgium 15915.1957 1968 2022-09-16
## 1040 BE Belgium 15334.7679 1967 2022-09-16
## 1041 BE Belgium 14846.0973 1966 2022-09-16
## 1042 BE Belgium 14489.4451 1965 2022-09-16
## 1043 BE Belgium 14118.9023 1964 2022-09-16
## 1044 BE Belgium 22144.5236 1976 2022-09-16
## 1045 BE Belgium 20997.2068 1975 2022-09-16
## 1046 BE Belgium 21480.2613 1974 2022-09-16
## 1047 BE Belgium 20607.1809 1973 2022-09-16
## 1048 BE Belgium 19432.0310 1972 2022-09-16
## 1049 BE Belgium 18527.1487 1971 2022-09-16
## 1050 BE Belgium 17849.4947 1970 2022-09-16
## 1051 BE Belgium 12277.6347 1961 2022-09-16
## 1052 BE Belgium 11734.3062 1960 2022-09-16
## 1053 BE Belgium 13326.1133 1963 2022-09-16
## 1054 BE Belgium 12866.2288 1962 2022-09-16
## 1055 BF Burkina Faso 539.8200 2007 2022-09-16
## 1056 BF Burkina Faso 534.3567 2006 2022-09-16
## 1057 BF Burkina Faso 582.4157 2010 2022-09-16
## 1058 BF Burkina Faso 553.5167 2009 2022-09-16
## 1059 BF Burkina Faso 554.1121 2008 2022-09-16
## 1060 BF Burkina Faso 355.1484 1994 2022-09-16
## 1061 BF Burkina Faso 360.2307 1993 2022-09-16
## 1062 BF Burkina Faso 518.1679 2005 2022-09-16
## 1063 BF Burkina Faso 491.1847 2004 2022-09-16
## 1064 BF Burkina Faso 484.0971 2003 2022-09-16
## 1065 BF Burkina Faso 462.2656 2002 2022-09-16
## 1066 BF Burkina Faso 455.9077 2001 2022-09-16
## 1067 BF Burkina Faso 440.0284 2000 2022-09-16
## 1068 BF Burkina Faso 444.3225 1999 2022-09-16
## 1069 BF Burkina Faso 425.5692 1998 2022-09-16
## 1070 BF Burkina Faso 407.8607 1997 2022-09-16
## 1071 BF Burkina Faso 394.4573 1996 2022-09-16
## 1072 BF Burkina Faso 365.2805 1995 2022-09-16
## 1073 BF Burkina Faso 760.4409 2021 2022-09-16
## 1074 BF Burkina Faso 731.5221 2020 2022-09-16
## 1075 BF Burkina Faso 738.2189 2019 2022-09-16
## 1076 BF Burkina Faso 718.6426 2018 2022-09-16
## 1077 BF Burkina Faso 693.7264 2017 2022-09-16
## 1078 BF Burkina Faso 672.3630 2016 2022-09-16
## 1079 BF Burkina Faso 653.3273 2015 2022-09-16
## 1080 BF Burkina Faso 647.4287 2014 2022-09-16
## 1081 BF Burkina Faso 639.2329 2013 2022-09-16
## 1082 BF Burkina Faso 622.5197 2012 2022-09-16
## 1083 BF Burkina Faso 602.5791 2011 2022-09-16
## 1084 BF Burkina Faso 275.5481 1971 2022-09-16
## 1085 BF Burkina Faso 276.4800 1970 2022-09-16
## 1086 BF Burkina Faso 280.9734 1969 2022-09-16
## 1087 BF Burkina Faso 280.1640 1968 2022-09-16
## 1088 BF Burkina Faso 276.4476 1967 2022-09-16
## 1089 BF Burkina Faso 258.2219 1966 2022-09-16
## 1090 BF Burkina Faso 260.8854 1965 2022-09-16
## 1091 BF Burkina Faso 255.1672 1964 2022-09-16
## 1092 BF Burkina Faso 252.9991 1963 2022-09-16
## 1093 BF Burkina Faso 259.7345 1962 2022-09-16
## 1094 BF Burkina Faso 248.0226 1961 2022-09-16
## 1095 BF Burkina Faso 241.6055 1960 2022-09-16
## 1096 BF Burkina Faso 357.9641 1986 2022-09-16
## 1097 BF Burkina Faso 340.2861 1985 2022-09-16
## 1098 BF Burkina Faso 321.7663 1984 2022-09-16
## 1099 BF Burkina Faso 336.0867 1983 2022-09-16
## 1100 BF Burkina Faso 343.4740 1982 2022-09-16
## 1101 BF Burkina Faso 321.2653 1981 2022-09-16
## 1102 BF Burkina Faso 315.4840 1980 2022-09-16
## 1103 BF Burkina Faso 357.7423 1992 2022-09-16
## 1104 BF Burkina Faso 366.6537 1991 2022-09-16
## 1105 BF Burkina Faso 345.2842 1990 2022-09-16
## 1106 BF Burkina Faso 356.7400 1989 2022-09-16
## 1107 BF Burkina Faso 358.5714 1988 2022-09-16
## 1108 BF Burkina Faso 347.9318 1987 2022-09-16
## 1109 BF Burkina Faso 273.2942 1973 2022-09-16
## 1110 BF Burkina Faso 276.9908 1972 2022-09-16
## 1111 BF Burkina Faso 312.7148 1976 2022-09-16
## 1112 BF Burkina Faso 320.0823 1979 2022-09-16
## 1113 BF Burkina Faso 315.4257 1978 2022-09-16
## 1114 BF Burkina Faso 307.7464 1977 2022-09-16
## 1115 BF Burkina Faso 293.7170 1975 2022-09-16
## 1116 BF Burkina Faso 290.5729 1974 2022-09-16
## 1117 BG Bulgaria NA 1976 2022-09-16
## 1118 BG Bulgaria NA 1975 2022-09-16
## 1119 BG Bulgaria NA 1974 2022-09-16
## 1120 BG Bulgaria NA 1973 2022-09-16
## 1121 BG Bulgaria NA 1972 2022-09-16
## 1122 BG Bulgaria NA 1971 2022-09-16
## 1123 BG Bulgaria NA 1979 2022-09-16
## 1124 BG Bulgaria NA 1978 2022-09-16
## 1125 BG Bulgaria NA 1977 2022-09-16
## 1126 BG Bulgaria 4427.0107 1990 2022-09-16
## 1127 BG Bulgaria 4784.0546 1989 2022-09-16
## 1128 BG Bulgaria 4889.2563 1988 2022-09-16
## 1129 BG Bulgaria 4411.8862 1987 2022-09-16
## 1130 BG Bulgaria 4166.1417 1986 2022-09-16
## 1131 BG Bulgaria 3996.8648 1985 2022-09-16
## 1132 BG Bulgaria 3892.3568 1984 2022-09-16
## 1133 BG Bulgaria 3773.3160 1983 2022-09-16
## 1134 BG Bulgaria 3657.2878 1982 2022-09-16
## 1135 BG Bulgaria 3584.4414 1981 2022-09-16
## 1136 BG Bulgaria 3428.4095 1980 2022-09-16
## 1137 BG Bulgaria 8293.5679 2021 2022-09-16
## 1138 BG Bulgaria 7920.9113 2020 2022-09-16
## 1139 BG Bulgaria 8234.7813 2019 2022-09-16
## 1140 BG Bulgaria 7859.6780 2018 2022-09-16
## 1141 BG Bulgaria 7599.1250 2017 2022-09-16
## 1142 BG Bulgaria 7341.0476 2016 2022-09-16
## 1143 BG Bulgaria 7074.6810 2015 2022-09-16
## 1144 BG Bulgaria 6796.6891 2014 2022-09-16
## 1145 BG Bulgaria 6693.4502 2013 2022-09-16
## 1146 BG Bulgaria NA 1970 2022-09-16
## 1147 BG Bulgaria NA 1969 2022-09-16
## 1148 BG Bulgaria NA 1968 2022-09-16
## 1149 BG Bulgaria NA 1967 2022-09-16
## 1150 BG Bulgaria NA 1966 2022-09-16
## 1151 BG Bulgaria NA 1965 2022-09-16
## 1152 BG Bulgaria NA 1964 2022-09-16
## 1153 BG Bulgaria NA 1963 2022-09-16
## 1154 BG Bulgaria NA 1962 2022-09-16
## 1155 BG Bulgaria NA 1961 2022-09-16
## 1156 BG Bulgaria NA 1960 2022-09-16
## 1157 BG Bulgaria 3937.4349 2001 2022-09-16
## 1158 BG Bulgaria 3717.6770 2000 2022-09-16
## 1159 BG Bulgaria 3537.1058 1999 2022-09-16
## 1160 BG Bulgaria 3839.7167 1998 2022-09-16
## 1161 BG Bulgaria 3674.9318 1997 2022-09-16
## 1162 BG Bulgaria 4252.9465 1996 2022-09-16
## 1163 BG Bulgaria 4021.7228 1995 2022-09-16
## 1164 BG Bulgaria 3892.7111 1994 2022-09-16
## 1165 BG Bulgaria 3810.2437 1993 2022-09-16
## 1166 BG Bulgaria 3836.7640 1992 2022-09-16
## 1167 BG Bulgaria 4093.4767 1991 2022-09-16
## 1168 BG Bulgaria 4849.5429 2004 2022-09-16
## 1169 BG Bulgaria 4518.8782 2003 2022-09-16
## 1170 BG Bulgaria 4260.1161 2002 2022-09-16
## 1171 BG Bulgaria 6427.8101 2010 2022-09-16
## 1172 BG Bulgaria 6288.6774 2009 2022-09-16
## 1173 BG Bulgaria 6693.6124 2012 2022-09-16
## 1174 BG Bulgaria 6605.0898 2011 2022-09-16
## 1175 BG Bulgaria 5629.4199 2006 2022-09-16
## 1176 BG Bulgaria 5230.9837 2005 2022-09-16
## 1177 BG Bulgaria 6459.6409 2008 2022-09-16
## 1178 BG Bulgaria 6044.7594 2007 2022-09-16
## 1179 BH Bahrain 22552.6846 2016 2022-09-16
## 1180 BH Bahrain 22634.0856 2015 2022-09-16
## 1181 BH Bahrain 22676.6259 2014 2022-09-16
## 1182 BH Bahrain 22078.9905 2013 2022-09-16
## 1183 BH Bahrain 19446.6843 2021 2022-09-16
## 1184 BH Bahrain 19545.5786 2020 2022-09-16
## 1185 BH Bahrain 21317.3365 2019 2022-09-16
## 1186 BH Bahrain 21818.7423 2018 2022-09-16
## 1187 BH Bahrain 22445.4526 2017 2022-09-16
## 1188 BH Bahrain 18160.1694 1990 2022-09-16
## 1189 BH Bahrain 17925.0720 1989 2022-09-16
## 1190 BH Bahrain 18469.8463 1988 2022-09-16
## 1191 BH Bahrain 17885.0193 1987 2022-09-16
## 1192 BH Bahrain 16779.7366 1986 2022-09-16
## 1193 BH Bahrain 17139.0701 1985 2022-09-16
## 1194 BH Bahrain 18534.2249 1984 2022-09-16
## 1195 BH Bahrain 18131.0725 1983 2022-09-16
## 1196 BH Bahrain 17507.8734 1982 2022-09-16
## 1197 BH Bahrain 19537.9587 1981 2022-09-16
## 1198 BH Bahrain 21450.5528 1980 2022-09-16
## 1199 BH Bahrain NA 1979 2022-09-16
## 1200 BH Bahrain NA 1978 2022-09-16
## 1201 BH Bahrain NA 1977 2022-09-16
## 1202 BH Bahrain NA 1976 2022-09-16
## 1203 BH Bahrain NA 1975 2022-09-16
## 1204 BH Bahrain NA 1974 2022-09-16
## 1205 BH Bahrain NA 1973 2022-09-16
## 1206 BH Bahrain 21187.5419 2012 2022-09-16
## 1207 BH Bahrain 20774.2449 2011 2022-09-16
## 1208 BH Bahrain 20982.3405 2010 2022-09-16
## 1209 BH Bahrain 21057.4208 2009 2022-09-16
## 1210 BH Bahrain 21833.4120 2008 2022-09-16
## 1211 BH Bahrain 22111.6801 2007 2022-09-16
## 1212 BH Bahrain 22069.2804 2006 2022-09-16
## 1213 BH Bahrain 22343.5374 2005 2022-09-16
## 1214 BH Bahrain 22422.6899 2004 2022-09-16
## 1215 BH Bahrain 22335.9324 2003 2022-09-16
## 1216 BH Bahrain 22258.1949 2002 2022-09-16
## 1217 BH Bahrain 22697.6169 2001 2022-09-16
## 1218 BH Bahrain 23243.5909 2000 2022-09-16
## 1219 BH Bahrain 23047.0707 1999 2022-09-16
## 1220 BH Bahrain 22919.3940 1998 2022-09-16
## 1221 BH Bahrain 22561.7924 1997 2022-09-16
## 1222 BH Bahrain 22500.0710 1996 2022-09-16
## 1223 BH Bahrain 22185.4956 1995 2022-09-16
## 1224 BH Bahrain 21894.5445 1994 2022-09-16
## 1225 BH Bahrain 22497.0364 1993 2022-09-16
## 1226 BH Bahrain 20432.1239 1992 2022-09-16
## 1227 BH Bahrain 19651.3379 1991 2022-09-16
## 1228 BH Bahrain NA 1965 2022-09-16
## 1229 BH Bahrain NA 1964 2022-09-16
## 1230 BH Bahrain NA 1963 2022-09-16
## 1231 BH Bahrain NA 1962 2022-09-16
## 1232 BH Bahrain NA 1961 2022-09-16
## 1233 BH Bahrain NA 1960 2022-09-16
## 1234 BH Bahrain NA 1972 2022-09-16
## 1235 BH Bahrain NA 1971 2022-09-16
## 1236 BH Bahrain NA 1970 2022-09-16
## 1237 BH Bahrain NA 1969 2022-09-16
## 1238 BH Bahrain NA 1968 2022-09-16
## 1239 BH Bahrain NA 1967 2022-09-16
## 1240 BH Bahrain NA 1966 2022-09-16
## 1241 BI Burundi 380.4441 1978 2022-09-16
## 1242 BI Burundi 340.6100 1975 2022-09-16
## 1243 BI Burundi 343.3002 1974 2022-09-16
## 1244 BI Burundi 393.5041 1977 2022-09-16
## 1245 BI Burundi 360.8393 1976 2022-09-16
## 1246 BI Burundi 371.0652 1980 2022-09-16
## 1247 BI Burundi 377.0426 1979 2022-09-16
## 1248 BI Burundi 445.0490 1992 2022-09-16
## 1249 BI Burundi 450.1510 1991 2022-09-16
## 1250 BI Burundi 438.6573 1990 2022-09-16
## 1251 BI Burundi 434.3570 1989 2022-09-16
## 1252 BI Burundi 440.0463 1988 2022-09-16
## 1253 BI Burundi 430.7657 1987 2022-09-16
## 1254 BI Burundi 420.0272 1986 2022-09-16
## 1255 BI Burundi 418.4433 1985 2022-09-16
## 1256 BI Burundi 384.8441 1984 2022-09-16
## 1257 BI Burundi 394.8021 1983 2022-09-16
## 1258 BI Burundi 390.8993 1982 2022-09-16
## 1259 BI Burundi 405.5441 1981 2022-09-16
## 1260 BI Burundi 267.3191 2021 2022-09-16
## 1261 BI Burundi 270.6577 2020 2022-09-16
## 1262 BI Burundi 278.2026 2019 2022-09-16
## 1263 BI Burundi 281.9347 2018 2022-09-16
## 1264 BI Burundi 286.3955 2017 2022-09-16
## 1265 BI Burundi 294.1818 2016 2022-09-16
## 1266 BI Burundi 305.5111 2015 2022-09-16
## 1267 BI Burundi 349.7761 1973 2022-09-16
## 1268 BI Burundi 330.4840 1972 2022-09-16
## 1269 BI Burundi 357.0627 1971 2022-09-16
## 1270 BI Burundi 352.6043 1970 2022-09-16
## 1271 BI Burundi 296.1735 1969 2022-09-16
## 1272 BI Burundi 307.4938 1968 2022-09-16
## 1273 BI Burundi 316.3489 1967 2022-09-16
## 1274 BI Burundi 285.1856 1966 2022-09-16
## 1275 BI Burundi 279.3160 1965 2022-09-16
## 1276 BI Burundi 274.7020 1964 2022-09-16
## 1277 BI Burundi 263.8824 1963 2022-09-16
## 1278 BI Burundi 258.3797 1962 2022-09-16
## 1279 BI Burundi 241.4665 1961 2022-09-16
## 1280 BI Burundi 285.4030 1960 2022-09-16
## 1281 BI Burundi 306.5459 2000 2022-09-16
## 1282 BI Burundi 314.7080 1999 2022-09-16
## 1283 BI Burundi 322.1114 1998 2022-09-16
## 1284 BI Burundi 310.6911 1997 2022-09-16
## 1285 BI Burundi 318.9419 1996 2022-09-16
## 1286 BI Burundi 350.9068 1995 2022-09-16
## 1287 BI Burundi 386.7793 1994 2022-09-16
## 1288 BI Burundi 409.1825 1993 2022-09-16
## 1289 BI Burundi 301.7527 2006 2022-09-16
## 1290 BI Burundi 295.6999 2005 2022-09-16
## 1291 BI Burundi 302.6440 2004 2022-09-16
## 1292 BI Burundi 297.9877 2003 2022-09-16
## 1293 BI Burundi 310.9062 2002 2022-09-16
## 1294 BI Burundi 328.1058 2014 2022-09-16
## 1295 BI Burundi 324.7877 2013 2022-09-16
## 1296 BI Burundi 319.3983 2012 2022-09-16
## 1297 BI Burundi 315.6172 2011 2022-09-16
## 1298 BI Burundi 313.2724 2010 2022-09-16
## 1299 BI Burundi 307.8655 2009 2022-09-16
## 1300 BI Burundi 306.4688 2008 2022-09-16
## 1301 BI Burundi 302.0690 2007 2022-09-16
## 1302 BI Burundi 305.8160 2001 2022-09-16
## 1303 BJ Benin 1260.7346 2021 2022-09-16
## 1304 BJ Benin 1214.6596 2020 2022-09-16
## 1305 BJ Benin 854.0429 1997 2022-09-16
## 1306 BJ Benin 832.5564 1996 2022-09-16
## 1307 BJ Benin 823.5493 1995 2022-09-16
## 1308 BJ Benin 802.6062 1994 2022-09-16
## 1309 BJ Benin 814.1313 1993 2022-09-16
## 1310 BJ Benin 796.6429 1992 2022-09-16
## 1311 BJ Benin 801.1509 1991 2022-09-16
## 1312 BJ Benin 795.0717 1990 2022-09-16
## 1313 BJ Benin 753.5700 1989 2022-09-16
## 1314 BJ Benin 800.1418 1988 2022-09-16
## 1315 BJ Benin 797.2660 1987 2022-09-16
## 1316 BJ Benin 833.4363 1986 2022-09-16
## 1317 BJ Benin 839.7489 1985 2022-09-16
## 1318 BJ Benin 803.8021 1984 2022-09-16
## 1319 BJ Benin 766.2911 1983 2022-09-16
## 1320 BJ Benin 824.0122 1982 2022-09-16
## 1321 BJ Benin 828.6980 1981 2022-09-16
## 1322 BJ Benin 774.5521 1980 2022-09-16
## 1323 BJ Benin 1201.5614 2019 2022-09-16
## 1324 BJ Benin 1155.3132 2018 2022-09-16
## 1325 BJ Benin 1112.8171 2017 2022-09-16
## 1326 BJ Benin 1082.4513 2016 2022-09-16
## 1327 BJ Benin 1076.7967 2015 2022-09-16
## 1328 BJ Benin 1087.7200 2014 2022-09-16
## 1329 BJ Benin 1051.5519 2013 2022-09-16
## 1330 BJ Benin 1008.7663 2012 2022-09-16
## 1331 BJ Benin 989.7674 2011 2022-09-16
## 1332 BJ Benin 988.6108 2010 2022-09-16
## 1333 BJ Benin 995.6942 2009 2022-09-16
## 1334 BJ Benin 1000.8515 2008 2022-09-16
## 1335 BJ Benin 981.4557 2007 2022-09-16
## 1336 BJ Benin 952.8312 2006 2022-09-16
## 1337 BJ Benin 943.6293 2005 2022-09-16
## 1338 BJ Benin 955.5342 2004 2022-09-16
## 1339 BJ Benin 942.9186 2003 2022-09-16
## 1340 BJ Benin 939.6617 2002 2022-09-16
## 1341 BJ Benin 925.7161 2001 2022-09-16
## 1342 BJ Benin 905.8263 2000 2022-09-16
## 1343 BJ Benin 881.6194 1999 2022-09-16
## 1344 BJ Benin 861.9871 1998 2022-09-16
## 1345 BJ Benin 760.7693 1972 2022-09-16
## 1346 BJ Benin 730.9189 1971 2022-09-16
## 1347 BJ Benin 758.3926 1970 2022-09-16
## 1348 BJ Benin 758.8828 1969 2022-09-16
## 1349 BJ Benin 753.2653 1968 2022-09-16
## 1350 BJ Benin 740.3185 1967 2022-09-16
## 1351 BJ Benin 745.1334 1979 2022-09-16
## 1352 BJ Benin 718.1942 1978 2022-09-16
## 1353 BJ Benin 727.9854 1977 2022-09-16
## 1354 BJ Benin 711.3009 1976 2022-09-16
## 1355 BJ Benin 722.7728 1975 2022-09-16
## 1356 BJ Benin 778.5152 1974 2022-09-16
## 1357 BJ Benin 771.1977 1973 2022-09-16
## 1358 BJ Benin 710.3672 1964 2022-09-16
## 1359 BJ Benin 677.3573 1963 2022-09-16
## 1360 BJ Benin 746.9336 1966 2022-09-16
## 1361 BJ Benin 734.7887 1965 2022-09-16
## 1362 BJ Benin 679.0217 1960 2022-09-16
## 1363 BJ Benin 657.0928 1962 2022-09-16
## 1364 BJ Benin 690.6246 1961 2022-09-16
## 1365 BM Bermuda 76999.1578 1978 2022-09-16
## 1366 BM Bermuda 78360.6870 1979 2022-09-16
## 1367 BM Bermuda 63637.7154 1974 2022-09-16
## 1368 BM Bermuda 76180.8013 1977 2022-09-16
## 1369 BM Bermuda 72208.7316 1976 2022-09-16
## 1370 BM Bermuda 66534.0406 1975 2022-09-16
## 1371 BM Bermuda 48593.3905 1966 2022-09-16
## 1372 BM Bermuda 43253.5439 1965 2022-09-16
## 1373 BM Bermuda 42301.4324 1964 2022-09-16
## 1374 BM Bermuda 39029.4477 1963 2022-09-16
## 1375 BM Bermuda 39527.7963 1962 2022-09-16
## 1376 BM Bermuda 38751.2332 1961 2022-09-16
## 1377 BM Bermuda 62615.3153 1973 2022-09-16
## 1378 BM Bermuda 61244.5370 1972 2022-09-16
## 1379 BM Bermuda 59713.4403 1971 2022-09-16
## 1380 BM Bermuda 57309.1584 1970 2022-09-16
## 1381 BM Bermuda 54904.6943 1969 2022-09-16
## 1382 BM Bermuda 54082.1391 1968 2022-09-16
## 1383 BM Bermuda 53985.6405 1967 2022-09-16
## 1384 BM Bermuda 101617.5573 2021 2022-09-16
## 1385 BM Bermuda 99728.6431 2020 2022-09-16
## 1386 BM Bermuda 107036.2393 2019 2022-09-16
## 1387 BM Bermuda 106697.7375 2018 2022-09-16
## 1388 BM Bermuda 107237.0318 2017 2022-09-16
## 1389 BM Bermuda 102407.3944 2016 2022-09-16
## 1390 BM Bermuda 102005.6256 2015 2022-09-16
## 1391 BM Bermuda 101374.4698 2014 2022-09-16
## 1392 BM Bermuda 105492.4807 2013 2022-09-16
## 1393 BM Bermuda 106119.7950 2012 2022-09-16
## 1394 BM Bermuda 112471.3475 2011 2022-09-16
## 1395 BM Bermuda 115839.7960 2010 2022-09-16
## 1396 BM Bermuda 117886.7380 2009 2022-09-16
## 1397 BM Bermuda 125610.0334 2008 2022-09-16
## 1398 BM Bermuda 128757.8807 2007 2022-09-16
## 1399 BM Bermuda 125294.9594 2006 2022-09-16
## 1400 BM Bermuda 119396.4494 2005 2022-09-16
## 1401 BM Bermuda 118193.1487 2004 2022-09-16
## 1402 BM Bermuda 116268.8169 2003 2022-09-16
## 1403 BM Bermuda 113172.1206 2002 2022-09-16
## 1404 BM Bermuda 37935.8868 1960 2022-09-16
## 1405 BM Bermuda 109001.5860 2000 2022-09-16
## 1406 BM Bermuda 100602.9275 1999 2022-09-16
## 1407 BM Bermuda 97857.3233 1998 2022-09-16
## 1408 BM Bermuda 94878.4922 1997 2022-09-16
## 1409 BM Bermuda 91261.1515 1996 2022-09-16
## 1410 BM Bermuda 89518.2776 1995 2022-09-16
## 1411 BM Bermuda 86361.9528 1994 2022-09-16
## 1412 BM Bermuda 86444.6782 1993 2022-09-16
## 1413 BM Bermuda 84371.0357 1992 2022-09-16
## 1414 BM Bermuda 83812.1328 1991 2022-09-16
## 1415 BM Bermuda 86436.2343 1990 2022-09-16
## 1416 BM Bermuda 87131.9494 1989 2022-09-16
## 1417 BM Bermuda 87481.3788 1988 2022-09-16
## 1418 BM Bermuda 84794.9969 1987 2022-09-16
## 1419 BM Bermuda 82395.2732 1986 2022-09-16
## 1420 BM Bermuda 77902.6542 1985 2022-09-16
## 1421 BM Bermuda 80164.5663 1984 2022-09-16
## 1422 BM Bermuda 80483.7350 1983 2022-09-16
## 1423 BM Bermuda 79583.1340 1982 2022-09-16
## 1424 BM Bermuda 84633.1605 1981 2022-09-16
## 1425 BM Bermuda 83239.5346 1980 2022-09-16
## 1426 BM Bermuda 115619.4747 2001 2022-09-16
## 1427 BN Brunei Darussalam 35064.8667 2007 2022-09-16
## 1428 BN Brunei Darussalam 35455.6356 2006 2022-09-16
## 1429 BN Brunei Darussalam 34441.1226 2005 2022-09-16
## 1430 BN Brunei Darussalam 34850.1442 2004 2022-09-16
## 1431 BN Brunei Darussalam 33981.3370 2008 2022-09-16
## 1432 BN Brunei Darussalam 35126.3737 1994 2022-09-16
## 1433 BN Brunei Darussalam 34994.3426 1993 2022-09-16
## 1434 BN Brunei Darussalam 35881.1439 1992 2022-09-16
## 1435 BN Brunei Darussalam 35239.4057 1991 2022-09-16
## 1436 BN Brunei Darussalam 35277.8023 2003 2022-09-16
## 1437 BN Brunei Darussalam 34926.6281 2002 2022-09-16
## 1438 BN Brunei Darussalam 34291.1358 2001 2022-09-16
## 1439 BN Brunei Darussalam 34063.6146 2000 2022-09-16
## 1440 BN Brunei Darussalam 33825.7126 1999 2022-09-16
## 1441 BN Brunei Darussalam 33551.9701 1998 2022-09-16
## 1442 BN Brunei Darussalam 34516.2129 1997 2022-09-16
## 1443 BN Brunei Darussalam 35875.9246 1996 2022-09-16
## 1444 BN Brunei Darussalam 35753.4100 1995 2022-09-16
## 1445 BN Brunei Darussalam 29927.0437 2021 2022-09-16
## 1446 BN Brunei Darussalam 30696.8771 2020 2022-09-16
## 1447 BN Brunei Darussalam 30646.1092 2019 2022-09-16
## 1448 BN Brunei Darussalam 29802.7829 2018 2022-09-16
## 1449 BN Brunei Darussalam 30101.5288 2017 2022-09-16
## 1450 BN Brunei Darussalam 30038.7345 2016 2022-09-16
## 1451 BN Brunei Darussalam 31164.0363 2015 2022-09-16
## 1452 BN Brunei Darussalam 31678.9373 2014 2022-09-16
## 1453 BN Brunei Darussalam 32924.9900 2013 2022-09-16
## 1454 BN Brunei Darussalam 34096.9076 2012 2022-09-16
## 1455 BN Brunei Darussalam 34244.2069 2011 2022-09-16
## 1456 BN Brunei Darussalam 33437.1217 2010 2022-09-16
## 1457 BN Brunei Darussalam 32991.8236 2009 2022-09-16
## 1458 BN Brunei Darussalam NA 1970 2022-09-16
## 1459 BN Brunei Darussalam NA 1969 2022-09-16
## 1460 BN Brunei Darussalam NA 1968 2022-09-16
## 1461 BN Brunei Darussalam NA 1967 2022-09-16
## 1462 BN Brunei Darussalam NA 1966 2022-09-16
## 1463 BN Brunei Darussalam NA 1965 2022-09-16
## 1464 BN Brunei Darussalam NA 1964 2022-09-16
## 1465 BN Brunei Darussalam NA 1963 2022-09-16
## 1466 BN Brunei Darussalam NA 1962 2022-09-16
## 1467 BN Brunei Darussalam NA 1961 2022-09-16
## 1468 BN Brunei Darussalam NA 1960 2022-09-16
## 1469 BN Brunei Darussalam 38189.7986 1986 2022-09-16
## 1470 BN Brunei Darussalam 40388.6399 1985 2022-09-16
## 1471 BN Brunei Darussalam 42176.9817 1984 2022-09-16
## 1472 BN Brunei Darussalam 43132.0048 1983 2022-09-16
## 1473 BN Brunei Darussalam 44168.2815 1982 2022-09-16
## 1474 BN Brunei Darussalam 43769.5125 1981 2022-09-16
## 1475 BN Brunei Darussalam 56324.5391 1980 2022-09-16
## 1476 BN Brunei Darussalam 62590.5458 1979 2022-09-16
## 1477 BN Brunei Darussalam 52870.6152 1978 2022-09-16
## 1478 BN Brunei Darussalam 35154.2312 1990 2022-09-16
## 1479 BN Brunei Darussalam 35779.1340 1989 2022-09-16
## 1480 BN Brunei Darussalam 37211.0630 1988 2022-09-16
## 1481 BN Brunei Darussalam 37866.9093 1987 2022-09-16
## 1482 BN Brunei Darussalam NA 1973 2022-09-16
## 1483 BN Brunei Darussalam NA 1972 2022-09-16
## 1484 BN Brunei Darussalam NA 1971 2022-09-16
## 1485 BN Brunei Darussalam 41651.0900 1975 2022-09-16
## 1486 BN Brunei Darussalam 43260.9222 1974 2022-09-16
## 1487 BN Brunei Darussalam 51353.1178 1977 2022-09-16
## 1488 BN Brunei Darussalam 48100.4102 1976 2022-09-16
## 1489 BO Bolivia 2187.3545 1976 2022-09-16
## 1490 BO Bolivia 2196.4573 1979 2022-09-16
## 1491 BO Bolivia 2241.7400 1978 2022-09-16
## 1492 BO Bolivia 2245.6781 1977 2022-09-16
## 1493 BO Bolivia 1707.9079 1968 2022-09-16
## 1494 BO Bolivia 1606.8997 1967 2022-09-16
## 1495 BO Bolivia 1543.0107 1966 2022-09-16
## 1496 BO Bolivia 1469.5908 1965 2022-09-16
## 1497 BO Bolivia 1429.4708 1964 2022-09-16
## 1498 BO Bolivia 1402.9152 1963 2022-09-16
## 1499 BO Bolivia 2137.7110 1975 2022-09-16
## 1500 BO Bolivia 2036.5020 1974 2022-09-16
## 1501 BO Bolivia 2022.3205 1973 2022-09-16
## 1502 BO Bolivia 1954.8409 1972 2022-09-16
## 1503 BO Bolivia 1850.3531 1971 2022-09-16
## 1504 BO Bolivia 1799.5711 1970 2022-09-16
## 1505 BO Bolivia 1747.0329 1969 2022-09-16
## 1506 BO Bolivia 1960.4304 1982 2022-09-16
## 1507 BO Bolivia 2082.8125 1981 2022-09-16
## 1508 BO Bolivia 2120.7018 1980 2022-09-16
## 1509 BO Bolivia 3125.5291 2021 2022-09-16
## 1510 BO Bolivia 2986.0244 2020 2022-09-16
## 1511 BO Bolivia 3317.3709 2019 2022-09-16
## 1512 BO Bolivia 3291.1564 2018 2022-09-16
## 1513 BO Bolivia 3203.0044 2017 2022-09-16
## 1514 BO Bolivia 3118.9137 2016 2022-09-16
## 1515 BO Bolivia 3035.9717 2015 2022-09-16
## 1516 BO Bolivia 2939.4775 2014 2022-09-16
## 1517 BO Bolivia 2830.6735 2013 2022-09-16
## 1518 BO Bolivia 2692.6075 2012 2022-09-16
## 1519 BO Bolivia 2602.7185 2011 2022-09-16
## 1520 BO Bolivia 2514.4348 2010 2022-09-16
## 1521 BO Bolivia 2454.8003 2009 2022-09-16
## 1522 BO Bolivia 2414.9734 2008 2022-09-16
## 1523 BO Bolivia 2313.8912 2007 2022-09-16
## 1524 BO Bolivia 2251.2750 2006 2022-09-16
## 1525 BO Bolivia 2186.1867 2005 2022-09-16
## 1526 BO Bolivia 1339.9392 1962 2022-09-16
## 1527 BO Bolivia 1294.3351 1961 2022-09-16
## 1528 BO Bolivia 1292.8056 1960 2022-09-16
## 1529 BO Bolivia 2054.3309 2001 2022-09-16
## 1530 BO Bolivia 2059.1853 2000 2022-09-16
## 1531 BO Bolivia 2048.0265 1999 2022-09-16
## 1532 BO Bolivia 2079.6967 1998 2022-09-16
## 1533 BO Bolivia 2019.8516 1997 2022-09-16
## 1534 BO Bolivia 1963.6408 1996 2022-09-16
## 1535 BO Bolivia 1920.3180 1995 2022-09-16
## 1536 BO Bolivia 1872.7099 1994 2022-09-16
## 1537 BO Bolivia 1826.8656 1993 2022-09-16
## 1538 BO Bolivia 1789.2400 1992 2022-09-16
## 1539 BO Bolivia 1797.7802 1991 2022-09-16
## 1540 BO Bolivia 1744.3120 1990 2022-09-16
## 1541 BO Bolivia 1702.6792 1989 2022-09-16
## 1542 BO Bolivia 1675.6038 1988 2022-09-16
## 1543 BO Bolivia 1662.9779 1987 2022-09-16
## 1544 BO Bolivia 1657.3881 1986 2022-09-16
## 1545 BO Bolivia 1736.8716 1985 2022-09-16
## 1546 BO Bolivia 1803.0550 1984 2022-09-16
## 1547 BO Bolivia 1843.6233 1983 2022-09-16
## 1548 BO Bolivia 2131.3071 2004 2022-09-16
## 1549 BO Bolivia 2083.4219 2003 2022-09-16
## 1550 BO Bolivia 2066.2417 2002 2022-09-16
## 1551 BR Brazil 7352.2826 2005 2022-09-16
## 1552 BR Brazil 6904.6253 2002 2022-09-16
## 1553 BR Brazil 6788.5766 2001 2022-09-16
## 1554 BR Brazil 7206.2618 2004 2022-09-16
## 1555 BR Brazil 6896.1372 2003 2022-09-16
## 1556 BR Brazil 6420.4074 1994 2022-09-16
## 1557 BR Brazil 6165.3169 1993 2022-09-16
## 1558 BR Brazil 5974.5901 1992 2022-09-16
## 1559 BR Brazil 6110.7191 1991 2022-09-16
## 1560 BR Brazil 6155.6454 1990 2022-09-16
## 1561 BR Brazil 6553.2380 1989 2022-09-16
## 1562 BR Brazil 6471.9527 1988 2022-09-16
## 1563 BR Brazil 6787.6690 2000 2022-09-16
## 1564 BR Brazil 6595.6161 1999 2022-09-16
## 1565 BR Brazil 6662.8534 1998 2022-09-16
## 1566 BR Brazil 6742.7117 1997 2022-09-16
## 1567 BR Brazil 6624.1004 1996 2022-09-16
## 1568 BR Brazil 6584.7392 1995 2022-09-16
## 1569 BR Brazil 8551.2053 2021 2022-09-16
## 1570 BR Brazil 8228.7743 2020 2022-09-16
## 1571 BR Brazil 8622.0666 2019 2022-09-16
## 1572 BR Brazil 8582.3386 2018 2022-09-16
## 1573 BR Brazil 8498.2939 2017 2022-09-16
## 1574 BR Brazil 8455.3123 2016 2022-09-16
## 1575 BR Brazil 8813.9898 2015 2022-09-16
## 1576 BR Brazil 9214.9772 2014 2022-09-16
## 1577 BR Brazil 9247.5734 2013 2022-09-16
## 1578 BR Brazil 9056.5804 2012 2022-09-16
## 1579 BR Brazil 8965.6206 2011 2022-09-16
## 1580 BR Brazil 8702.2553 2010 2022-09-16
## 1581 BR Brazil 8169.2624 2009 2022-09-16
## 1582 BR Brazil 8258.6159 2008 2022-09-16
## 1583 BR Brazil 7936.8244 2007 2022-09-16
## 1584 BR Brazil 7560.7020 2006 2022-09-16
## 1585 BR Brazil 2893.5758 1966 2022-09-16
## 1586 BR Brazil 2787.4388 1965 2022-09-16
## 1587 BR Brazil 2799.6419 1964 2022-09-16
## 1588 BR Brazil 2786.3624 1963 2022-09-16
## 1589 BR Brazil 2851.4929 1962 2022-09-16
## 1590 BR Brazil 2754.2463 1961 2022-09-16
## 1591 BR Brazil 2611.0534 1960 2022-09-16
## 1592 BR Brazil 6504.9757 1986 2022-09-16
## 1593 BR Brazil 6178.5239 1985 2022-09-16
## 1594 BR Brazil 5853.8973 1984 2022-09-16
## 1595 BR Brazil 5679.8974 1983 2022-09-16
## 1596 BR Brazil 5987.8205 1982 2022-09-16
## 1597 BR Brazil 6079.2440 1981 2022-09-16
## 1598 BR Brazil 6500.3878 1980 2022-09-16
## 1599 BR Brazil 6094.9209 1979 2022-09-16
## 1600 BR Brazil 5845.7525 1978 2022-09-16
## 1601 BR Brazil 5702.5144 1977 2022-09-16
## 1602 BR Brazil 5564.7634 1976 2022-09-16
## 1603 BR Brazil 5168.2806 1975 2022-09-16
## 1604 BR Brazil 6601.5891 1987 2022-09-16
## 1605 BR Brazil 4764.1180 1973 2022-09-16
## 1606 BR Brazil 4280.6683 1972 2022-09-16
## 1607 BR Brazil 3917.2858 1971 2022-09-16
## 1608 BR Brazil 3605.8705 1970 2022-09-16
## 1609 BR Brazil 3349.5318 1969 2022-09-16
## 1610 BR Brazil 3138.7857 1968 2022-09-16
## 1611 BR Brazil 2934.9877 1967 2022-09-16
## 1612 BR Brazil 5032.1796 1974 2022-09-16
## 1613 BS Bahamas, The 24589.9026 1964 2022-09-16
## 1614 BS Bahamas, The 27052.1940 1966 2022-09-16
## 1615 BS Bahamas, The 25921.4976 1965 2022-09-16
## 1616 BS Bahamas, The 31218.7235 1969 2022-09-16
## 1617 BS Bahamas, The 29660.0685 1968 2022-09-16
## 1618 BS Bahamas, The 28436.4900 1967 2022-09-16
## 1619 BS Bahamas, The 29808.2328 1994 2022-09-16
## 1620 BS Bahamas, The 29408.2737 1993 2022-09-16
## 1621 BS Bahamas, The 29873.1414 1992 2022-09-16
## 1622 BS Bahamas, The 23365.2899 1963 2022-09-16
## 1623 BS Bahamas, The 22231.2435 1962 2022-09-16
## 1624 BS Bahamas, The 21171.8460 1961 2022-09-16
## 1625 BS Bahamas, The 20106.9500 1960 2022-09-16
## 1626 BS Bahamas, The 35793.9117 2000 2022-09-16
## 1627 BS Bahamas, The 34833.2935 1999 2022-09-16
## 1628 BS Bahamas, The 31416.3742 1998 2022-09-16
## 1629 BS Bahamas, The 33268.5450 1997 2022-09-16
## 1630 BS Bahamas, The 31499.0727 1996 2022-09-16
## 1631 BS Bahamas, The 30632.6214 1995 2022-09-16
## 1632 BS Bahamas, The 27445.1408 2021 2022-09-16
## 1633 BS Bahamas, The 24359.0036 2020 2022-09-16
## 1634 BS Bahamas, The 32285.5424 2019 2022-09-16
## 1635 BS Bahamas, The 32001.1557 2018 2022-09-16
## 1636 BS Bahamas, The 31745.6450 2017 2022-09-16
## 1637 BS Bahamas, The 31117.8857 2016 2022-09-16
## 1638 BS Bahamas, The 31699.3586 2015 2022-09-16
## 1639 BS Bahamas, The 31689.2478 2014 2022-09-16
## 1640 BS Bahamas, The 31407.9349 2013 2022-09-16
## 1641 BS Bahamas, The 32652.2081 2012 2022-09-16
## 1642 BS Bahamas, The 32026.6263 2011 2022-09-16
## 1643 BS Bahamas, The 32248.1300 2010 2022-09-16
## 1644 BS Bahamas, The 32244.2966 2009 2022-09-16
## 1645 BS Bahamas, The 34229.0539 2008 2022-09-16
## 1646 BS Bahamas, The 35696.9205 2007 2022-09-16
## 1647 BS Bahamas, The 35863.3661 2006 2022-09-16
## 1648 BS Bahamas, The 35648.8530 2005 2022-09-16
## 1649 BS Bahamas, The 35122.0730 2004 2022-09-16
## 1650 BS Bahamas, The 35456.2898 2003 2022-09-16
## 1651 BS Bahamas, The 36548.3894 2002 2022-09-16
## 1652 BS Bahamas, The 36178.4613 2001 2022-09-16
## 1653 BS Bahamas, The 32992.6219 1987 2022-09-16
## 1654 BS Bahamas, The 32605.4554 1986 2022-09-16
## 1655 BS Bahamas, The 32636.2613 1985 2022-09-16
## 1656 BS Bahamas, The 31764.6310 1984 2022-09-16
## 1657 BS Bahamas, The 28417.4513 1983 2022-09-16
## 1658 BS Bahamas, The 28042.8252 1982 2022-09-16
## 1659 BS Bahamas, The 26875.5435 1981 2022-09-16
## 1660 BS Bahamas, The 30272.5096 1980 2022-09-16
## 1661 BS Bahamas, The 29060.6614 1979 2022-09-16
## 1662 BS Bahamas, The 31658.9511 1991 2022-09-16
## 1663 BS Bahamas, The 33657.0237 1990 2022-09-16
## 1664 BS Bahamas, The 34812.8973 1989 2022-09-16
## 1665 BS Bahamas, The 33183.6451 1988 2022-09-16
## 1666 BS Bahamas, The 22954.8992 1974 2022-09-16
## 1667 BS Bahamas, The 28119.6085 1973 2022-09-16
## 1668 BS Bahamas, The 26678.6834 1972 2022-09-16
## 1669 BS Bahamas, The 28276.5296 1971 2022-09-16
## 1670 BS Bahamas, The 28566.1574 1970 2022-09-16
## 1671 BS Bahamas, The 23554.1310 1978 2022-09-16
## 1672 BS Bahamas, The 21087.6653 1977 2022-09-16
## 1673 BS Bahamas, The 19739.3474 1976 2022-09-16
## 1674 BS Bahamas, The 19164.4666 1975 2022-09-16
## 1675 BT Bhutan 1108.4398 2000 2022-09-16
## 1676 BT Bhutan 1040.0369 1998 2022-09-16
## 1677 BT Bhutan 1004.5050 1997 2022-09-16
## 1678 BT Bhutan 971.3088 1996 2022-09-16
## 1679 BT Bhutan 1096.8215 1999 2022-09-16
## 1680 BT Bhutan 874.7688 1994 2022-09-16
## 1681 BT Bhutan 832.4261 1993 2022-09-16
## 1682 BT Bhutan 813.2584 1992 2022-09-16
## 1683 BT Bhutan 777.3242 1991 2022-09-16
## 1684 BT Bhutan 786.1482 1990 2022-09-16
## 1685 BT Bhutan 723.9676 1989 2022-09-16
## 1686 BT Bhutan 691.0946 1988 2022-09-16
## 1687 BT Bhutan 679.9561 1987 2022-09-16
## 1688 BT Bhutan 544.0795 1986 2022-09-16
## 1689 BT Bhutan 503.6056 1985 2022-09-16
## 1690 BT Bhutan 497.8210 1984 2022-09-16
## 1691 BT Bhutan 488.7350 1983 2022-09-16
## 1692 BT Bhutan 931.8786 1995 2022-09-16
## 1693 BT Bhutan NA 2021 2022-09-16
## 1694 BT Bhutan 2879.6386 2020 2022-09-16
## 1695 BT Bhutan 3238.0605 2019 2022-09-16
## 1696 BT Bhutan 3097.1484 2018 2022-09-16
## 1697 BT Bhutan 3040.9370 2017 2022-09-16
## 1698 BT Bhutan 2940.7000 2016 2022-09-16
## 1699 BT Bhutan 2752.6302 2015 2022-09-16
## 1700 BT Bhutan 2612.8863 2014 2022-09-16
## 1701 BT Bhutan 2500.8645 2013 2022-09-16
## 1702 BT Bhutan 2479.1517 2012 2022-09-16
## 1703 BT Bhutan 2386.6211 2011 2022-09-16
## 1704 BT Bhutan 2235.3227 2010 2022-09-16
## 1705 BT Bhutan 2017.9035 2009 2022-09-16
## 1706 BT Bhutan 1909.2459 2008 2022-09-16
## 1707 BT Bhutan 1840.2716 2007 2022-09-16
## 1708 BT Bhutan 1572.4621 2006 2022-09-16
## 1709 BT Bhutan 1489.2118 2005 2022-09-16
## 1710 BT Bhutan 1409.6480 2004 2022-09-16
## 1711 BT Bhutan 1352.9790 2003 2022-09-16
## 1712 BT Bhutan 1278.8778 2002 2022-09-16
## 1713 BT Bhutan 1175.8568 2001 2022-09-16
## 1714 BT Bhutan NA 1962 2022-09-16
## 1715 BT Bhutan NA 1961 2022-09-16
## 1716 BT Bhutan NA 1960 2022-09-16
## 1717 BT Bhutan NA 1973 2022-09-16
## 1718 BT Bhutan NA 1972 2022-09-16
## 1719 BT Bhutan NA 1971 2022-09-16
## 1720 BT Bhutan NA 1970 2022-09-16
## 1721 BT Bhutan 453.8014 1982 2022-09-16
## 1722 BT Bhutan 450.0755 1981 2022-09-16
## 1723 BT Bhutan 401.7388 1980 2022-09-16
## 1724 BT Bhutan NA 1979 2022-09-16
## 1725 BT Bhutan NA 1978 2022-09-16
## 1726 BT Bhutan NA 1977 2022-09-16
## 1727 BT Bhutan NA 1976 2022-09-16
## 1728 BT Bhutan NA 1975 2022-09-16
## 1729 BT Bhutan NA 1974 2022-09-16
## 1730 BT Bhutan NA 1969 2022-09-16
## 1731 BT Bhutan NA 1968 2022-09-16
## 1732 BT Bhutan NA 1967 2022-09-16
## 1733 BT Bhutan NA 1966 2022-09-16
## 1734 BT Bhutan NA 1965 2022-09-16
## 1735 BT Bhutan NA 1964 2022-09-16
## 1736 BT Bhutan NA 1963 2022-09-16
## 1737 BW Botswana 1849.2419 1980 2022-09-16
## 1738 BW Botswana 1713.8877 1979 2022-09-16
## 1739 BW Botswana 653.1700 1970 2022-09-16
## 1740 BW Botswana 572.6690 1969 2022-09-16
## 1741 BW Botswana 509.3981 1968 2022-09-16
## 1742 BW Botswana 470.8481 1967 2022-09-16
## 1743 BW Botswana 453.9485 1966 2022-09-16
## 1744 BW Botswana 1588.0870 1978 2022-09-16
## 1745 BW Botswana 1444.4143 1977 2022-09-16
## 1746 BW Botswana 1340.6802 1976 2022-09-16
## 1747 BW Botswana 1258.4724 1975 2022-09-16
## 1748 BW Botswana 1203.7207 1974 2022-09-16
## 1749 BW Botswana 1146.1464 1973 2022-09-16
## 1750 BW Botswana 977.1685 1972 2022-09-16
## 1751 BW Botswana 798.1302 1971 2022-09-16
## 1752 BW Botswana 2418.5576 1984 2022-09-16
## 1753 BW Botswana 2307.1467 1983 2022-09-16
## 1754 BW Botswana 2109.5213 1982 2022-09-16
## 1755 BW Botswana 1946.3095 1981 2022-09-16
## 1756 BW Botswana 6887.7522 2021 2022-09-16
## 1757 BW Botswana 6304.8623 2020 2022-09-16
## 1758 BW Botswana 7051.3465 2019 2022-09-16
## 1759 BW Botswana 6973.0988 2018 2022-09-16
## 1760 BW Botswana 6855.1603 2017 2022-09-16
## 1761 BW Botswana 6729.0656 2016 2022-09-16
## 1762 BW Botswana 6402.9102 2015 2022-09-16
## 1763 BW Botswana 6895.5744 2014 2022-09-16
## 1764 BW Botswana 6704.5368 2013 2022-09-16
## 1765 BW Botswana 6089.3991 2012 2022-09-16
## 1766 BW Botswana 5899.4628 2011 2022-09-16
## 1767 BW Botswana 5642.2200 2010 2022-09-16
## 1768 BW Botswana 5286.5749 2009 2022-09-16
## 1769 BW Botswana 5837.7793 2008 2022-09-16
## 1770 BW Botswana 5612.3278 2007 2022-09-16
## 1771 BW Botswana 435.9854 1965 2022-09-16
## 1772 BW Botswana 421.1496 1964 2022-09-16
## 1773 BW Botswana 403.1774 1963 2022-09-16
## 1774 BW Botswana 389.2984 1962 2022-09-16
## 1775 BW Botswana 372.8612 1961 2022-09-16
## 1776 BW Botswana 357.5632 1960 2022-09-16
## 1777 BW Botswana 4569.2152 2000 2022-09-16
## 1778 BW Botswana 4572.1809 1999 2022-09-16
## 1779 BW Botswana 4260.2389 1998 2022-09-16
## 1780 BW Botswana 4338.9003 1997 2022-09-16
## 1781 BW Botswana 4100.4435 1996 2022-09-16
## 1782 BW Botswana 3968.3207 1995 2022-09-16
## 1783 BW Botswana 3798.4366 1994 2022-09-16
## 1784 BW Botswana 3757.0233 1993 2022-09-16
## 1785 BW Botswana 3782.5504 1992 2022-09-16
## 1786 BW Botswana 3778.4777 1991 2022-09-16
## 1787 BW Botswana 3624.3296 1990 2022-09-16
## 1788 BW Botswana 3509.7311 1989 2022-09-16
## 1789 BW Botswana 3219.2063 1988 2022-09-16
## 1790 BW Botswana 2800.4288 1987 2022-09-16
## 1791 BW Botswana 2602.0567 1986 2022-09-16
## 1792 BW Botswana 2498.4842 1985 2022-09-16
## 1793 BW Botswana 4816.5700 2003 2022-09-16
## 1794 BW Botswana 5294.9697 2006 2022-09-16
## 1795 BW Botswana 4986.3280 2005 2022-09-16
## 1796 BW Botswana 4859.6290 2004 2022-09-16
## 1797 BW Botswana 4683.9559 2002 2022-09-16
## 1798 BW Botswana 4494.9388 2001 2022-09-16
## 1799 BY Belarus NA 1972 2022-09-16
## 1800 BY Belarus NA 1975 2022-09-16
## 1801 BY Belarus NA 1974 2022-09-16
## 1802 BY Belarus NA 1973 2022-09-16
## 1803 BY Belarus NA 1968 2022-09-16
## 1804 BY Belarus NA 1971 2022-09-16
## 1805 BY Belarus NA 1970 2022-09-16
## 1806 BY Belarus NA 1969 2022-09-16
## 1807 BY Belarus NA 1964 2022-09-16
## 1808 BY Belarus NA 1963 2022-09-16
## 1809 BY Belarus NA 1962 2022-09-16
## 1810 BY Belarus NA 1961 2022-09-16
## 1811 BY Belarus NA 1960 2022-09-16
## 1812 BY Belarus 2912.1234 2002 2022-09-16
## 1813 BY Belarus 2754.6645 2001 2022-09-16
## 1814 BY Belarus 2616.9130 2000 2022-09-16
## 1815 BY Belarus 2461.8269 1999 2022-09-16
## 1816 BY Belarus 2370.1865 1998 2022-09-16
## 1817 BY Belarus NA 1967 2022-09-16
## 1818 BY Belarus NA 1966 2022-09-16
## 1819 BY Belarus NA 1965 2022-09-16
## 1820 BY Belarus 6418.2376 2021 2022-09-16
## 1821 BY Belarus 6234.8243 2020 2022-09-16
## 1822 BY Belarus 6264.8610 2019 2022-09-16
## 1823 BY Belarus 6165.9093 2018 2022-09-16
## 1824 BY Belarus 5964.8929 2017 2022-09-16
## 1825 BY Belarus 5811.1979 2016 2022-09-16
## 1826 BY Belarus 5967.0522 2015 2022-09-16
## 1827 BY Belarus 6212.9128 2014 2022-09-16
## 1828 BY Belarus 6110.9047 2013 2022-09-16
## 1829 BY Belarus 6047.8711 2012 2022-09-16
## 1830 BY Belarus 5938.2207 2011 2022-09-16
## 1831 BY Belarus 5621.9372 2010 2022-09-16
## 1832 BY Belarus 5203.8549 2009 2022-09-16
## 1833 BY Belarus 5180.7123 2008 2022-09-16
## 1834 BY Belarus 4684.9803 2007 2022-09-16
## 1835 BY Belarus 4294.2287 2006 2022-09-16
## 1836 BY Belarus 3880.0144 2005 2022-09-16
## 1837 BY Belarus 3522.4899 2004 2022-09-16
## 1838 BY Belarus 3139.1210 2003 2022-09-16
## 1839 BY Belarus NA 1989 2022-09-16
## 1840 BY Belarus NA 1988 2022-09-16
## 1841 BY Belarus NA 1987 2022-09-16
## 1842 BY Belarus NA 1986 2022-09-16
## 1843 BY Belarus NA 1985 2022-09-16
## 1844 BY Belarus 2176.6924 1997 2022-09-16
## 1845 BY Belarus 1945.8389 1996 2022-09-16
## 1846 BY Belarus 1886.4774 1995 2022-09-16
## 1847 BY Belarus 2098.6243 1994 2022-09-16
## 1848 BY Belarus 2373.8905 1993 2022-09-16
## 1849 BY Belarus 2574.8239 1992 2022-09-16
## 1850 BY Belarus 2854.5208 1991 2022-09-16
## 1851 BY Belarus 2890.5242 1990 2022-09-16
## 1852 BY Belarus NA 1976 2022-09-16
## 1853 BY Belarus NA 1984 2022-09-16
## 1854 BY Belarus NA 1983 2022-09-16
## 1855 BY Belarus NA 1982 2022-09-16
## 1856 BY Belarus NA 1981 2022-09-16
## 1857 BY Belarus NA 1980 2022-09-16
## 1858 BY Belarus NA 1979 2022-09-16
## 1859 BY Belarus NA 1978 2022-09-16
## 1860 BY Belarus NA 1977 2022-09-16
## 1861 BZ Belize 1910.5083 1976 2022-09-16
## 1862 BZ Belize 1938.1055 1975 2022-09-16
## 1863 BZ Belize 1898.8004 1974 2022-09-16
## 1864 BZ Belize 1698.0751 1973 2022-09-16
## 1865 BZ Belize 1638.9651 1972 2022-09-16
## 1866 BZ Belize 1515.1025 1971 2022-09-16
## 1867 BZ Belize 1340.4192 1966 2022-09-16
## 1868 BZ Belize 1318.2986 1965 2022-09-16
## 1869 BZ Belize 1293.5436 1964 2022-09-16
## 1870 BZ Belize 1267.6645 1963 2022-09-16
## 1871 BZ Belize 1242.1898 1962 2022-09-16
## 1872 BZ Belize 1217.9128 1961 2022-09-16
## 1873 BZ Belize 1194.3015 1960 2022-09-16
## 1874 BZ Belize 4275.2734 2000 2022-09-16
## 1875 BZ Belize 3914.6429 1999 2022-09-16
## 1876 BZ Belize 1488.5414 1970 2022-09-16
## 1877 BZ Belize 1454.9716 1969 2022-09-16
## 1878 BZ Belize 1422.4983 1968 2022-09-16
## 1879 BZ Belize 1364.3645 1967 2022-09-16
## 1880 BZ Belize 4151.2104 2021 2022-09-16
## 1881 BZ Belize 3851.6982 2020 2022-09-16
## 1882 BZ Belize 4712.8401 2019 2022-09-16
## 1883 BZ Belize 4709.8559 2018 2022-09-16
## 1884 BZ Belize 4705.0966 2017 2022-09-16
## 1885 BZ Belize 4699.2724 2016 2022-09-16
## 1886 BZ Belize 4805.1969 2015 2022-09-16
## 1887 BZ Belize 4769.9140 2014 2022-09-16
## 1888 BZ Belize 4667.1792 2013 2022-09-16
## 1889 BZ Belize 4733.5467 2012 2022-09-16
## 1890 BZ Belize 4729.9901 2011 2022-09-16
## 1891 BZ Belize 4767.5293 2010 2022-09-16
## 1892 BZ Belize 4728.5675 2009 2022-09-16
## 1893 BZ Belize 4834.7901 2008 2022-09-16
## 1894 BZ Belize 4827.7500 2007 2022-09-16
## 1895 BZ Belize 4898.0933 2006 2022-09-16
## 1896 BZ Belize 4809.0534 2005 2022-09-16
## 1897 BZ Belize 4829.5450 2004 2022-09-16
## 1898 BZ Belize 4736.3473 2003 2022-09-16
## 1899 BZ Belize 4448.1690 2002 2022-09-16
## 1900 BZ Belize 4352.8694 2001 2022-09-16
## 1901 BZ Belize 2447.2398 1987 2022-09-16
## 1902 BZ Belize 2272.0797 1986 2022-09-16
## 1903 BZ Belize 3735.1801 1998 2022-09-16
## 1904 BZ Belize 3741.4354 1997 2022-09-16
## 1905 BZ Belize 3747.2107 1996 2022-09-16
## 1906 BZ Belize 3813.9772 1995 2022-09-16
## 1907 BZ Belize 3888.8218 1994 2022-09-16
## 1908 BZ Belize 3962.3183 1993 2022-09-16
## 1909 BZ Belize 3791.6697 1992 2022-09-16
## 1910 BZ Belize 3440.0941 1991 2022-09-16
## 1911 BZ Belize 3145.2250 1990 2022-09-16
## 1912 BZ Belize 2885.0697 1989 2022-09-16
## 1913 BZ Belize 2616.3813 1988 2022-09-16
## 1914 BZ Belize 2296.2025 1983 2022-09-16
## 1915 BZ Belize 2413.6250 1982 2022-09-16
## 1916 BZ Belize 2234.7129 1985 2022-09-16
## 1917 BZ Belize 2275.4643 1984 2022-09-16
## 1918 BZ Belize 2257.9395 1979 2022-09-16
## 1919 BZ Belize 2135.2400 1978 2022-09-16
## 1920 BZ Belize 2480.3123 1981 2022-09-16
## 1921 BZ Belize 2510.8663 1980 2022-09-16
## 1922 BZ Belize 2007.1939 1977 2022-09-16
## 1923 CA Canada NA 1978 2022-09-16
## 1924 CA Canada 31830.6171 1998 2022-09-16
## 1925 CA Canada 31222.7248 1997 2022-09-16
## 1926 CA Canada NA 1996 2022-09-16
## 1927 CA Canada NA 1995 2022-09-16
## 1928 CA Canada NA 1994 2022-09-16
## 1929 CA Canada NA 1993 2022-09-16
## 1930 CA Canada NA 1992 2022-09-16
## 1931 CA Canada NA 1991 2022-09-16
## 1932 CA Canada NA 1990 2022-09-16
## 1933 CA Canada NA 1989 2022-09-16
## 1934 CA Canada NA 1988 2022-09-16
## 1935 CA Canada NA 1987 2022-09-16
## 1936 CA Canada NA 1986 2022-09-16
## 1937 CA Canada NA 1985 2022-09-16
## 1938 CA Canada NA 1984 2022-09-16
## 1939 CA Canada NA 1983 2022-09-16
## 1940 CA Canada NA 1982 2022-09-16
## 1941 CA Canada NA 1981 2022-09-16
## 1942 CA Canada NA 1980 2022-09-16
## 1943 CA Canada NA 1979 2022-09-16
## 1944 CA Canada 43945.5570 2021 2022-09-16
## 1945 CA Canada NA 1977 2022-09-16
## 1946 CA Canada NA 1976 2022-09-16
## 1947 CA Canada NA 1975 2022-09-16
## 1948 CA Canada NA 1974 2022-09-16
## 1949 CA Canada NA 1973 2022-09-16
## 1950 CA Canada NA 1972 2022-09-16
## 1951 CA Canada NA 1971 2022-09-16
## 1952 CA Canada NA 1970 2022-09-16
## 1953 CA Canada NA 1969 2022-09-16
## 1954 CA Canada NA 1968 2022-09-16
## 1955 CA Canada NA 1967 2022-09-16
## 1956 CA Canada NA 1966 2022-09-16
## 1957 CA Canada NA 1965 2022-09-16
## 1958 CA Canada NA 1964 2022-09-16
## 1959 CA Canada NA 1963 2022-09-16
## 1960 CA Canada NA 1962 2022-09-16
## 1961 CA Canada NA 1961 2022-09-16
## 1962 CA Canada NA 1960 2022-09-16
## 1963 CA Canada 35015.7950 2002 2022-09-16
## 1964 CA Canada 34227.3417 2001 2022-09-16
## 1965 CA Canada 34121.6092 2000 2022-09-16
## 1966 CA Canada 32826.5308 1999 2022-09-16
## 1967 CA Canada 42315.8074 2012 2022-09-16
## 1968 CA Canada 42036.9978 2011 2022-09-16
## 1969 CA Canada 41155.3236 2010 2022-09-16
## 1970 CA Canada 40368.2920 2009 2022-09-16
## 1971 CA Canada 42063.6331 2008 2022-09-16
## 1972 CA Canada 42258.6910 2020 2022-09-16
## 1973 CA Canada 45109.2445 2019 2022-09-16
## 1974 CA Canada 44917.4837 2018 2022-09-16
## 1975 CA Canada 44325.4883 2017 2022-09-16
## 1976 CA Canada 43536.9134 2016 2022-09-16
## 1977 CA Canada 43596.1355 2015 2022-09-16
## 1978 CA Canada 43635.0955 2014 2022-09-16
## 1979 CA Canada 42846.2842 2013 2022-09-16
## 1980 CA Canada 37086.4493 2004 2022-09-16
## 1981 CA Canada 42097.4351 2007 2022-09-16
## 1982 CA Canada 39776.1795 2006 2022-09-16
## 1983 CA Canada 38573.1998 2005 2022-09-16
## 1984 CA Canada 36024.0992 2003 2022-09-16
## 1985 CD Congo, Dem. Rep. 432.6784 2012 2022-09-16
## 1986 CD Congo, Dem. Rep. 417.7570 2011 2022-09-16
## 1987 CD Congo, Dem. Rep. 480.7662 2014 2022-09-16
## 1988 CD Congo, Dem. Rep. 453.9989 2013 2022-09-16
## 1989 CD Congo, Dem. Rep. 517.9268 2021 2022-09-16
## 1990 CD Congo, Dem. Rep. 505.3483 2020 2022-09-16
## 1991 CD Congo, Dem. Rep. 512.5863 2019 2022-09-16
## 1992 CD Congo, Dem. Rep. 506.9583 2018 2022-09-16
## 1993 CD Congo, Dem. Rep. 494.7812 2017 2022-09-16
## 1994 CD Congo, Dem. Rep. 492.8028 2016 2022-09-16
## 1995 CD Congo, Dem. Rep. 497.3170 2015 2022-09-16
## 1996 CD Congo, Dem. Rep. 940.4490 1989 2022-09-16
## 1997 CD Congo, Dem. Rep. 982.4830 1988 2022-09-16
## 1998 CD Congo, Dem. Rep. 1006.2651 1987 2022-09-16
## 1999 CD Congo, Dem. Rep. 1007.0263 1986 2022-09-16
## 2000 CD Congo, Dem. Rep. 987.4944 1985 2022-09-16
## 2001 CD Congo, Dem. Rep. 1008.6013 1984 2022-09-16
## 2002 CD Congo, Dem. Rep. 979.7314 1983 2022-09-16
## 2003 CD Congo, Dem. Rep. 990.0235 1982 2022-09-16
## 2004 CD Congo, Dem. Rep. 1019.4749 1981 2022-09-16
## 2005 CD Congo, Dem. Rep. 1021.8122 1980 2022-09-16
## 2006 CD Congo, Dem. Rep. 1026.9555 1979 2022-09-16
## 2007 CD Congo, Dem. Rep. 1051.5347 1978 2022-09-16
## 2008 CD Congo, Dem. Rep. 1143.3179 1977 2022-09-16
## 2009 CD Congo, Dem. Rep. 1167.8514 1976 2022-09-16
## 2010 CD Congo, Dem. Rep. 1268.7012 1975 2022-09-16
## 2011 CD Congo, Dem. Rep. 1372.4566 1974 2022-09-16
## 2012 CD Congo, Dem. Rep. 1367.0968 1973 2022-09-16
## 2013 CD Congo, Dem. Rep. 1298.2863 1972 2022-09-16
## 2014 CD Congo, Dem. Rep. 1331.4583 1971 2022-09-16
## 2015 CD Congo, Dem. Rep. 404.1516 2010 2022-09-16
## 2016 CD Congo, Dem. Rep. 390.1121 2009 2022-09-16
## 2017 CD Congo, Dem. Rep. 392.0747 2008 2022-09-16
## 2018 CD Congo, Dem. Rep. 381.4556 2007 2022-09-16
## 2019 CD Congo, Dem. Rep. 370.8858 2006 2022-09-16
## 2020 CD Congo, Dem. Rep. 363.6675 2005 2022-09-16
## 2021 CD Congo, Dem. Rep. 353.7319 2004 2022-09-16
## 2022 CD Congo, Dem. Rep. 341.9907 2003 2022-09-16
## 2023 CD Congo, Dem. Rep. 334.0157 2002 2022-09-16
## 2024 CD Congo, Dem. Rep. 334.1200 2001 2022-09-16
## 2025 CD Congo, Dem. Rep. 350.8708 2000 2022-09-16
## 2026 CD Congo, Dem. Rep. 386.6562 1999 2022-09-16
## 2027 CD Congo, Dem. Rep. 413.5363 1998 2022-09-16
## 2028 CD Congo, Dem. Rep. 430.1735 1997 2022-09-16
## 2029 CD Congo, Dem. Rep. 467.1799 1996 2022-09-16
## 2030 CD Congo, Dem. Rep. 485.4171 1995 2022-09-16
## 2031 CD Congo, Dem. Rep. 497.8893 1994 2022-09-16
## 2032 CD Congo, Dem. Rep. 537.2772 1993 2022-09-16
## 2033 CD Congo, Dem. Rep. 645.5536 1992 2022-09-16
## 2034 CD Congo, Dem. Rep. 749.9266 1991 2022-09-16
## 2035 CD Congo, Dem. Rep. 849.5526 1990 2022-09-16
## 2036 CD Congo, Dem. Rep. 1323.7084 1963 2022-09-16
## 2037 CD Congo, Dem. Rep. 1291.1015 1962 2022-09-16
## 2038 CD Congo, Dem. Rep. 1092.7452 1961 2022-09-16
## 2039 CD Congo, Dem. Rep. 1257.0627 1960 2022-09-16
## 2040 CD Congo, Dem. Rep. 1252.1617 1968 2022-09-16
## 2041 CD Congo, Dem. Rep. 1235.1155 1967 2022-09-16
## 2042 CD Congo, Dem. Rep. 1290.7453 1970 2022-09-16
## 2043 CD Congo, Dem. Rep. 1330.5673 1969 2022-09-16
## 2044 CD Congo, Dem. Rep. 1257.6392 1964 2022-09-16
## 2045 CD Congo, Dem. Rep. 1283.4867 1966 2022-09-16
## 2046 CD Congo, Dem. Rep. 1236.1019 1965 2022-09-16
## 2047 CF Central African Republic 483.0313 1999 2022-09-16
## 2048 CF Central African Republic 477.3187 1998 2022-09-16
## 2049 CF Central African Republic 467.0523 1997 2022-09-16
## 2050 CF Central African Republic 454.8332 1996 2022-09-16
## 2051 CF Central African Republic 486.3657 1995 2022-09-16
## 2052 CF Central African Republic 466.3831 1994 2022-09-16
## 2053 CF Central African Republic 457.5689 1993 2022-09-16
## 2054 CF Central African Republic 469.4336 1992 2022-09-16
## 2055 CF Central African Republic 515.7300 1991 2022-09-16
## 2056 CF Central African Republic 531.8557 1990 2022-09-16
## 2057 CF Central African Republic 555.6043 1989 2022-09-16
## 2058 CF Central African Republic 555.2997 1988 2022-09-16
## 2059 CF Central African Republic 555.6860 1987 2022-09-16
## 2060 CF Central African Republic 595.5993 1986 2022-09-16
## 2061 CF Central African Republic 587.6003 1985 2022-09-16
## 2062 CF Central African Republic 579.9480 1984 2022-09-16
## 2063 CF Central African Republic 545.1313 1983 2022-09-16
## 2064 CF Central African Republic 611.8931 1982 2022-09-16
## 2065 CF Central African Republic 585.8482 1981 2022-09-16
## 2066 CF Central African Republic 612.6464 1980 2022-09-16
## 2067 CF Central African Republic 658.9218 1979 2022-09-16
## 2068 CF Central African Republic 692.7642 1978 2022-09-16
## 2069 CF Central African Republic 700.5088 1977 2022-09-16
## 2070 CF Central African Republic 689.3190 1976 2022-09-16
## 2071 CF Central African Republic 666.7045 1975 2022-09-16
## 2072 CF Central African Republic 675.7405 1974 2022-09-16
## 2073 CF Central African Republic 645.3638 1973 2022-09-16
## 2074 CF Central African Republic 642.5772 1972 2022-09-16
## 2075 CF Central African Republic 652.1032 1971 2022-09-16
## 2076 CF Central African Republic 655.2684 1970 2022-09-16
## 2077 CF Central African Republic 651.9524 1969 2022-09-16
## 2078 CF Central African Republic 620.8821 1968 2022-09-16
## 2079 CF Central African Republic 625.1492 1967 2022-09-16
## 2080 CF Central African Republic 609.8160 1966 2022-09-16
## 2081 CF Central African Republic 618.2191 1965 2022-09-16
## 2082 CF Central African Republic 624.2515 1964 2022-09-16
## 2083 CF Central African Republic 622.8525 1963 2022-09-16
## 2084 CF Central African Republic 638.3898 1962 2022-09-16
## 2085 CF Central African Republic 674.2440 1961 2022-09-16
## 2086 CF Central African Republic 652.8550 1960 2022-09-16
## 2087 CF Central African Republic 460.3452 2000 2022-09-16
## 2088 CF Central African Republic 365.1161 2013 2022-09-16
## 2089 CF Central African Republic 575.5019 2012 2022-09-16
## 2090 CF Central African Republic 550.0199 2011 2022-09-16
## 2091 CF Central African Republic 531.7130 2010 2022-09-16
## 2092 CF Central African Republic 513.9374 2009 2022-09-16
## 2093 CF Central African Republic 411.1463 2021 2022-09-16
## 2094 CF Central African Republic 415.0910 2020 2022-09-16
## 2095 CF Central African Republic 418.7217 2019 2022-09-16
## 2096 CF Central African Republic 412.9902 2018 2022-09-16
## 2097 CF Central African Republic 404.0025 2017 2022-09-16
## 2098 CF Central African Republic 391.4735 2016 2022-09-16
## 2099 CF Central African Republic 377.4229 2015 2022-09-16
## 2100 CF Central African Republic 364.0840 2014 2022-09-16
## 2101 CF Central African Republic 454.5074 2005 2022-09-16
## 2102 CF Central African Republic 480.4109 2008 2022-09-16
## 2103 CF Central African Republic 479.1922 2007 2022-09-16
## 2104 CF Central African Republic 466.9768 2006 2022-09-16
## 2105 CF Central African Republic 470.3560 2001 2022-09-16
## 2106 CF Central African Republic 459.3453 2004 2022-09-16
## 2107 CF Central African Republic 442.1528 2003 2022-09-16
## 2108 CF Central African Republic 477.0976 2002 2022-09-16
## 2109 CG Congo, Rep. 2172.3166 2005 2022-09-16
## 2110 CG Congo, Rep. 2269.1567 2006 2022-09-16
## 2111 CG Congo, Rep. 2422.6831 2010 2022-09-16
## 2112 CG Congo, Rep. 2272.0445 2009 2022-09-16
## 2113 CG Congo, Rep. 2103.1421 2008 2022-09-16
## 2114 CG Congo, Rep. 2047.4681 2007 2022-09-16
## 2115 CG Congo, Rep. 2275.2642 1993 2022-09-16
## 2116 CG Congo, Rep. 2362.3126 1992 2022-09-16
## 2117 CG Congo, Rep. 2080.4581 2004 2022-09-16
## 2118 CG Congo, Rep. 2071.6692 2003 2022-09-16
## 2119 CG Congo, Rep. 2114.8847 2002 2022-09-16
## 2120 CG Congo, Rep. 2080.3242 2001 2022-09-16
## 2121 CG Congo, Rep. 2062.1164 2000 2022-09-16
## 2122 CG Congo, Rep. 1973.0339 1999 2022-09-16
## 2123 CG Congo, Rep. 2084.8785 1998 2022-09-16
## 2124 CG Congo, Rep. 2068.8985 1997 2022-09-16
## 2125 CG Congo, Rep. 2142.7895 1996 2022-09-16
## 2126 CG Congo, Rep. 2114.0415 1995 2022-09-16
## 2127 CG Congo, Rep. 2091.0877 1994 2022-09-16
## 2128 CG Congo, Rep. 1967.0091 1980 2022-09-16
## 2129 CG Congo, Rep. 1721.5540 1979 2022-09-16
## 2130 CG Congo, Rep. 1614.0126 1978 2022-09-16
## 2131 CG Congo, Rep. 1562.3124 1977 2022-09-16
## 2132 CG Congo, Rep. 1766.7615 1976 2022-09-16
## 2133 CG Congo, Rep. 1802.7895 1975 2022-09-16
## 2134 CG Congo, Rep. 1723.4326 1974 2022-09-16
## 2135 CG Congo, Rep. 1645.3485 1973 2022-09-16
## 2136 CG Congo, Rep. 1565.7439 1972 2022-09-16
## 2137 CG Congo, Rep. 1484.3882 1971 2022-09-16
## 2138 CG Congo, Rep. 1418.0704 1970 2022-09-16
## 2139 CG Congo, Rep. 1371.9371 1969 2022-09-16
## 2140 CG Congo, Rep. 1312.0269 1968 2022-09-16
## 2141 CG Congo, Rep. 1253.1996 1967 2022-09-16
## 2142 CG Congo, Rep. 1261.1098 1966 2022-09-16
## 2143 CG Congo, Rep. 1278.0074 1965 2022-09-16
## 2144 CG Congo, Rep. 1265.5877 1964 2022-09-16
## 2145 CG Congo, Rep. 1250.9804 1963 2022-09-16
## 2146 CG Congo, Rep. 1336.9081 1962 2022-09-16
## 2147 CG Congo, Rep. 1302.6147 1961 2022-09-16
## 2148 CG Congo, Rep. 1231.5779 1960 2022-09-16
## 2149 CG Congo, Rep. 2508.3459 1986 2022-09-16
## 2150 CG Congo, Rep. 2769.2392 1985 2022-09-16
## 2151 CG Congo, Rep. 2882.8982 1984 2022-09-16
## 2152 CG Congo, Rep. 2773.4212 1983 2022-09-16
## 2153 CG Congo, Rep. 2697.3044 1982 2022-09-16
## 2154 CG Congo, Rep. 2246.9910 1981 2022-09-16
## 2155 CG Congo, Rep. 1543.0167 2021 2022-09-16
## 2156 CG Congo, Rep. 1639.2374 2020 2022-09-16
## 2157 CG Congo, Rep. 2366.4597 1991 2022-09-16
## 2158 CG Congo, Rep. 2375.4025 1990 2022-09-16
## 2159 CG Congo, Rep. 2417.0907 1989 2022-09-16
## 2160 CG Congo, Rep. 2420.9798 1988 2022-09-16
## 2161 CG Congo, Rep. 2444.8555 1987 2022-09-16
## 2162 CG Congo, Rep. 2602.5048 2014 2022-09-16
## 2163 CG Congo, Rep. 2498.9545 2013 2022-09-16
## 2164 CG Congo, Rep. 2579.6990 2012 2022-09-16
## 2165 CG Congo, Rep. 2407.8936 2011 2022-09-16
## 2166 CG Congo, Rep. 1793.0281 2019 2022-09-16
## 2167 CG Congo, Rep. 1841.1739 2018 2022-09-16
## 2168 CG Congo, Rep. 1984.6985 2017 2022-09-16
## 2169 CG Congo, Rep. 2129.7155 2016 2022-09-16
## 2170 CG Congo, Rep. 2448.5238 2015 2022-09-16
## 2171 CH Switzerland 88224.1403 2021 2022-09-16
## 2172 CH Switzerland 85685.2903 2020 2022-09-16
## 2173 CH Switzerland 88413.1917 2019 2022-09-16
## 2174 CH Switzerland 87980.6707 2018 2022-09-16
## 2175 CH Switzerland 86119.1454 2017 2022-09-16
## 2176 CH Switzerland 85570.3961 2016 2022-09-16
## 2177 CH Switzerland 84776.1422 2015 2022-09-16
## 2178 CH Switzerland 84348.3928 2014 2022-09-16
## 2179 CH Switzerland 83344.5234 2013 2022-09-16
## 2180 CH Switzerland 82800.0741 2012 2022-09-16
## 2181 CH Switzerland 82677.5990 2011 2022-09-16
## 2182 CH Switzerland 82026.7245 2010 2022-09-16
## 2183 CH Switzerland 80262.4856 2009 2022-09-16
## 2184 CH Switzerland 82997.6922 2008 2022-09-16
## 2185 CH Switzerland 81804.8618 2007 2022-09-16
## 2186 CH Switzerland 79367.9002 2006 2022-09-16
## 2187 CH Switzerland 76784.6373 2005 2022-09-16
## 2188 CH Switzerland 75112.8674 2004 2022-09-16
## 2189 CH Switzerland 73555.5996 2003 2022-09-16
## 2190 CH Switzerland 74138.0835 2002 2022-09-16
## 2191 CH Switzerland 74705.1554 2001 2022-09-16
## 2192 CH Switzerland 74013.0564 2000 2022-09-16
## 2193 CH Switzerland 71583.6867 1999 2022-09-16
## 2194 CH Switzerland 70691.9467 1998 2022-09-16
## 2195 CH Switzerland 68793.5596 1997 2022-09-16
## 2196 CH Switzerland 67429.3907 1996 2022-09-16
## 2197 CH Switzerland 67394.9716 1995 2022-09-16
## 2198 CH Switzerland 67522.1500 1994 2022-09-16
## 2199 CH Switzerland 67209.1660 1993 2022-09-16
## 2200 CH Switzerland 67909.6011 1992 2022-09-16
## 2201 CH Switzerland 68692.5025 1991 2022-09-16
## 2202 CH Switzerland 70199.3239 1990 2022-09-16
## 2203 CH Switzerland 68410.0813 1989 2022-09-16
## 2204 CH Switzerland 66102.6730 1988 2022-09-16
## 2205 CH Switzerland 64476.9843 1987 2022-09-16
## 2206 CH Switzerland 63870.5947 1986 2022-09-16
## 2207 CH Switzerland 63032.2992 1985 2022-09-16
## 2208 CH Switzerland 61067.7822 1984 2022-09-16
## 2209 CH Switzerland 59497.5210 1983 2022-09-16
## 2210 CH Switzerland 59373.7415 1982 2022-09-16
## 2211 CH Switzerland 60514.0544 1981 2022-09-16
## 2212 CH Switzerland 59887.0204 1980 2022-09-16
## 2213 CH Switzerland NA 1979 2022-09-16
## 2214 CH Switzerland NA 1978 2022-09-16
## 2215 CH Switzerland NA 1977 2022-09-16
## 2216 CH Switzerland NA 1976 2022-09-16
## 2217 CH Switzerland NA 1975 2022-09-16
## 2218 CH Switzerland NA 1974 2022-09-16
## 2219 CH Switzerland NA 1973 2022-09-16
## 2220 CH Switzerland NA 1972 2022-09-16
## 2221 CH Switzerland NA 1971 2022-09-16
## 2222 CH Switzerland NA 1970 2022-09-16
## 2223 CH Switzerland NA 1969 2022-09-16
## 2224 CH Switzerland NA 1968 2022-09-16
## 2225 CH Switzerland NA 1967 2022-09-16
## 2226 CH Switzerland NA 1966 2022-09-16
## 2227 CH Switzerland NA 1965 2022-09-16
## 2228 CH Switzerland NA 1964 2022-09-16
## 2229 CH Switzerland NA 1963 2022-09-16
## 2230 CH Switzerland NA 1962 2022-09-16
## 2231 CH Switzerland NA 1961 2022-09-16
## 2232 CH Switzerland NA 1960 2022-09-16
## 2233 CI Cote d'Ivoire 1769.2149 2013 2022-09-16
## 2234 CI Cote d'Ivoire 1637.3928 2012 2022-09-16
## 2235 CI Cote d'Ivoire 1558.9687 2011 2022-09-16
## 2236 CI Cote d'Ivoire 1616.3782 2009 2022-09-16
## 2237 CI Cote d'Ivoire 1596.2552 2008 2022-09-16
## 2238 CI Cote d'Ivoire 1557.9083 2007 2022-09-16
## 2239 CI Cote d'Ivoire 1687.2165 2010 2022-09-16
## 2240 CI Cote d'Ivoire 1565.4285 2005 2022-09-16
## 2241 CI Cote d'Ivoire 1583.1120 2004 2022-09-16
## 2242 CI Cote d'Ivoire 1566.5772 2003 2022-09-16
## 2243 CI Cote d'Ivoire 1679.4065 2002 2022-09-16
## 2244 CI Cote d'Ivoire 1765.3281 2001 2022-09-16
## 2245 CI Cote d'Ivoire 1847.8700 2000 2022-09-16
## 2246 CI Cote d'Ivoire 1901.5727 1999 2022-09-16
## 2247 CI Cote d'Ivoire 1933.0732 1998 2022-09-16
## 2248 CI Cote d'Ivoire 1910.2299 1997 2022-09-16
## 2249 CI Cote d'Ivoire 1797.4387 1996 2022-09-16
## 2250 CI Cote d'Ivoire 1723.1574 1995 2022-09-16
## 2251 CI Cote d'Ivoire 1662.9131 1994 2022-09-16
## 2252 CI Cote d'Ivoire 1575.1428 2006 2022-09-16
## 2253 CI Cote d'Ivoire 3095.4035 1979 2022-09-16
## 2254 CI Cote d'Ivoire 3161.0695 1978 2022-09-16
## 2255 CI Cote d'Ivoire 2981.4659 1977 2022-09-16
## 2256 CI Cote d'Ivoire 2907.5851 1976 2022-09-16
## 2257 CI Cote d'Ivoire 2696.0767 1975 2022-09-16
## 2258 CI Cote d'Ivoire 2608.9795 1974 2022-09-16
## 2259 CI Cote d'Ivoire 2620.5372 1973 2022-09-16
## 2260 CI Cote d'Ivoire 2591.3985 1972 2022-09-16
## 2261 CI Cote d'Ivoire 2601.4443 1971 2022-09-16
## 2262 CI Cote d'Ivoire 2482.2764 1970 2022-09-16
## 2263 CI Cote d'Ivoire 2342.9009 1969 2022-09-16
## 2264 CI Cote d'Ivoire 2222.5231 1968 2022-09-16
## 2265 CI Cote d'Ivoire 2048.1556 1967 2022-09-16
## 2266 CI Cote d'Ivoire 2029.7858 1966 2022-09-16
## 2267 CI Cote d'Ivoire 1886.6925 1965 2022-09-16
## 2268 CI Cote d'Ivoire 2021.5840 1964 2022-09-16
## 2269 CI Cote d'Ivoire 1785.8576 1963 2022-09-16
## 2270 CI Cote d'Ivoire 1621.0027 1962 2022-09-16
## 2271 CI Cote d'Ivoire 1662.7393 1961 2022-09-16
## 2272 CI Cote d'Ivoire 1567.7618 1960 2022-09-16
## 2273 CI Cote d'Ivoire 2150.6034 1986 2022-09-16
## 2274 CI Cote d'Ivoire 2164.4197 1985 2022-09-16
## 2275 CI Cote d'Ivoire 2155.5373 1984 2022-09-16
## 2276 CI Cote d'Ivoire 2308.6871 1983 2022-09-16
## 2277 CI Cote d'Ivoire 2506.5257 1982 2022-09-16
## 2278 CI Cote d'Ivoire 2612.1582 1981 2022-09-16
## 2279 CI Cote d'Ivoire 1707.1777 1993 2022-09-16
## 2280 CI Cote d'Ivoire 1771.7750 1992 2022-09-16
## 2281 CI Cote d'Ivoire 1840.7741 1991 2022-09-16
## 2282 CI Cote d'Ivoire 1907.5326 1990 2022-09-16
## 2283 CI Cote d'Ivoire 1999.4981 1989 2022-09-16
## 2284 CI Cote d'Ivoire 2013.6148 1988 2022-09-16
## 2285 CI Cote d'Ivoire 2064.7879 1987 2022-09-16
## 2286 CI Cote d'Ivoire 1972.5457 2015 2022-09-16
## 2287 CI Cote d'Ivoire 1887.1649 2014 2022-09-16
## 2288 CI Cote d'Ivoire 2636.9196 1980 2022-09-16
## 2289 CI Cote d'Ivoire 2414.4403 2021 2022-09-16
## 2290 CI Cote d'Ivoire 2313.7934 2020 2022-09-16
## 2291 CI Cote d'Ivoire 2327.7454 2019 2022-09-16
## 2292 CI Cote d'Ivoire 2247.7766 2018 2022-09-16
## 2293 CI Cote d'Ivoire 2157.2452 2017 2022-09-16
## 2294 CI Cote d'Ivoire 2061.2152 2016 2022-09-16
## 2295 CL Chile 14322.2894 2021 2022-09-16
## 2296 CL Chile 12890.2643 2020 2022-09-16
## 2297 CL Chile 13828.6344 2019 2022-09-16
## 2298 CL Chile 11199.8802 2009 2022-09-16
## 2299 CL Chile 11447.1328 2008 2022-09-16
## 2300 CL Chile 11147.9936 2007 2022-09-16
## 2301 CL Chile 10714.0290 2006 2022-09-16
## 2302 CL Chile 13886.1906 2018 2022-09-16
## 2303 CL Chile 13540.4387 2017 2022-09-16
## 2304 CL Chile 13550.8119 2016 2022-09-16
## 2305 CL Chile 13495.0106 2015 2022-09-16
## 2306 CL Chile 13367.2283 2014 2022-09-16
## 2307 CL Chile 13271.9148 2013 2022-09-16
## 2308 CL Chile 12973.2383 2012 2022-09-16
## 2309 CL Chile 12339.2611 2011 2022-09-16
## 2310 CL Chile 11732.7300 2010 2022-09-16
## 2311 CL Chile 4282.4924 1985 2022-09-16
## 2312 CL Chile 4178.4434 1984 2022-09-16
## 2313 CL Chile 4071.0946 1983 2022-09-16
## 2314 CL Chile 4346.0202 1982 2022-09-16
## 2315 CL Chile 4952.2198 1981 2022-09-16
## 2316 CL Chile 4715.0878 1980 2022-09-16
## 2317 CL Chile 4430.1707 1979 2022-09-16
## 2318 CL Chile 4147.2457 1978 2022-09-16
## 2319 CL Chile 3909.3575 1977 2022-09-16
## 2320 CL Chile 3594.2432 1976 2022-09-16
## 2321 CL Chile 3515.3557 1975 2022-09-16
## 2322 CL Chile 4099.8474 1974 2022-09-16
## 2323 CL Chile 4068.0283 1973 2022-09-16
## 2324 CL Chile 4352.1982 1972 2022-09-16
## 2325 CL Chile 4468.2279 1971 2022-09-16
## 2326 CL Chile 4150.0658 1970 2022-09-16
## 2327 CL Chile 4142.3538 1969 2022-09-16
## 2328 CL Chile 4051.2596 1968 2022-09-16
## 2329 CL Chile 3976.6180 1967 2022-09-16
## 2330 CL Chile 3904.6132 1966 2022-09-16
## 2331 CL Chile 10210.0603 2005 2022-09-16
## 2332 CL Chile 9748.0051 2004 2022-09-16
## 2333 CL Chile 9233.4216 2003 2022-09-16
## 2334 CL Chile 8909.8615 2002 2022-09-16
## 2335 CL Chile 8726.9973 2001 2022-09-16
## 2336 CL Chile 8555.9776 2000 2022-09-16
## 2337 CL Chile 8247.2695 1999 2022-09-16
## 2338 CL Chile 8372.0814 1998 2022-09-16
## 2339 CL Chile 8140.1835 1997 2022-09-16
## 2340 CL Chile 7683.2291 1996 2022-09-16
## 2341 CL Chile 7297.1387 1995 2022-09-16
## 2342 CL Chile 6800.1593 1994 2022-09-16
## 2343 CL Chile 6577.2793 1993 2022-09-16
## 2344 CL Chile 6271.9544 1992 2022-09-16
## 2345 CL Chile 5735.8185 1991 2022-09-16
## 2346 CL Chile 5409.0132 1990 2022-09-16
## 2347 CL Chile 5321.0428 1989 2022-09-16
## 2348 CL Chile 4920.1999 1988 2022-09-16
## 2349 CL Chile 4657.7802 1987 2022-09-16
## 2350 CL Chile 4444.4081 1986 2022-09-16
## 2351 CL Chile 3607.6180 1964 2022-09-16
## 2352 CL Chile 3587.3895 1963 2022-09-16
## 2353 CL Chile 3458.8124 1962 2022-09-16
## 2354 CL Chile 3573.9399 1965 2022-09-16
## 2355 CL Chile 3292.8073 1960 2022-09-16
## 2356 CL Chile 3394.2354 1961 2022-09-16
## 2357 CM Cameroon 1407.2745 2016 2022-09-16
## 2358 CM Cameroon 1382.5098 2015 2022-09-16
## 2359 CM Cameroon 1343.9285 2014 2022-09-16
## 2360 CM Cameroon 1306.0275 2013 2022-09-16
## 2361 CM Cameroon 1278.1644 2012 2022-09-16
## 2362 CM Cameroon 1248.6626 2007 2022-09-16
## 2363 CM Cameroon 1230.1392 2006 2022-09-16
## 2364 CM Cameroon 1217.7570 2005 2022-09-16
## 2365 CM Cameroon 1223.9342 2004 2022-09-16
## 2366 CM Cameroon 1174.5405 2003 2022-09-16
## 2367 CM Cameroon 1143.9854 2002 2022-09-16
## 2368 CM Cameroon 1124.4323 2001 2022-09-16
## 2369 CM Cameroon 1106.6540 2000 2022-09-16
## 2370 CM Cameroon 1094.1125 1999 2022-09-16
## 2371 CM Cameroon 1255.4772 2011 2022-09-16
## 2372 CM Cameroon 1248.1805 2010 2022-09-16
## 2373 CM Cameroon 1246.8074 2009 2022-09-16
## 2374 CM Cameroon 1249.3752 2008 2022-09-16
## 2375 CM Cameroon 1432.5650 2021 2022-09-16
## 2376 CM Cameroon 1419.6767 2020 2022-09-16
## 2377 CM Cameroon 1449.2775 2019 2022-09-16
## 2378 CM Cameroon 1437.2715 2018 2022-09-16
## 2379 CM Cameroon 1419.1761 2017 2022-09-16
## 2380 CM Cameroon 1355.2078 1979 2022-09-16
## 2381 CM Cameroon 1316.5499 1978 2022-09-16
## 2382 CM Cameroon 1111.0596 1977 2022-09-16
## 2383 CM Cameroon 1005.2865 1976 2022-09-16
## 2384 CM Cameroon 1094.1979 1975 2022-09-16
## 2385 CM Cameroon 1011.2482 1974 2022-09-16
## 2386 CM Cameroon 938.3969 1973 2022-09-16
## 2387 CM Cameroon 914.7770 1972 2022-09-16
## 2388 CM Cameroon 914.5959 1971 2022-09-16
## 2389 CM Cameroon 906.8737 1970 2022-09-16
## 2390 CM Cameroon 902.1817 1969 2022-09-16
## 2391 CM Cameroon 881.6186 1968 2022-09-16
## 2392 CM Cameroon 849.4146 1967 2022-09-16
## 2393 CM Cameroon 976.4535 1966 2022-09-16
## 2394 CM Cameroon 955.4193 1965 2022-09-16
## 2395 CM Cameroon 958.1023 1964 2022-09-16
## 2396 CM Cameroon 946.2303 1963 2022-09-16
## 2397 CM Cameroon 932.2625 1962 2022-09-16
## 2398 CM Cameroon 924.2111 1961 2022-09-16
## 2399 CM Cameroon 932.4713 1960 2022-09-16
## 2400 CM Cameroon 1783.5491 1986 2022-09-16
## 2401 CM Cameroon 1074.5305 1998 2022-09-16
## 2402 CM Cameroon 1053.1774 1997 2022-09-16
## 2403 CM Cameroon 1034.5079 1996 2022-09-16
## 2404 CM Cameroon 1019.7331 1995 2022-09-16
## 2405 CM Cameroon 1018.6920 1994 2022-09-16
## 2406 CM Cameroon 1028.4435 1993 2022-09-16
## 2407 CM Cameroon 1149.6311 1992 2022-09-16
## 2408 CM Cameroon 1221.7529 1991 2022-09-16
## 2409 CM Cameroon 1308.7077 1990 2022-09-16
## 2410 CM Cameroon 1437.0272 1989 2022-09-16
## 2411 CM Cameroon 1509.9572 1988 2022-09-16
## 2412 CM Cameroon 1690.6855 1987 2022-09-16
## 2413 CM Cameroon 1526.2616 1982 2022-09-16
## 2414 CM Cameroon 1724.2865 1985 2022-09-16
## 2415 CM Cameroon 1646.8039 1984 2022-09-16
## 2416 CM Cameroon 1581.1025 1983 2022-09-16
## 2417 CM Cameroon 1464.0074 1981 2022-09-16
## 2418 CM Cameroon 1289.1472 1980 2022-09-16
## 2419 CN China 3061.8278 2004 2022-09-16
## 2420 CN China 2797.1717 2003 2022-09-16
## 2421 CN China 3390.7102 2005 2022-09-16
## 2422 CN China 2193.8930 2000 2022-09-16
## 2423 CN China 2038.2029 1999 2022-09-16
## 2424 CN China 2557.8871 2002 2022-09-16
## 2425 CN China 2359.5682 2001 2022-09-16
## 2426 CN China 1100.6442 1992 2022-09-16
## 2427 CN China 975.4612 1991 2022-09-16
## 2428 CN China 905.0309 1990 2022-09-16
## 2429 CN China 883.7626 1989 2022-09-16
## 2430 CN China 861.1920 1988 2022-09-16
## 2431 CN China 786.8635 1987 2022-09-16
## 2432 CN China 716.1041 1986 2022-09-16
## 2433 CN China 1909.6190 1998 2022-09-16
## 2434 CN China 1787.7638 1997 2022-09-16
## 2435 CN China 1653.4309 1996 2022-09-16
## 2436 CN China 1520.0268 1995 2022-09-16
## 2437 CN China 1384.9277 1994 2022-09-16
## 2438 CN China 1239.1272 1993 2022-09-16
## 2439 CN China 404.5959 1979 2022-09-16
## 2440 CN China 381.0987 1978 2022-09-16
## 2441 CN China 346.9385 1977 2022-09-16
## 2442 CN China 326.9489 1976 2022-09-16
## 2443 CN China 337.3435 1975 2022-09-16
## 2444 CN China 315.8161 1974 2022-09-16
## 2445 CN China 315.1291 1973 2022-09-16
## 2446 CN China 299.1904 1972 2022-09-16
## 2447 CN China 295.3796 1971 2022-09-16
## 2448 CN China 283.5849 1970 2022-09-16
## 2449 CN China 244.3635 1969 2022-09-16
## 2450 CN China 214.7697 1968 2022-09-16
## 2451 CN China 229.8759 1967 2022-09-16
## 2452 CN China 250.3045 1966 2022-09-16
## 2453 CN China 232.6068 1965 2022-09-16
## 2454 CN China 203.6875 1964 2022-09-16
## 2455 CN China 176.4001 1963 2022-09-16
## 2456 CN China 163.9068 1962 2022-09-16
## 2457 CN China 175.0234 1961 2022-09-16
## 2458 CN China 238.2166 1960 2022-09-16
## 2459 CN China 8016.4314 2015 2022-09-16
## 2460 CN China 667.1274 1985 2022-09-16
## 2461 CN China 596.2001 1984 2022-09-16
## 2462 CN China 524.4084 1983 2022-09-16
## 2463 CN China 480.3105 1982 2022-09-16
## 2464 CN China 447.1190 1981 2022-09-16
## 2465 CN China 430.8546 1980 2022-09-16
## 2466 CN China 11188.3025 2021 2022-09-16
## 2467 CN China 10358.2594 2020 2022-09-16
## 2468 CN China 10155.4929 2019 2022-09-16
## 2469 CN China 9619.1925 2018 2022-09-16
## 2470 CN China 9053.2127 2017 2022-09-16
## 2471 CN China 8516.5137 2016 2022-09-16
## 2472 CN China 6152.6860 2011 2022-09-16
## 2473 CN China 7532.7720 2014 2022-09-16
## 2474 CN China 7056.4106 2013 2022-09-16
## 2475 CN China 6591.6509 2012 2022-09-16
## 2476 CN China 4319.0238 2007 2022-09-16
## 2477 CN China 5647.0588 2010 2022-09-16
## 2478 CN China 5128.8951 2009 2022-09-16
## 2479 CN China 4711.6351 2008 2022-09-16
## 2480 CN China 3800.7591 2006 2022-09-16
## 2481 CO Colombia 6442.8592 2021 2022-09-16
## 2482 CO Colombia 5468.1955 2011 2022-09-16
## 2483 CO Colombia 5162.7056 2010 2022-09-16
## 2484 CO Colombia 4992.8232 2009 2022-09-16
## 2485 CO Colombia 4991.7892 2008 2022-09-16
## 2486 CO Colombia 5871.1617 2020 2022-09-16
## 2487 CO Colombia 6384.5358 2019 2022-09-16
## 2488 CO Colombia 6271.8751 2018 2022-09-16
## 2489 CO Colombia 6208.9870 2017 2022-09-16
## 2490 CO Colombia 6219.1497 2016 2022-09-16
## 2491 CO Colombia 6175.8760 2015 2022-09-16
## 2492 CO Colombia 6069.1868 2014 2022-09-16
## 2493 CO Colombia 5866.8738 2013 2022-09-16
## 2494 CO Colombia 5631.2174 2012 2022-09-16
## 2495 CO Colombia 3332.6985 1986 2022-09-16
## 2496 CO Colombia 3214.6082 1985 2022-09-16
## 2497 CO Colombia 3183.6354 1984 2022-09-16
## 2498 CO Colombia 3146.6162 1983 2022-09-16
## 2499 CO Colombia 3165.3619 1982 2022-09-16
## 2500 CO Colombia 3204.6398 1981 2022-09-16
## 2501 CO Colombia 3202.7307 1980 2022-09-16
## 2502 CO Colombia 3145.6662 1979 2022-09-16
## 2503 CO Colombia 3052.2961 1978 2022-09-16
## 2504 CO Colombia 2877.5976 1977 2022-09-16
## 2505 CO Colombia 2825.1810 1976 2022-09-16
## 2506 CO Colombia 2758.4501 1975 2022-09-16
## 2507 CO Colombia 2756.1887 1974 2022-09-16
## 2508 CO Colombia 2664.6018 1973 2022-09-16
## 2509 CO Colombia 2553.0857 1972 2022-09-16
## 2510 CO Colombia 2426.4555 1971 2022-09-16
## 2511 CO Colombia 2345.8116 1970 2022-09-16
## 2512 CO Colombia 2265.3993 1969 2022-09-16
## 2513 CO Colombia 2192.5550 1968 2022-09-16
## 2514 CO Colombia 4890.2776 2007 2022-09-16
## 2515 CO Colombia 4638.4719 2006 2022-09-16
## 2516 CO Colombia 4402.8991 2005 2022-09-16
## 2517 CO Colombia 4257.1627 2004 2022-09-16
## 2518 CO Colombia 4099.3064 2003 2022-09-16
## 2519 CO Colombia 4003.4658 2002 2022-09-16
## 2520 CO Colombia 3965.7641 2001 2022-09-16
## 2521 CO Colombia 3961.9297 2000 2022-09-16
## 2522 CO Colombia 3911.5734 1999 2022-09-16
## 2523 CO Colombia 4150.8353 1998 2022-09-16
## 2524 CO Colombia 4197.3953 1997 2022-09-16
## 2525 CO Colombia 4129.0503 1996 2022-09-16
## 2526 CO Colombia 4118.6280 1995 2022-09-16
## 2527 CO Colombia 3987.4822 1994 2022-09-16
## 2528 CO Colombia 3840.0678 1993 2022-09-16
## 2529 CO Colombia 3714.6188 1992 2022-09-16
## 2530 CO Colombia 3640.4550 1991 2022-09-16
## 2531 CO Colombia 3639.7192 1990 2022-09-16
## 2532 CO Colombia 3559.6329 1989 2022-09-16
## 2533 CO Colombia 3510.7979 1988 2022-09-16
## 2534 CO Colombia 3441.5055 1987 2022-09-16
## 2535 CO Colombia 1906.0150 1960 2022-09-16
## 2536 CO Colombia 2045.5620 1964 2022-09-16
## 2537 CO Colombia 2127.7850 1967 2022-09-16
## 2538 CO Colombia 2102.4112 1966 2022-09-16
## 2539 CO Colombia 2056.9508 1965 2022-09-16
## 2540 CO Colombia 1986.3257 1963 2022-09-16
## 2541 CO Colombia 1983.5427 1962 2022-09-16
## 2542 CO Colombia 1941.3458 1961 2022-09-16
## 2543 CR Costa Rica 12004.6713 2016 2022-09-16
## 2544 CR Costa Rica 11642.7781 2015 2022-09-16
## 2545 CR Costa Rica 11355.3311 2014 2022-09-16
## 2546 CR Costa Rica 12375.9237 2017 2022-09-16
## 2547 CR Costa Rica 12931.6913 2021 2022-09-16
## 2548 CR Costa Rica 12126.6259 2020 2022-09-16
## 2549 CR Costa Rica 12755.1684 2019 2022-09-16
## 2550 CR Costa Rica 12573.9558 2018 2022-09-16
## 2551 CR Costa Rica 6683.8362 1993 2022-09-16
## 2552 CR Costa Rica 6403.7847 1992 2022-09-16
## 2553 CR Costa Rica 6018.8573 1991 2022-09-16
## 2554 CR Costa Rica 6041.4439 1990 2022-09-16
## 2555 CR Costa Rica 5988.5411 1989 2022-09-16
## 2556 CR Costa Rica 5816.8823 1988 2022-09-16
## 2557 CR Costa Rica 5772.1689 1987 2022-09-16
## 2558 CR Costa Rica 5655.9388 1986 2022-09-16
## 2559 CR Costa Rica 5503.2218 1985 2022-09-16
## 2560 CR Costa Rica 5612.4763 1984 2022-09-16
## 2561 CR Costa Rica 5338.2497 1983 2022-09-16
## 2562 CR Costa Rica 5332.9300 1982 2022-09-16
## 2563 CR Costa Rica 5910.7288 1981 2022-09-16
## 2564 CR Costa Rica 6213.5450 1980 2022-09-16
## 2565 CR Costa Rica 6335.5398 1979 2022-09-16
## 2566 CR Costa Rica 6201.3279 1978 2022-09-16
## 2567 CR Costa Rica 5992.5305 1977 2022-09-16
## 2568 CR Costa Rica 5648.3667 1976 2022-09-16
## 2569 CR Costa Rica 5492.3072 1975 2022-09-16
## 2570 CR Costa Rica 5516.1596 1974 2022-09-16
## 2571 CR Costa Rica 11090.0884 2013 2022-09-16
## 2572 CR Costa Rica 10945.0350 2012 2022-09-16
## 2573 CR Costa Rica 10559.2060 2011 2022-09-16
## 2574 CR Costa Rica 10236.9803 2010 2022-09-16
## 2575 CR Costa Rica 9837.8766 2009 2022-09-16
## 2576 CR Costa Rica 10052.6829 2008 2022-09-16
## 2577 CR Costa Rica 9725.3849 2007 2022-09-16
## 2578 CR Costa Rica 9109.5303 2006 2022-09-16
## 2579 CR Costa Rica 8606.3337 2005 2022-09-16
## 2580 CR Costa Rica 8395.4011 2004 2022-09-16
## 2581 CR Costa Rica 8157.6512 2003 2022-09-16
## 2582 CR Costa Rica 7940.4302 2002 2022-09-16
## 2583 CR Costa Rica 7805.3119 2001 2022-09-16
## 2584 CR Costa Rica 7678.4916 2000 2022-09-16
## 2585 CR Costa Rica 7538.8863 1999 2022-09-16
## 2586 CR Costa Rica 7389.0451 1998 2022-09-16
## 2587 CR Costa Rica 7053.1374 1997 2022-09-16
## 2588 CR Costa Rica 6846.3576 1996 2022-09-16
## 2589 CR Costa Rica 6920.5790 1995 2022-09-16
## 2590 CR Costa Rica 6811.1119 1994 2022-09-16
## 2591 CR Costa Rica 4110.1119 1967 2022-09-16
## 2592 CR Costa Rica 4012.4854 1966 2022-09-16
## 2593 CR Costa Rica 3874.0898 1965 2022-09-16
## 2594 CR Costa Rica 3703.7921 1964 2022-09-16
## 2595 CR Costa Rica 3701.3723 1963 2022-09-16
## 2596 CR Costa Rica 3591.0329 1962 2022-09-16
## 2597 CR Costa Rica 3534.2941 1961 2022-09-16
## 2598 CR Costa Rica 5356.7780 1973 2022-09-16
## 2599 CR Costa Rica 5097.0733 1972 2022-09-16
## 2600 CR Costa Rica 4831.2633 1971 2022-09-16
## 2601 CR Costa Rica 4643.7906 1970 2022-09-16
## 2602 CR Costa Rica 4438.6170 1969 2022-09-16
## 2603 CR Costa Rica 4328.4053 1968 2022-09-16
## 2604 CR Costa Rica 3600.4830 1960 2022-09-16
## 2605 CU Cuba 7378.6963 2014 2022-09-16
## 2606 CU Cuba 7694.0146 2015 2022-09-16
## 2607 CU Cuba 6759.3428 2010 2022-09-16
## 2608 CU Cuba 7317.8540 2013 2022-09-16
## 2609 CU Cuba 7138.3682 2012 2022-09-16
## 2610 CU Cuba 6942.0577 2011 2022-09-16
## 2611 CU Cuba 5808.3496 2006 2022-09-16
## 2612 CU Cuba 5182.8197 2005 2022-09-16
## 2613 CU Cuba 4665.3866 2004 2022-09-16
## 2614 CU Cuba 4419.1776 2003 2022-09-16
## 2615 CU Cuba 4268.9171 2002 2022-09-16
## 2616 CU Cuba 4222.1371 2001 2022-09-16
## 2617 CU Cuba 4105.8795 2000 2022-09-16
## 2618 CU Cuba 3891.1896 1999 2022-09-16
## 2619 CU Cuba 3679.6675 1998 2022-09-16
## 2620 CU Cuba 3690.1933 1997 2022-09-16
## 2621 CU Cuba 6601.0264 2009 2022-09-16
## 2622 CU Cuba 6500.6526 2008 2022-09-16
## 2623 CU Cuba 6235.7659 2007 2022-09-16
## 2624 CU Cuba 3590.4044 1980 2022-09-16
## 2625 CU Cuba 3795.9801 1979 2022-09-16
## 2626 CU Cuba 3780.9159 1978 2022-09-16
## 2627 CU Cuba 3575.6037 1977 2022-09-16
## 2628 CU Cuba 3320.7932 1976 2022-09-16
## 2629 CU Cuba 3185.7486 1975 2022-09-16
## 2630 CU Cuba 2949.1662 1974 2022-09-16
## 2631 CU Cuba 2965.6377 1973 2022-09-16
## 2632 CU Cuba 2915.9169 1972 2022-09-16
## 2633 CU Cuba 2830.9829 1971 2022-09-16
## 2634 CU Cuba 2653.7340 1970 2022-09-16
## 2635 CU Cuba NA 1969 2022-09-16
## 2636 CU Cuba NA 1968 2022-09-16
## 2637 CU Cuba NA 1967 2022-09-16
## 2638 CU Cuba NA 1966 2022-09-16
## 2639 CU Cuba NA 1965 2022-09-16
## 2640 CU Cuba NA 1964 2022-09-16
## 2641 CU Cuba NA 1963 2022-09-16
## 2642 CU Cuba NA 1962 2022-09-16
## 2643 CU Cuba NA 1961 2022-09-16
## 2644 CU Cuba NA 1960 2022-09-16
## 2645 CU Cuba 5237.4069 1986 2022-09-16
## 2646 CU Cuba 5276.9744 1985 2022-09-16
## 2647 CU Cuba 5228.3491 1984 2022-09-16
## 2648 CU Cuba 3606.8170 1996 2022-09-16
## 2649 CU Cuba 3360.3172 1995 2022-09-16
## 2650 CU Cuba 3294.7927 1994 2022-09-16
## 2651 CU Cuba 3286.2416 1993 2022-09-16
## 2652 CU Cuba 3879.6650 1992 2022-09-16
## 2653 CU Cuba 4413.6364 1991 2022-09-16
## 2654 CU Cuba 4977.7772 1990 2022-09-16
## 2655 CU Cuba 5174.4299 1989 2022-09-16
## 2656 CU Cuba 5192.0942 1988 2022-09-16
## 2657 CU Cuba 5060.5367 1987 2022-09-16
## 2658 CU Cuba 4637.7569 1982 2022-09-16
## 2659 CU Cuba 4275.8350 1981 2022-09-16
## 2660 CU Cuba NA 2021 2022-09-16
## 2661 CU Cuba 4868.6518 1983 2022-09-16
## 2662 CU Cuba 8031.0354 2019 2022-09-16
## 2663 CU Cuba 8040.9880 2018 2022-09-16
## 2664 CU Cuba 7863.3947 2017 2022-09-16
## 2665 CU Cuba 7156.1068 2020 2022-09-16
## 2666 CU Cuba 7726.4950 2016 2022-09-16
## 2667 CV Cabo Verde 3070.4637 2013 2022-09-16
## 2668 CV Cabo Verde 3091.2230 2011 2022-09-16
## 2669 CV Cabo Verde 3010.7222 2010 2022-09-16
## 2670 CV Cabo Verde 3003.6412 2009 2022-09-16
## 2671 CV Cabo Verde 3085.1917 2012 2022-09-16
## 2672 CV Cabo Verde 2922.2331 2007 2022-09-16
## 2673 CV Cabo Verde 2569.1922 2006 2022-09-16
## 2674 CV Cabo Verde 2410.7738 2005 2022-09-16
## 2675 CV Cabo Verde 2286.5834 2004 2022-09-16
## 2676 CV Cabo Verde 2105.8666 2003 2022-09-16
## 2677 CV Cabo Verde 2053.2537 2002 2022-09-16
## 2678 CV Cabo Verde 1983.2976 2001 2022-09-16
## 2679 CV Cabo Verde 1974.0888 2000 2022-09-16
## 2680 CV Cabo Verde 1759.0645 1999 2022-09-16
## 2681 CV Cabo Verde 1612.0238 1998 2022-09-16
## 2682 CV Cabo Verde 1461.9817 1997 2022-09-16
## 2683 CV Cabo Verde 1344.6864 1996 2022-09-16
## 2684 CV Cabo Verde 3079.1205 2008 2022-09-16
## 2685 CV Cabo Verde 3106.3612 2021 2022-09-16
## 2686 CV Cabo Verde 2935.3210 2020 2022-09-16
## 2687 CV Cabo Verde 3482.4485 2019 2022-09-16
## 2688 CV Cabo Verde 3333.0661 2018 2022-09-16
## 2689 CV Cabo Verde 3225.7518 2017 2022-09-16
## 2690 CV Cabo Verde 3147.8374 2016 2022-09-16
## 2691 CV Cabo Verde 3043.0314 2015 2022-09-16
## 2692 CV Cabo Verde 3050.2723 2014 2022-09-16
## 2693 CV Cabo Verde NA 1974 2022-09-16
## 2694 CV Cabo Verde NA 1973 2022-09-16
## 2695 CV Cabo Verde NA 1972 2022-09-16
## 2696 CV Cabo Verde NA 1971 2022-09-16
## 2697 CV Cabo Verde NA 1970 2022-09-16
## 2698 CV Cabo Verde NA 1969 2022-09-16
## 2699 CV Cabo Verde NA 1968 2022-09-16
## 2700 CV Cabo Verde NA 1967 2022-09-16
## 2701 CV Cabo Verde NA 1966 2022-09-16
## 2702 CV Cabo Verde NA 1965 2022-09-16
## 2703 CV Cabo Verde NA 1964 2022-09-16
## 2704 CV Cabo Verde NA 1963 2022-09-16
## 2705 CV Cabo Verde NA 1962 2022-09-16
## 2706 CV Cabo Verde NA 1961 2022-09-16
## 2707 CV Cabo Verde NA 1960 2022-09-16
## 2708 CV Cabo Verde 770.1942 1986 2022-09-16
## 2709 CV Cabo Verde 760.5748 1985 2022-09-16
## 2710 CV Cabo Verde 712.7151 1984 2022-09-16
## 2711 CV Cabo Verde 700.2617 1983 2022-09-16
## 2712 CV Cabo Verde 1236.5619 1995 2022-09-16
## 2713 CV Cabo Verde 1111.1092 1994 2022-09-16
## 2714 CV Cabo Verde 958.6388 1993 2022-09-16
## 2715 CV Cabo Verde 907.3612 1992 2022-09-16
## 2716 CV Cabo Verde 840.4243 1991 2022-09-16
## 2717 CV Cabo Verde 849.0827 1990 2022-09-16
## 2718 CV Cabo Verde 860.4913 1989 2022-09-16
## 2719 CV Cabo Verde 827.6898 1988 2022-09-16
## 2720 CV Cabo Verde 792.0648 1987 2022-09-16
## 2721 CV Cabo Verde 652.3860 1982 2022-09-16
## 2722 CV Cabo Verde 646.6953 1981 2022-09-16
## 2723 CV Cabo Verde 606.4455 1980 2022-09-16
## 2724 CV Cabo Verde NA 1979 2022-09-16
## 2725 CV Cabo Verde NA 1978 2022-09-16
## 2726 CV Cabo Verde NA 1977 2022-09-16
## 2727 CV Cabo Verde NA 1976 2022-09-16
## 2728 CV Cabo Verde NA 1975 2022-09-16
## 2729 CW Curacao NA 2021 2022-09-16
## 2730 CW Curacao 14748.8955 2020 2022-09-16
## 2731 CW Curacao 17796.6996 2019 2022-09-16
## 2732 CW Curacao NA 1997 2022-09-16
## 2733 CW Curacao NA 1996 2022-09-16
## 2734 CW Curacao NA 1995 2022-09-16
## 2735 CW Curacao NA 1994 2022-09-16
## 2736 CW Curacao NA 1993 2022-09-16
## 2737 CW Curacao NA 1992 2022-09-16
## 2738 CW Curacao NA 1991 2022-09-16
## 2739 CW Curacao NA 1990 2022-09-16
## 2740 CW Curacao NA 1989 2022-09-16
## 2741 CW Curacao NA 1988 2022-09-16
## 2742 CW Curacao NA 1987 2022-09-16
## 2743 CW Curacao NA 1986 2022-09-16
## 2744 CW Curacao NA 1985 2022-09-16
## 2745 CW Curacao NA 1984 2022-09-16
## 2746 CW Curacao NA 1983 2022-09-16
## 2747 CW Curacao NA 1982 2022-09-16
## 2748 CW Curacao NA 1981 2022-09-16
## 2749 CW Curacao NA 1980 2022-09-16
## 2750 CW Curacao NA 1979 2022-09-16
## 2751 CW Curacao 18198.6641 2018 2022-09-16
## 2752 CW Curacao 18504.3057 2017 2022-09-16
## 2753 CW Curacao 18890.7588 2016 2022-09-16
## 2754 CW Curacao 19260.2698 2015 2022-09-16
## 2755 CW Curacao 19459.4944 2014 2022-09-16
## 2756 CW Curacao 19963.3453 2013 2022-09-16
## 2757 CW Curacao 20356.1818 2012 2022-09-16
## 2758 CW Curacao 20539.3601 2011 2022-09-16
## 2759 CW Curacao 20706.4372 2010 2022-09-16
## 2760 CW Curacao 20952.8997 2009 2022-09-16
## 2761 CW Curacao 21202.4307 2008 2022-09-16
## 2762 CW Curacao 21011.1569 2007 2022-09-16
## 2763 CW Curacao 20913.6631 2006 2022-09-16
## 2764 CW Curacao 21112.3220 2005 2022-09-16
## 2765 CW Curacao 21512.1115 2004 2022-09-16
## 2766 CW Curacao 21840.8911 2003 2022-09-16
## 2767 CW Curacao 22231.8795 2002 2022-09-16
## 2768 CW Curacao 22171.0657 2001 2022-09-16
## 2769 CW Curacao 21523.6459 2000 2022-09-16
## 2770 CW Curacao NA 1999 2022-09-16
## 2771 CW Curacao NA 1998 2022-09-16
## 2772 CW Curacao NA 1971 2022-09-16
## 2773 CW Curacao NA 1970 2022-09-16
## 2774 CW Curacao NA 1969 2022-09-16
## 2775 CW Curacao NA 1968 2022-09-16
## 2776 CW Curacao NA 1967 2022-09-16
## 2777 CW Curacao NA 1966 2022-09-16
## 2778 CW Curacao NA 1978 2022-09-16
## 2779 CW Curacao NA 1977 2022-09-16
## 2780 CW Curacao NA 1976 2022-09-16
## 2781 CW Curacao NA 1975 2022-09-16
## 2782 CW Curacao NA 1974 2022-09-16
## 2783 CW Curacao NA 1973 2022-09-16
## 2784 CW Curacao NA 1972 2022-09-16
## 2785 CW Curacao NA 1963 2022-09-16
## 2786 CW Curacao NA 1962 2022-09-16
## 2787 CW Curacao NA 1965 2022-09-16
## 2788 CW Curacao NA 1964 2022-09-16
## 2789 CW Curacao NA 1961 2022-09-16
## 2790 CW Curacao NA 1960 2022-09-16
## 2791 CY Cyprus 27161.4043 2018 2022-09-16
## 2792 CY Cyprus 26013.8320 2017 2022-09-16
## 2793 CY Cyprus 22513.7793 2014 2022-09-16
## 2794 CY Cyprus 22682.2656 2013 2022-09-16
## 2795 CY Cyprus 24805.2031 2016 2022-09-16
## 2796 CY Cyprus 23408.3359 2015 2022-09-16
## 2797 CY Cyprus 26393.6777 2006 2022-09-16
## 2798 CY Cyprus 25629.5840 2005 2022-09-16
## 2799 CY Cyprus 24797.9199 2004 2022-09-16
## 2800 CY Cyprus 23929.0996 2003 2022-09-16
## 2801 CY Cyprus 23602.5312 2002 2022-09-16
## 2802 CY Cyprus 23017.6367 2001 2022-09-16
## 2803 CY Cyprus 22382.3965 2000 2022-09-16
## 2804 CY Cyprus 24216.5293 2012 2022-09-16
## 2805 CY Cyprus 25466.1074 2011 2022-09-16
## 2806 CY Cyprus 26019.7637 2010 2022-09-16
## 2807 CY Cyprus 26181.7441 2009 2022-09-16
## 2808 CY Cyprus 27447.2402 2008 2022-09-16
## 2809 CY Cyprus 27154.9004 2007 2022-09-16
## 2810 CY Cyprus 10667.0938 1980 2022-09-16
## 2811 CY Cyprus 10196.9492 1979 2022-09-16
## 2812 CY Cyprus 9350.3369 1978 2022-09-16
## 2813 CY Cyprus 8707.8418 1977 2022-09-16
## 2814 CY Cyprus 7484.3091 1976 2022-09-16
## 2815 CY Cyprus 6172.8872 1975 2022-09-16
## 2816 CY Cyprus NA 1974 2022-09-16
## 2817 CY Cyprus NA 1973 2022-09-16
## 2818 CY Cyprus NA 1972 2022-09-16
## 2819 CY Cyprus NA 1971 2022-09-16
## 2820 CY Cyprus NA 1970 2022-09-16
## 2821 CY Cyprus NA 1969 2022-09-16
## 2822 CY Cyprus NA 1968 2022-09-16
## 2823 CY Cyprus NA 1967 2022-09-16
## 2824 CY Cyprus NA 1966 2022-09-16
## 2825 CY Cyprus NA 1965 2022-09-16
## 2826 CY Cyprus NA 1964 2022-09-16
## 2827 CY Cyprus NA 1963 2022-09-16
## 2828 CY Cyprus NA 1962 2022-09-16
## 2829 CY Cyprus NA 1961 2022-09-16
## 2830 CY Cyprus NA 1960 2022-09-16
## 2831 CY Cyprus 21348.2539 1999 2022-09-16
## 2832 CY Cyprus 20560.8555 1998 2022-09-16
## 2833 CY Cyprus 19615.8145 1997 2022-09-16
## 2834 CY Cyprus 19383.9395 1996 2022-09-16
## 2835 CY Cyprus 19452.4883 1995 2022-09-16
## 2836 CY Cyprus 18279.7441 1994 2022-09-16
## 2837 CY Cyprus 17622.0527 1993 2022-09-16
## 2838 CY Cyprus 17927.2871 1992 2022-09-16
## 2839 CY Cyprus 16828.7363 1991 2022-09-16
## 2840 CY Cyprus 17143.2715 1990 2022-09-16
## 2841 CY Cyprus 16305.1885 1989 2022-09-16
## 2842 CY Cyprus 15321.6162 1988 2022-09-16
## 2843 CY Cyprus 14252.5625 1987 2022-09-16
## 2844 CY Cyprus 13457.5859 1986 2022-09-16
## 2845 CY Cyprus 13126.6104 1985 2022-09-16
## 2846 CY Cyprus 12668.6104 1984 2022-09-16
## 2847 CY Cyprus 11800.3682 1983 2022-09-16
## 2848 CY Cyprus 11269.0283 1982 2022-09-16
## 2849 CY Cyprus 10755.5059 1981 2022-09-16
## 2850 CY Cyprus 27714.7461 2021 2022-09-16
## 2851 CY Cyprus 26502.8477 2020 2022-09-16
## 2852 CY Cyprus 28211.0645 2019 2022-09-16
## 2853 DE Germany 42526.5537 2021 2022-09-16
## 2854 DE Germany 41315.3136 2020 2022-09-16
## 2855 DE Germany 43329.0507 2019 2022-09-16
## 2856 DE Germany 42973.2900 2018 2022-09-16
## 2857 DE Germany 42639.5544 2017 2022-09-16
## 2858 DE Germany 41682.0322 2016 2022-09-16
## 2859 DE Germany 41103.2564 2015 2022-09-16
## 2860 DE Germany 40851.1617 2014 2022-09-16
## 2861 DE Germany 40135.0158 2013 2022-09-16
## 2862 DE Germany 40069.3540 2012 2022-09-16
## 2863 DE Germany 39977.3417 2011 2022-09-16
## 2864 DE Germany 37760.9136 2010 2022-09-16
## 2865 DE Germany 36190.3929 2009 2022-09-16
## 2866 DE Germany 38278.3130 2008 2022-09-16
## 2867 DE Germany 37842.3578 2007 2022-09-16
## 2868 DE Germany 36699.4468 2006 2022-09-16
## 2869 DE Germany 35310.4705 2005 2022-09-16
## 2870 DE Germany 35034.0806 2004 2022-09-16
## 2871 DE Germany 34619.6641 2003 2022-09-16
## 2872 DE Germany 34883.0581 2002 2022-09-16
## 2873 DE Germany 35011.0685 2001 2022-09-16
## 2874 DE Germany 34490.0758 2000 2022-09-16
## 2875 DE Germany 33559.3994 1999 2022-09-16
## 2876 DE Germany 32959.0736 1998 2022-09-16
## 2877 DE Germany 32313.2971 1997 2022-09-16
## 2878 DE Germany 31790.8669 1996 2022-09-16
## 2879 DE Germany 31628.1598 1995 2022-09-16
## 2880 DE Germany 31238.8791 1994 2022-09-16
## 2881 DE Germany 30615.1402 1993 2022-09-16
## 2882 DE Germany 31121.0706 1992 2022-09-16
## 2883 DE Germany 30766.9290 1991 2022-09-16
## 2884 DE Germany 29485.7100 1990 2022-09-16
## 2885 DE Germany 28256.1062 1989 2022-09-16
## 2886 DE Germany 27407.5201 1988 2022-09-16
## 2887 DE Germany 26531.2297 1987 2022-09-16
## 2888 DE Germany 26204.5896 1986 2022-09-16
## 2889 DE Germany 25630.3330 1985 2022-09-16
## 2890 DE Germany 24991.3337 1984 2022-09-16
## 2891 DE Germany 24221.3404 1983 2022-09-16
## 2892 DE Germany 23783.9455 1982 2022-09-16
## 2893 DE Germany 23855.5259 1981 2022-09-16
## 2894 DE Germany 23766.1077 1980 2022-09-16
## 2895 DE Germany 23484.5992 1979 2022-09-16
## 2896 DE Germany 22558.7148 1978 2022-09-16
## 2897 DE Germany 21880.8076 1977 2022-09-16
## 2898 DE Germany 21124.2557 1976 2022-09-16
## 2899 DE Germany 20041.9480 1975 2022-09-16
## 2900 DE Germany 20141.9395 1974 2022-09-16
## 2901 DE Germany 19972.0254 1973 2022-09-16
## 2902 DE Germany 19121.4979 1972 2022-09-16
## 2903 DE Germany 18421.0422 1971 2022-09-16
## 2904 DE Germany 17894.2967 1970 2022-09-16
## 2905 DE Germany NA 1969 2022-09-16
## 2906 DE Germany NA 1968 2022-09-16
## 2907 DE Germany NA 1967 2022-09-16
## 2908 DE Germany NA 1966 2022-09-16
## 2909 DE Germany NA 1965 2022-09-16
## 2910 DE Germany NA 1964 2022-09-16
## 2911 DE Germany NA 1963 2022-09-16
## 2912 DE Germany NA 1962 2022-09-16
## 2913 DE Germany NA 1961 2022-09-16
## 2914 DE Germany NA 1960 2022-09-16
## 2915 DJ Djibouti 3190.2247 2021 2022-09-16
## 2916 DJ Djibouti 3102.3587 2020 2022-09-16
## 2917 DJ Djibouti 3110.9946 2019 2022-09-16
## 2918 DJ Djibouti 2992.5313 2018 2022-09-16
## 2919 DJ Djibouti 2901.0098 2017 2022-09-16
## 2920 DJ Djibouti 2795.2257 2016 2022-09-16
## 2921 DJ Djibouti 2652.5132 2015 2022-09-16
## 2922 DJ Djibouti 2508.8272 2014 2022-09-16
## 2923 DJ Djibouti 2384.2353 2013 2022-09-16
## 2924 DJ Djibouti NA 2012 2022-09-16
## 2925 DJ Djibouti NA 2011 2022-09-16
## 2926 DJ Djibouti NA 2010 2022-09-16
## 2927 DJ Djibouti NA 2009 2022-09-16
## 2928 DJ Djibouti NA 2008 2022-09-16
## 2929 DJ Djibouti NA 2007 2022-09-16
## 2930 DJ Djibouti NA 2006 2022-09-16
## 2931 DJ Djibouti NA 2005 2022-09-16
## 2932 DJ Djibouti NA 2004 2022-09-16
## 2933 DJ Djibouti NA 2003 2022-09-16
## 2934 DJ Djibouti NA 2002 2022-09-16
## 2935 DJ Djibouti NA 2001 2022-09-16
## 2936 DJ Djibouti NA 2000 2022-09-16
## 2937 DJ Djibouti NA 1999 2022-09-16
## 2938 DJ Djibouti NA 1998 2022-09-16
## 2939 DJ Djibouti NA 1997 2022-09-16
## 2940 DJ Djibouti NA 1996 2022-09-16
## 2941 DJ Djibouti NA 1995 2022-09-16
## 2942 DJ Djibouti NA 1994 2022-09-16
## 2943 DJ Djibouti NA 1993 2022-09-16
## 2944 DJ Djibouti NA 1992 2022-09-16
## 2945 DJ Djibouti NA 1991 2022-09-16
## 2946 DJ Djibouti NA 1990 2022-09-16
## 2947 DJ Djibouti NA 1989 2022-09-16
## 2948 DJ Djibouti NA 1988 2022-09-16
## 2949 DJ Djibouti NA 1987 2022-09-16
## 2950 DJ Djibouti NA 1986 2022-09-16
## 2951 DJ Djibouti NA 1985 2022-09-16
## 2952 DJ Djibouti NA 1984 2022-09-16
## 2953 DJ Djibouti NA 1983 2022-09-16
## 2954 DJ Djibouti NA 1982 2022-09-16
## 2955 DJ Djibouti NA 1981 2022-09-16
## 2956 DJ Djibouti NA 1980 2022-09-16
## 2957 DJ Djibouti NA 1979 2022-09-16
## 2958 DJ Djibouti NA 1978 2022-09-16
## 2959 DJ Djibouti NA 1977 2022-09-16
## 2960 DJ Djibouti NA 1976 2022-09-16
## 2961 DJ Djibouti NA 1975 2022-09-16
## 2962 DJ Djibouti NA 1974 2022-09-16
## 2963 DJ Djibouti NA 1973 2022-09-16
## 2964 DJ Djibouti NA 1972 2022-09-16
## 2965 DJ Djibouti NA 1971 2022-09-16
## 2966 DJ Djibouti NA 1970 2022-09-16
## 2967 DJ Djibouti NA 1969 2022-09-16
## 2968 DJ Djibouti NA 1968 2022-09-16
## 2969 DJ Djibouti NA 1967 2022-09-16
## 2970 DJ Djibouti NA 1966 2022-09-16
## 2971 DJ Djibouti NA 1965 2022-09-16
## 2972 DJ Djibouti NA 1964 2022-09-16
## 2973 DJ Djibouti NA 1963 2022-09-16
## 2974 DJ Djibouti NA 1962 2022-09-16
## 2975 DJ Djibouti NA 1961 2022-09-16
## 2976 DJ Djibouti NA 1960 2022-09-16
## 2977 DK Denmark 58585.5077 2021 2022-09-16
## 2978 DK Denmark 56202.1659 2020 2022-09-16
## 2979 DK Denmark 57553.1312 2019 2022-09-16
## 2980 DK Denmark 56563.4885 2018 2022-09-16
## 2981 DK Denmark 55735.7649 2017 2022-09-16
## 2982 DK Denmark 54556.0690 2016 2022-09-16
## 2983 DK Denmark 53254.8564 2015 2022-09-16
## 2984 DK Denmark 52404.7640 2014 2022-09-16
## 2985 DK Denmark 51831.7979 2013 2022-09-16
## 2986 DK Denmark 51567.0402 2012 2022-09-16
## 2987 DK Denmark 51644.4635 2011 2022-09-16
## 2988 DK Denmark 51173.4662 2010 2022-09-16
## 2989 DK Denmark 50457.2325 2009 2022-09-16
## 2990 DK Denmark 53345.3576 2008 2022-09-16
## 2991 DK Denmark 53935.8702 2007 2022-09-16
## 2992 DK Denmark 53687.4415 2006 2022-09-16
## 2993 DK Denmark 51835.8327 2005 2022-09-16
## 2994 DK Denmark 50792.0010 2004 2022-09-16
## 2995 DK Denmark 49599.9970 2003 2022-09-16
## 2996 DK Denmark 49541.8556 2002 2022-09-16
## 2997 DK Denmark 49469.6888 2001 2022-09-16
## 2998 DK Denmark 49241.9280 2000 2022-09-16
## 2999 DK Denmark 47622.4391 1999 2022-09-16
## 3000 DK Denmark 46412.0390 1998 2022-09-16
## 3001 DK Denmark 45570.0798 1997 2022-09-16
## 3002 DK Denmark 44314.7905 1996 2022-09-16
## 3003 DK Denmark 43310.2501 1995 2022-09-16
## 3004 DK Denmark 42257.0983 1994 2022-09-16
## 3005 DK Denmark 40253.5399 1993 2022-09-16
## 3006 DK Denmark 40383.5588 1992 2022-09-16
## 3007 DK Denmark 39739.6099 1991 2022-09-16
## 3008 DK Denmark 39295.2434 1990 2022-09-16
## 3009 DK Denmark 38786.9310 1989 2022-09-16
## 3010 DK Denmark 38561.4119 1988 2022-09-16
## 3011 DK Denmark 38585.4029 1987 2022-09-16
## 3012 DK Denmark 38536.3229 1986 2022-09-16
## 3013 DK Denmark 36783.9410 1985 2022-09-16
## 3014 DK Denmark 35382.2346 1984 2022-09-16
## 3015 DK Denmark 33949.3314 1983 2022-09-16
## 3016 DK Denmark 33067.5698 1982 2022-09-16
## 3017 DK Denmark 31869.0422 1981 2022-09-16
## 3018 DK Denmark 32073.6413 1980 2022-09-16
## 3019 DK Denmark 32268.5203 1979 2022-09-16
## 3020 DK Denmark 31142.9246 1978 2022-09-16
## 3021 DK Denmark 30559.4559 1977 2022-09-16
## 3022 DK Denmark 30091.9728 1976 2022-09-16
## 3023 DK Denmark 28480.3555 1975 2022-09-16
## 3024 DK Denmark 28984.7792 1974 2022-09-16
## 3025 DK Denmark 29450.5971 1973 2022-09-16
## 3026 DK Denmark 28464.1398 1972 2022-09-16
## 3027 DK Denmark 27545.0669 1971 2022-09-16
## 3028 DK Denmark 26927.9590 1970 2022-09-16
## 3029 DK Denmark 26704.6332 1969 2022-09-16
## 3030 DK Denmark 25211.6295 1968 2022-09-16
## 3031 DK Denmark 24031.1274 1967 2022-09-16
## 3032 DK Denmark 22952.0113 1966 2022-09-16
## 3033 DK Denmark 22519.8115 1965 2022-09-16
## 3034 DK Denmark 21707.1637 1964 2022-09-16
## 3035 DK Denmark 20025.0368 1963 2022-09-16
## 3036 DK Denmark 20055.6437 1962 2022-09-16
## 3037 DK Denmark 19128.4044 1961 2022-09-16
## 3038 DK Denmark 18107.3759 1960 2022-09-16
## 3039 DM Dominica 6978.3688 2021 2022-09-16
## 3040 DM Dominica 6566.7291 2020 2022-09-16
## 3041 DM Dominica 7894.3068 2019 2022-09-16
## 3042 DM Dominica 7501.5922 2018 2022-09-16
## 3043 DM Dominica 7261.4134 2017 2022-09-16
## 3044 DM Dominica 7792.7988 2016 2022-09-16
## 3045 DM Dominica 7597.2889 2015 2022-09-16
## 3046 DM Dominica 7819.8656 2014 2022-09-16
## 3047 DM Dominica 7472.5637 2013 2022-09-16
## 3048 DM Dominica 7554.9543 2012 2022-09-16
## 3049 DM Dominica 7640.3402 2011 2022-09-16
## 3050 DM Dominica 7661.2399 2010 2022-09-16
## 3051 DM Dominica 7613.1670 2009 2022-09-16
## 3052 DM Dominica 7705.3301 2008 2022-09-16
## 3053 DM Dominica 7196.3562 2007 2022-09-16
## 3054 DM Dominica 6774.0423 2006 2022-09-16
## 3055 DM Dominica 6485.1160 2005 2022-09-16
## 3056 DM Dominica 6460.5259 2004 2022-09-16
## 3057 DM Dominica 6294.7577 2003 2022-09-16
## 3058 DM Dominica 5940.9362 2002 2022-09-16
## 3059 DM Dominica 6128.6656 2001 2022-09-16
## 3060 DM Dominica 6134.4300 2000 2022-09-16
## 3061 DM Dominica 5978.8738 1999 2022-09-16
## 3062 DM Dominica 5927.6429 1998 2022-09-16
## 3063 DM Dominica 5678.9621 1997 2022-09-16
## 3064 DM Dominica 5530.7791 1996 2022-09-16
## 3065 DM Dominica 5351.2856 1995 2022-09-16
## 3066 DM Dominica 5198.3262 1994 2022-09-16
## 3067 DM Dominica 5213.1180 1993 2022-09-16
## 3068 DM Dominica 5122.4995 1992 2022-09-16
## 3069 DM Dominica 5032.6664 1991 2022-09-16
## 3070 DM Dominica 4962.5668 1990 2022-09-16
## 3071 DM Dominica 4687.5453 1989 2022-09-16
## 3072 DM Dominica 4664.2060 1988 2022-09-16
## 3073 DM Dominica 4288.1184 1987 2022-09-16
## 3074 DM Dominica 3995.3733 1986 2022-09-16
## 3075 DM Dominica 3696.9791 1985 2022-09-16
## 3076 DM Dominica 3613.6412 1984 2022-09-16
## 3077 DM Dominica 3438.3911 1983 2022-09-16
## 3078 DM Dominica 3329.0866 1982 2022-09-16
## 3079 DM Dominica 3184.2996 1981 2022-09-16
## 3080 DM Dominica 2873.0034 1980 2022-09-16
## 3081 DM Dominica 2545.9901 1979 2022-09-16
## 3082 DM Dominica 3147.0786 1978 2022-09-16
## 3083 DM Dominica 2879.5613 1977 2022-09-16
## 3084 DM Dominica NA 1976 2022-09-16
## 3085 DM Dominica NA 1975 2022-09-16
## 3086 DM Dominica NA 1974 2022-09-16
## 3087 DM Dominica NA 1973 2022-09-16
## 3088 DM Dominica NA 1972 2022-09-16
## 3089 DM Dominica NA 1971 2022-09-16
## 3090 DM Dominica NA 1970 2022-09-16
## 3091 DM Dominica NA 1969 2022-09-16
## 3092 DM Dominica NA 1968 2022-09-16
## 3093 DM Dominica NA 1967 2022-09-16
## 3094 DM Dominica NA 1966 2022-09-16
## 3095 DM Dominica NA 1965 2022-09-16
## 3096 DM Dominica NA 1964 2022-09-16
## 3097 DM Dominica NA 1963 2022-09-16
## 3098 DM Dominica NA 1962 2022-09-16
## 3099 DM Dominica NA 1961 2022-09-16
## 3100 DM Dominica NA 1960 2022-09-16
## 3101 DO Dominican Republic 8536.6521 2021 2022-09-16
## 3102 DO Dominican Republic 7677.7104 2020 2022-09-16
## 3103 DO Dominican Republic 8314.3448 2019 2022-09-16
## 3104 DO Dominican Republic 7997.7611 2018 2022-09-16
## 3105 DO Dominican Republic 7556.8537 2017 2022-09-16
## 3106 DO Dominican Republic 7300.0333 2016 2022-09-16
## 3107 DO Dominican Republic 6921.5206 2015 2022-09-16
## 3108 DO Dominican Republic 6547.3080 2014 2022-09-16
## 3109 DO Dominican Republic 6187.2830 2013 2022-09-16
## 3110 DO Dominican Republic 5969.3528 2012 2022-09-16
## 3111 DO Dominican Republic 5881.1354 2011 2022-09-16
## 3112 DO Dominican Republic 5771.9184 2010 2022-09-16
## 3113 DO Dominican Republic 5393.4703 2009 2022-09-16
## 3114 DO Dominican Republic 5409.9479 2008 2022-09-16
## 3115 DO Dominican Republic 5308.6324 2007 2022-09-16
## 3116 DO Dominican Republic 5006.5524 2006 2022-09-16
## 3117 DO Dominican Republic 4647.0379 2005 2022-09-16
## 3118 DO Dominican Republic 4304.7701 2004 2022-09-16
## 3119 DO Dominican Republic 4255.7662 2003 2022-09-16
## 3120 DO Dominican Republic 4375.7898 2002 2022-09-16
## 3121 DO Dominican Republic 4249.1001 2001 2022-09-16
## 3122 DO Dominican Republic 4209.4119 2000 2022-09-16
## 3123 DO Dominican Republic 4083.6365 1999 2022-09-16
## 3124 DO Dominican Republic 3915.1361 1998 2022-09-16
## 3125 DO Dominican Republic 3727.8002 1997 2022-09-16
## 3126 DO Dominican Republic 3480.2742 1996 2022-09-16
## 3127 DO Dominican Republic 3340.0439 1995 2022-09-16
## 3128 DO Dominican Republic 3216.1089 1994 2022-09-16
## 3129 DO Dominican Republic 3191.6041 1993 2022-09-16
## 3130 DO Dominican Republic 3028.1060 1992 2022-09-16
## 3131 DO Dominican Republic 2774.2546 1991 2022-09-16
## 3132 DO Dominican Republic 2801.0584 1990 2022-09-16
## 3133 DO Dominican Republic 3020.0648 1989 2022-09-16
## 3134 DO Dominican Republic 2949.4301 1988 2022-09-16
## 3135 DO Dominican Republic 2944.4593 1987 2022-09-16
## 3136 DO Dominican Republic 2727.8216 1986 2022-09-16
## 3137 DO Dominican Republic 2689.1246 1985 2022-09-16
## 3138 DO Dominican Republic 2804.9201 1984 2022-09-16
## 3139 DO Dominican Republic 2829.2402 1983 2022-09-16
## 3140 DO Dominican Republic 2762.8719 1982 2022-09-16
## 3141 DO Dominican Republic 2777.0784 1981 2022-09-16
## 3142 DO Dominican Republic 2723.6531 1980 2022-09-16
## 3143 DO Dominican Republic 2581.3974 1979 2022-09-16
## 3144 DO Dominican Republic 2528.4303 1978 2022-09-16
## 3145 DO Dominican Republic 2535.9116 1977 2022-09-16
## 3146 DO Dominican Republic 2475.8867 1976 2022-09-16
## 3147 DO Dominican Republic 2378.9383 1975 2022-09-16
## 3148 DO Dominican Republic 2320.3264 1974 2022-09-16
## 3149 DO Dominican Republic 2247.0845 1973 2022-09-16
## 3150 DO Dominican Republic 2044.3978 1972 2022-09-16
## 3151 DO Dominican Republic 1903.2408 1971 2022-09-16
## 3152 DO Dominican Republic 1765.2520 1970 2022-09-16
## 3153 DO Dominican Republic 1536.3310 1969 2022-09-16
## 3154 DO Dominican Republic 1426.3938 1968 2022-09-16
## 3155 DO Dominican Republic 1465.9490 1967 2022-09-16
## 3156 DO Dominican Republic 1462.4761 1966 2022-09-16
## 3157 DO Dominican Republic 1329.5027 1965 2022-09-16
## 3158 DO Dominican Republic 1567.8966 1964 2022-09-16
## 3159 DO Dominican Republic 1516.5916 1963 2022-09-16
## 3160 DO Dominican Republic 1471.3459 1962 2022-09-16
## 3161 DO Dominican Republic 1299.3952 1961 2022-09-16
## 3162 DO Dominican Republic 1375.4136 1960 2022-09-16
## 3163 DZ Algeria 4112.0760 2014 2022-09-16
## 3164 DZ Algeria 4177.8895 2015 2022-09-16
## 3165 DZ Algeria 3918.4864 2010 2022-09-16
## 3166 DZ Algeria 4042.9236 2013 2022-09-16
## 3167 DZ Algeria 4012.3615 2012 2022-09-16
## 3168 DZ Algeria 3956.8958 2011 2022-09-16
## 3169 DZ Algeria 3760.1554 2006 2022-09-16
## 3170 DZ Algeria 3752.0962 2005 2022-09-16
## 3171 DZ Algeria 3592.6453 2004 2022-09-16
## 3172 DZ Algeria 3490.2232 2003 2022-09-16
## 3173 DZ Algeria 3297.6128 2002 2022-09-16
## 3174 DZ Algeria 3162.8115 2001 2022-09-16
## 3175 DZ Algeria 3111.1762 2000 2022-09-16
## 3176 DZ Algeria 3038.2729 1999 2022-09-16
## 3177 DZ Algeria 2986.0557 1998 2022-09-16
## 3178 DZ Algeria 2884.1202 1997 2022-09-16
## 3179 DZ Algeria 3851.2138 2009 2022-09-16
## 3180 DZ Algeria 3856.4077 2008 2022-09-16
## 3181 DZ Algeria 3828.1485 2007 2022-09-16
## 3182 DZ Algeria 3186.4372 1980 2022-09-16
## 3183 DZ Algeria 3258.7312 1979 2022-09-16
## 3184 DZ Algeria 3123.3766 1978 2022-09-16
## 3185 DZ Algeria 2944.3211 1977 2022-09-16
## 3186 DZ Algeria 2878.6100 1976 2022-09-16
## 3187 DZ Algeria 2732.3244 1975 2022-09-16
## 3188 DZ Algeria 2674.9704 1974 2022-09-16
## 3189 DZ Algeria 2558.0302 1973 2022-09-16
## 3190 DZ Algeria 2532.3928 1972 2022-09-16
## 3191 DZ Algeria 2042.6634 1971 2022-09-16
## 3192 DZ Algeria 2368.5747 1970 2022-09-16
## 3193 DZ Algeria 2238.1427 1969 2022-09-16
## 3194 DZ Algeria 2124.2186 1968 2022-09-16
## 3195 DZ Algeria 1973.3474 1967 2022-09-16
## 3196 DZ Algeria 1854.9538 1966 2022-09-16
## 3197 DZ Algeria 2003.1929 1965 2022-09-16
## 3198 DZ Algeria 1936.9280 1964 2022-09-16
## 3199 DZ Algeria 1877.5130 1963 2022-09-16
## 3200 DZ Algeria 1433.1006 1962 2022-09-16
## 3201 DZ Algeria 1828.9728 1961 2022-09-16
## 3202 DZ Algeria 2170.3127 1960 2022-09-16
## 3203 DZ Algeria 3366.9389 1986 2022-09-16
## 3204 DZ Algeria 3453.8216 1985 2022-09-16
## 3205 DZ Algeria 3432.8064 1984 2022-09-16
## 3206 DZ Algeria 2899.1932 1996 2022-09-16
## 3207 DZ Algeria 2834.2652 1995 2022-09-16
## 3208 DZ Algeria 2783.1550 1994 2022-09-16
## 3209 DZ Algeria 2867.1959 1993 2022-09-16
## 3210 DZ Algeria 2994.4913 1992 2022-09-16
## 3211 DZ Algeria 3011.4999 1991 2022-09-16
## 3212 DZ Algeria 3123.9977 1990 2022-09-16
## 3213 DZ Algeria 3179.7733 1989 2022-09-16
## 3214 DZ Algeria 3128.3375 1988 2022-09-16
## 3215 DZ Algeria 3248.8812 1987 2022-09-16
## 3216 DZ Algeria 3281.8609 1982 2022-09-16
## 3217 DZ Algeria 3182.2599 1981 2022-09-16
## 3218 DZ Algeria 3913.6529 2021 2022-09-16
## 3219 DZ Algeria 3352.6997 1983 2022-09-16
## 3220 DZ Algeria 4115.3955 2019 2022-09-16
## 3221 DZ Algeria 4154.2190 2018 2022-09-16
## 3222 DZ Algeria 4192.3377 2017 2022-09-16
## 3223 DZ Algeria 3834.4390 2020 2022-09-16
## 3224 DZ Algeria 4224.0373 2016 2022-09-16
## 3225 EC Ecuador 5464.6293 2021 2022-09-16
## 3226 EC Ecuador 5315.5165 2020 2022-09-16
## 3227 EC Ecuador 5853.8131 2019 2022-09-16
## 3228 EC Ecuador 5952.2181 2018 2022-09-16
## 3229 EC Ecuador 5981.1326 2017 2022-09-16
## 3230 EC Ecuador 5947.0020 2016 2022-09-16
## 3231 EC Ecuador 6124.4909 2015 2022-09-16
## 3232 EC Ecuador 6218.2392 2014 2022-09-16
## 3233 EC Ecuador 6084.4439 2013 2022-09-16
## 3234 EC Ecuador 5885.0999 2012 2022-09-16
## 3235 EC Ecuador 5654.9281 2011 2022-09-16
## 3236 EC Ecuador 5323.7375 2010 2022-09-16
## 3237 EC Ecuador 5224.8383 2009 2022-09-16
## 3238 EC Ecuador 5280.7136 2008 2022-09-16
## 3239 EC Ecuador 5048.1446 2007 2022-09-16
## 3240 EC Ecuador 5023.2911 2006 2022-09-16
## 3241 EC Ecuador 4892.6913 2005 2022-09-16
## 3242 EC Ecuador 4725.2324 2004 2022-09-16
## 3243 EC Ecuador 4440.7298 2003 2022-09-16
## 3244 EC Ecuador 4397.4230 2002 2022-09-16
## 3245 EC Ecuador 4299.2021 2001 2022-09-16
## 3246 EC Ecuador 4209.3450 2000 2022-09-16
## 3247 EC Ecuador 4243.8722 1999 2022-09-16
## 3248 EC Ecuador 4543.9998 1998 2022-09-16
## 3249 EC Ecuador 4491.2009 1997 2022-09-16
## 3250 EC Ecuador 4396.2213 1996 2022-09-16
## 3251 EC Ecuador 4414.9283 1995 2022-09-16
## 3252 EC Ecuador 4412.9021 1994 2022-09-16
## 3253 EC Ecuador 4327.8633 1993 2022-09-16
## 3254 EC Ecuador 4341.2800 1992 2022-09-16
## 3255 EC Ecuador 4350.3063 1991 2022-09-16
## 3256 EC Ecuador 4269.7829 1990 2022-09-16
## 3257 EC Ecuador 4216.7664 1989 2022-09-16
## 3258 EC Ecuador 4275.8965 1988 2022-09-16
## 3259 EC Ecuador 4136.9336 1987 2022-09-16
## 3260 EC Ecuador 4250.2871 1986 2022-09-16
## 3261 EC Ecuador 4210.5312 1985 2022-09-16
## 3262 EC Ecuador 4153.1079 1984 2022-09-16
## 3263 EC Ecuador 4149.5651 1983 2022-09-16
## 3264 EC Ecuador 4270.1380 1982 2022-09-16
## 3265 EC Ecuador 4353.6688 1981 2022-09-16
## 3266 EC Ecuador 4229.8575 1980 2022-09-16
## 3267 EC Ecuador 4186.0630 1979 2022-09-16
## 3268 EC Ecuador 4142.7351 1978 2022-09-16
## 3269 EC Ecuador 4024.5150 1977 2022-09-16
## 3270 EC Ecuador 4068.9123 1976 2022-09-16
## 3271 EC Ecuador 3893.4524 1975 2022-09-16
## 3272 EC Ecuador 3607.0259 1974 2022-09-16
## 3273 EC Ecuador 3335.8742 1973 2022-09-16
## 3274 EC Ecuador 3011.9183 1972 2022-09-16
## 3275 EC Ecuador 2951.5426 1971 2022-09-16
## 3276 EC Ecuador 2858.2670 1970 2022-09-16
## 3277 EC Ecuador 2753.4183 1969 2022-09-16
## 3278 EC Ecuador 2708.6539 1968 2022-09-16
## 3279 EC Ecuador 2736.9940 1967 2022-09-16
## 3280 EC Ecuador 2693.9102 1966 2022-09-16
## 3281 EC Ecuador 2783.2133 1965 2022-09-16
## 3282 EC Ecuador 2774.3803 1964 2022-09-16
## 3283 EC Ecuador 2658.6534 1963 2022-09-16
## 3284 EC Ecuador 2679.4970 1962 2022-09-16
## 3285 EC Ecuador 2627.6393 1961 2022-09-16
## 3286 EC Ecuador 2571.3523 1960 2022-09-16
## 3287 EE Estonia 21421.1459 2021 2022-09-16
## 3288 EE Estonia 19767.0776 2020 2022-09-16
## 3289 EE Estonia 20408.4362 2019 2022-09-16
## 3290 EE Estonia 19677.6768 2018 2022-09-16
## 3291 EE Estonia 18962.4103 2017 2022-09-16
## 3292 EE Estonia 17945.9450 2016 2022-09-16
## 3293 EE Estonia 17402.0376 2015 2022-09-16
## 3294 EE Estonia 17096.6446 2014 2022-09-16
## 3295 EE Estonia 16553.3833 2013 2022-09-16
## 3296 EE Estonia 16257.4722 2012 2022-09-16
## 3297 EE Estonia 15692.7888 2011 2022-09-16
## 3298 EE Estonia 14585.8387 2010 2022-09-16
## 3299 EE Estonia 14205.3949 2009 2022-09-16
## 3300 EE Estonia 16607.5681 2008 2022-09-16
## 3301 EE Estonia 17459.0983 2007 2022-09-16
## 3302 EE Estonia 16155.2074 2006 2022-09-16
## 3303 EE Estonia 14631.3873 2005 2022-09-16
## 3304 EE Estonia 13282.5455 2004 2022-09-16
## 3305 EE Estonia 12362.2483 2003 2022-09-16
## 3306 EE Estonia 11417.1680 2002 2022-09-16
## 3307 EE Estonia 10625.5793 2001 2022-09-16
## 3308 EE Estonia 9960.1390 2000 2022-09-16
## 3309 EE Estonia 9091.3332 1999 2022-09-16
## 3310 EE Estonia 9157.0648 1998 2022-09-16
## 3311 EE Estonia 8692.2964 1997 2022-09-16
## 3312 EE Estonia 7601.6690 1996 2022-09-16
## 3313 EE Estonia 7137.5308 1995 2022-09-16
## 3314 EE Estonia NA 1994 2022-09-16
## 3315 EE Estonia NA 1993 2022-09-16
## 3316 EE Estonia NA 1992 2022-09-16
## 3317 EE Estonia NA 1991 2022-09-16
## 3318 EE Estonia NA 1990 2022-09-16
## 3319 EE Estonia NA 1989 2022-09-16
## 3320 EE Estonia NA 1988 2022-09-16
## 3321 EE Estonia NA 1987 2022-09-16
## 3322 EE Estonia NA 1986 2022-09-16
## 3323 EE Estonia NA 1985 2022-09-16
## 3324 EE Estonia NA 1984 2022-09-16
## 3325 EE Estonia NA 1983 2022-09-16
## 3326 EE Estonia NA 1982 2022-09-16
## 3327 EE Estonia NA 1981 2022-09-16
## 3328 EE Estonia NA 1980 2022-09-16
## 3329 EE Estonia NA 1979 2022-09-16
## 3330 EE Estonia NA 1978 2022-09-16
## 3331 EE Estonia NA 1977 2022-09-16
## 3332 EE Estonia NA 1976 2022-09-16
## 3333 EE Estonia NA 1975 2022-09-16
## 3334 EE Estonia NA 1974 2022-09-16
## 3335 EE Estonia NA 1973 2022-09-16
## 3336 EE Estonia NA 1972 2022-09-16
## 3337 EE Estonia NA 1971 2022-09-16
## 3338 EE Estonia NA 1970 2022-09-16
## 3339 EE Estonia NA 1969 2022-09-16
## 3340 EE Estonia NA 1968 2022-09-16
## 3341 EE Estonia NA 1967 2022-09-16
## 3342 EE Estonia NA 1966 2022-09-16
## 3343 EE Estonia NA 1965 2022-09-16
## 3344 EE Estonia NA 1964 2022-09-16
## 3345 EE Estonia NA 1963 2022-09-16
## 3346 EE Estonia NA 1962 2022-09-16
## 3347 EE Estonia NA 1961 2022-09-16
## 3348 EE Estonia NA 1960 2022-09-16
## 3349 EG Egypt, Arab Rep. 4085.6249 2021 2022-09-16
## 3350 EG Egypt, Arab Rep. 4028.4209 2020 2022-09-16
## 3351 EG Egypt, Arab Rep. 3964.9871 2019 2022-09-16
## 3352 EG Egypt, Arab Rep. 3831.1998 2018 2022-09-16
## 3353 EG Egypt, Arab Rep. 3712.6037 2017 2022-09-16
## 3354 EG Egypt, Arab Rep. 3638.8949 2016 2022-09-16
## 3355 EG Egypt, Arab Rep. 3562.9327 2015 2022-09-16
## 3356 EG Egypt, Arab Rep. 3489.8641 2014 2022-09-16
## 3357 EG Egypt, Arab Rep. 3468.4688 2013 2022-09-16
## 3358 EG Egypt, Arab Rep. 3472.1483 2012 2022-09-16
## 3359 EG Egypt, Arab Rep. 3472.5983 2011 2022-09-16
## 3360 EG Egypt, Arab Rep. 3485.2822 2010 2022-09-16
## 3361 EG Egypt, Arab Rep. 3381.1154 2009 2022-09-16
## 3362 EG Egypt, Arab Rep. 3290.9407 2008 2022-09-16
## 3363 EG Egypt, Arab Rep. 3126.2750 2007 2022-09-16
## 3364 EG Egypt, Arab Rep. 2970.9448 2006 2022-09-16
## 3365 EG Egypt, Arab Rep. 2830.3501 2005 2022-09-16
## 3366 EG Egypt, Arab Rep. 2758.5664 2004 2022-09-16
## 3367 EG Egypt, Arab Rep. 2699.1011 2003 2022-09-16
## 3368 EG Egypt, Arab Rep. 2664.6420 2002 2022-09-16
## 3369 EG Egypt, Arab Rep. 2651.8655 2001 2022-09-16
## 3370 EG Egypt, Arab Rep. 2610.4765 2000 2022-09-16
## 3371 EG Egypt, Arab Rep. 2501.9819 1999 2022-09-16
## 3372 EG Egypt, Arab Rep. 2406.0452 1998 2022-09-16
## 3373 EG Egypt, Arab Rep. 2324.9166 1997 2022-09-16
## 3374 EG Egypt, Arab Rep. 2248.5942 1996 2022-09-16
## 3375 EG Egypt, Arab Rep. 2185.3022 1995 2022-09-16
## 3376 EG Egypt, Arab Rep. 2130.6757 1994 2022-09-16
## 3377 EG Egypt, Arab Rep. 2090.8404 1993 2022-09-16
## 3378 EG Egypt, Arab Rep. 2073.9402 1992 2022-09-16
## 3379 EG Egypt, Arab Rep. 2028.0919 1991 2022-09-16
## 3380 EG Egypt, Arab Rep. 2051.6123 1990 2022-09-16
## 3381 EG Egypt, Arab Rep. 1989.2741 1989 2022-09-16
## 3382 EG Egypt, Arab Rep. 1945.3086 1988 2022-09-16
## 3383 EG Egypt, Arab Rep. 1894.5079 1987 2022-09-16
## 3384 EG Egypt, Arab Rep. 1874.6718 1986 2022-09-16
## 3385 EG Egypt, Arab Rep. 1838.5757 1985 2022-09-16
## 3386 EG Egypt, Arab Rep. 1784.6640 1984 2022-09-16
## 3387 EG Egypt, Arab Rep. 1669.3458 1983 2022-09-16
## 3388 EG Egypt, Arab Rep. 1629.8972 1982 2022-09-16
## 3389 EG Egypt, Arab Rep. 1521.0253 1981 2022-09-16
## 3390 EG Egypt, Arab Rep. 1452.5982 1980 2022-09-16
## 3391 EG Egypt, Arab Rep. 1352.9479 1979 2022-09-16
## 3392 EG Egypt, Arab Rep. 1325.1887 1978 2022-09-16
## 3393 EG Egypt, Arab Rep. 1248.5439 1977 2022-09-16
## 3394 EG Egypt, Arab Rep. 1171.7697 1976 2022-09-16
## 3395 EG Egypt, Arab Rep. 1057.8457 1975 2022-09-16
## 3396 EG Egypt, Arab Rep. 992.6995 1974 2022-09-16
## 3397 EG Egypt, Arab Rep. 998.9621 1973 2022-09-16
## 3398 EG Egypt, Arab Rep. 986.3396 1972 2022-09-16
## 3399 EG Egypt, Arab Rep. 978.5268 1971 2022-09-16
## 3400 EG Egypt, Arab Rep. 962.1166 1970 2022-09-16
## 3401 EG Egypt, Arab Rep. 933.0246 1969 2022-09-16
## 3402 EG Egypt, Arab Rep. 908.3707 1968 2022-09-16
## 3403 EG Egypt, Arab Rep. 946.9741 1967 2022-09-16
## 3404 EG Egypt, Arab Rep. 964.0365 1966 2022-09-16
## 3405 EG Egypt, Arab Rep. 941.9867 1965 2022-09-16
## 3406 EG Egypt, Arab Rep. 921.7362 1964 2022-09-16
## 3407 EG Egypt, Arab Rep. 848.7588 1963 2022-09-16
## 3408 EG Egypt, Arab Rep. 788.7199 1962 2022-09-16
## 3409 EG Egypt, Arab Rep. 779.9913 1961 2022-09-16
## 3410 EG Egypt, Arab Rep. 762.1341 1960 2022-09-16
## 3411 ER Eritrea NA 2021 2022-09-16
## 3412 ER Eritrea NA 2020 2022-09-16
## 3413 ER Eritrea NA 2019 2022-09-16
## 3414 ER Eritrea NA 2018 2022-09-16
## 3415 ER Eritrea NA 2017 2022-09-16
## 3416 ER Eritrea NA 2016 2022-09-16
## 3417 ER Eritrea NA 2015 2022-09-16
## 3418 ER Eritrea NA 2014 2022-09-16
## 3419 ER Eritrea NA 2013 2022-09-16
## 3420 ER Eritrea NA 2012 2022-09-16
## 3421 ER Eritrea 700.9982 2011 2022-09-16
## 3422 ER Eritrea 653.8688 2010 2022-09-16
## 3423 ER Eritrea 650.1897 2009 2022-09-16
## 3424 ER Eritrea 637.6027 2008 2022-09-16
## 3425 ER Eritrea 722.3670 2007 2022-09-16
## 3426 ER Eritrea 731.3222 2006 2022-09-16
## 3427 ER Eritrea 762.3992 2005 2022-09-16
## 3428 ER Eritrea 772.4624 2004 2022-09-16
## 3429 ER Eritrea 796.1971 2003 2022-09-16
## 3430 ER Eritrea 857.4481 2002 2022-09-16
## 3431 ER Eritrea 869.7055 2001 2022-09-16
## 3432 ER Eritrea 828.4017 2000 2022-09-16
## 3433 ER Eritrea 876.2990 1999 2022-09-16
## 3434 ER Eritrea 888.4803 1998 2022-09-16
## 3435 ER Eritrea 877.4784 1997 2022-09-16
## 3436 ER Eritrea 812.6955 1996 2022-09-16
## 3437 ER Eritrea 741.2072 1995 2022-09-16
## 3438 ER Eritrea 715.9940 1994 2022-09-16
## 3439 ER Eritrea 585.3214 1993 2022-09-16
## 3440 ER Eritrea 511.5741 1992 2022-09-16
## 3441 ER Eritrea NA 1991 2022-09-16
## 3442 ER Eritrea NA 1990 2022-09-16
## 3443 ER Eritrea NA 1989 2022-09-16
## 3444 ER Eritrea NA 1988 2022-09-16
## 3445 ER Eritrea NA 1987 2022-09-16
## 3446 ER Eritrea NA 1986 2022-09-16
## 3447 ER Eritrea NA 1985 2022-09-16
## 3448 ER Eritrea NA 1984 2022-09-16
## 3449 ER Eritrea NA 1983 2022-09-16
## 3450 ER Eritrea NA 1982 2022-09-16
## 3451 ER Eritrea NA 1981 2022-09-16
## 3452 ER Eritrea NA 1980 2022-09-16
## 3453 ER Eritrea NA 1979 2022-09-16
## 3454 ER Eritrea NA 1978 2022-09-16
## 3455 ER Eritrea NA 1977 2022-09-16
## 3456 ER Eritrea NA 1976 2022-09-16
## 3457 ER Eritrea NA 1975 2022-09-16
## 3458 ER Eritrea NA 1974 2022-09-16
## 3459 ER Eritrea NA 1973 2022-09-16
## 3460 ER Eritrea NA 1972 2022-09-16
## 3461 ER Eritrea NA 1971 2022-09-16
## 3462 ER Eritrea NA 1970 2022-09-16
## 3463 ER Eritrea NA 1969 2022-09-16
## 3464 ER Eritrea NA 1968 2022-09-16
## 3465 ER Eritrea NA 1967 2022-09-16
## 3466 ER Eritrea NA 1966 2022-09-16
## 3467 ER Eritrea NA 1965 2022-09-16
## 3468 ER Eritrea NA 1964 2022-09-16
## 3469 ER Eritrea NA 1963 2022-09-16
## 3470 ER Eritrea NA 1962 2022-09-16
## 3471 ER Eritrea NA 1961 2022-09-16
## 3472 ER Eritrea NA 1960 2022-09-16
## 3473 ES Spain 26238.7808 2021 2022-09-16
## 3474 ES Spain 24939.1873 2020 2022-09-16
## 3475 ES Spain 28101.5271 2019 2022-09-16
## 3476 ES Spain 27725.8055 2018 2022-09-16
## 3477 ES Spain 27224.3980 2017 2022-09-16
## 3478 ES Spain 26500.3139 2016 2022-09-16
## 3479 ES Spain 25742.3688 2015 2022-09-16
## 3480 ES Spain 24772.3413 2014 2022-09-16
## 3481 ES Spain 24361.2573 2013 2022-09-16
## 3482 ES Spain 24635.1756 2012 2022-09-16
## 3483 ES Spain 25402.9611 2011 2022-09-16
## 3484 ES Spain 25702.7042 2010 2022-09-16
## 3485 ES Spain 25779.2915 2009 2022-09-16
## 3486 ES Spain 27025.6812 2008 2022-09-16
## 3487 ES Spain 27218.8172 2007 2022-09-16
## 3488 ES Spain 26762.6421 2006 2022-09-16
## 3489 ES Spain 26146.1644 2005 2022-09-16
## 3490 ES Spain 25654.6984 2004 2022-09-16
## 3491 ES Spain 25310.7983 2003 2022-09-16
## 3492 ES Spain 25026.4346 2002 2022-09-16
## 3493 ES Spain 24707.6930 2001 2022-09-16
## 3494 ES Spain 23938.2967 2000 2022-09-16
## 3495 ES Spain 22847.0199 1999 2022-09-16
## 3496 ES Spain 21953.9709 1998 2022-09-16
## 3497 ES Spain 21117.3233 1997 2022-09-16
## 3498 ES Spain 20448.8796 1996 2022-09-16
## 3499 ES Spain 20002.0701 1995 2022-09-16
## 3500 ES Spain 19551.4183 1994 2022-09-16
## 3501 ES Spain 19187.4502 1993 2022-09-16
## 3502 ES Spain 19488.2234 1992 2022-09-16
## 3503 ES Spain 19403.6013 1991 2022-09-16
## 3504 ES Spain 18970.0735 1990 2022-09-16
## 3505 ES Spain 18297.4999 1989 2022-09-16
## 3506 ES Spain 17482.3311 1988 2022-09-16
## 3507 ES Spain 16670.2098 1987 2022-09-16
## 3508 ES Spain 15835.1040 1986 2022-09-16
## 3509 ES Spain 15382.0593 1985 2022-09-16
## 3510 ES Spain 15087.6497 1984 2022-09-16
## 3511 ES Spain 14884.7853 1983 2022-09-16
## 3512 ES Spain 14697.3189 1982 2022-09-16
## 3513 ES Spain 14603.7949 1981 2022-09-16
## 3514 ES Spain 14727.4892 1980 2022-09-16
## 3515 ES Spain 14525.3951 1979 2022-09-16
## 3516 ES Spain 14647.9292 1978 2022-09-16
## 3517 ES Spain 14576.3987 1977 2022-09-16
## 3518 ES Spain 14320.6804 1976 2022-09-16
## 3519 ES Spain 14009.9711 1975 2022-09-16
## 3520 ES Spain 14085.9078 1974 2022-09-16
## 3521 ES Spain 13483.0705 1973 2022-09-16
## 3522 ES Spain 12647.8061 1972 2022-09-16
## 3523 ES Spain 11824.5576 1971 2022-09-16
## 3524 ES Spain 11436.1928 1970 2022-09-16
## 3525 ES Spain 11088.1617 1969 2022-09-16
## 3526 ES Spain 10282.1365 1968 2022-09-16
## 3527 ES Spain 9772.7632 1967 2022-09-16
## 3528 ES Spain 9482.2161 1966 2022-09-16
## 3529 ES Spain 8932.5570 1965 2022-09-16
## 3530 ES Spain 8498.6474 1964 2022-09-16
## 3531 ES Spain 8150.8314 1963 2022-09-16
## 3532 ES Spain 7502.6412 1962 2022-09-16
## 3533 ES Spain 6886.5391 1961 2022-09-16
## 3534 ES Spain 6215.0363 1960 2022-09-16
## 3535 ET Ethiopia 852.0062 2021 2022-09-16
## 3536 ET Ethiopia 826.9731 2020 2022-09-16
## 3537 ET Ethiopia 799.7951 2019 2022-09-16
## 3538 ET Ethiopia 757.3504 2018 2022-09-16
## 3539 ET Ethiopia 727.8441 2017 2022-09-16
## 3540 ET Ethiopia 682.2394 2016 2022-09-16
## 3541 ET Ethiopia 640.5419 2015 2022-09-16
## 3542 ET Ethiopia 596.4551 2014 2022-09-16
## 3543 ET Ethiopia 556.3263 2013 2022-09-16
## 3544 ET Ethiopia 517.5135 2012 2022-09-16
## 3545 ET Ethiopia 489.9927 2011 2022-09-16
## 3546 ET Ethiopia 453.2988 2010 2022-09-16
## 3547 ET Ethiopia 414.1205 2009 2022-09-16
## 3548 ET Ethiopia 391.2556 2008 2022-09-16
## 3549 ET Ethiopia 362.9693 2007 2022-09-16
## 3550 ET Ethiopia 334.7274 2006 2022-09-16
## 3551 ET Ethiopia 310.4826 2005 2022-09-16
## 3552 ET Ethiopia 285.5457 2004 2022-09-16
## 3553 ET Ethiopia 258.6288 2003 2022-09-16
## 3554 ET Ethiopia 271.9869 2002 2022-09-16
## 3555 ET Ethiopia 275.7222 2001 2022-09-16
## 3556 ET Ethiopia 262.0253 2000 2022-09-16
## 3557 ET Ethiopia 254.2476 1999 2022-09-16
## 3558 ET Ethiopia 248.8657 1998 2022-09-16
## 3559 ET Ethiopia 265.4683 1997 2022-09-16
## 3560 ET Ethiopia 265.3309 1996 2022-09-16
## 3561 ET Ethiopia 243.5984 1995 2022-09-16
## 3562 ET Ethiopia 237.2994 1994 2022-09-16
## 3563 ET Ethiopia 238.0991 1993 2022-09-16
## 3564 ET Ethiopia 218.1018 1992 2022-09-16
## 3565 ET Ethiopia 247.5432 1991 2022-09-16
## 3566 ET Ethiopia 276.1558 1990 2022-09-16
## 3567 ET Ethiopia 278.2122 1989 2022-09-16
## 3568 ET Ethiopia 288.6723 1988 2022-09-16
## 3569 ET Ethiopia 296.6915 1987 2022-09-16
## 3570 ET Ethiopia 269.0439 1986 2022-09-16
## 3571 ET Ethiopia 253.2675 1985 2022-09-16
## 3572 ET Ethiopia 294.2826 1984 2022-09-16
## 3573 ET Ethiopia 312.6908 1983 2022-09-16
## 3574 ET Ethiopia 297.8603 1982 2022-09-16
## 3575 ET Ethiopia 303.4468 1981 2022-09-16
## 3576 ET Ethiopia NA 1980 2022-09-16
## 3577 ET Ethiopia NA 1979 2022-09-16
## 3578 ET Ethiopia NA 1978 2022-09-16
## 3579 ET Ethiopia NA 1977 2022-09-16
## 3580 ET Ethiopia NA 1976 2022-09-16
## 3581 ET Ethiopia NA 1975 2022-09-16
## 3582 ET Ethiopia NA 1974 2022-09-16
## 3583 ET Ethiopia NA 1973 2022-09-16
## 3584 ET Ethiopia NA 1972 2022-09-16
## 3585 ET Ethiopia NA 1971 2022-09-16
## 3586 ET Ethiopia NA 1970 2022-09-16
## 3587 ET Ethiopia NA 1969 2022-09-16
## 3588 ET Ethiopia NA 1968 2022-09-16
## 3589 ET Ethiopia NA 1967 2022-09-16
## 3590 ET Ethiopia NA 1966 2022-09-16
## 3591 ET Ethiopia NA 1965 2022-09-16
## 3592 ET Ethiopia NA 1964 2022-09-16
## 3593 ET Ethiopia NA 1963 2022-09-16
## 3594 ET Ethiopia NA 1962 2022-09-16
## 3595 ET Ethiopia NA 1961 2022-09-16
## 3596 ET Ethiopia NA 1960 2022-09-16
## 3597 FI Finland 46471.3594 2021 2022-09-16
## 3598 FI Finland 45009.6153 2020 2022-09-16
## 3599 FI Finland 46135.0777 2019 2022-09-16
## 3600 FI Finland 45628.9257 2018 2022-09-16
## 3601 FI Finland 45173.6294 2017 2022-09-16
## 3602 FI Finland 43878.9667 2016 2022-09-16
## 3603 FI Finland 42801.9081 2015 2022-09-16
## 3604 FI Finland 42710.9213 2014 2022-09-16
## 3605 FI Finland 43044.9971 2013 2022-09-16
## 3606 FI Finland 43637.2487 2012 2022-09-16
## 3607 FI Finland 44466.8177 2011 2022-09-16
## 3608 FI Finland 43563.5722 2010 2022-09-16
## 3609 FI Finland 42412.0978 2009 2022-09-16
## 3610 FI Finland 46358.6204 2008 2022-09-16
## 3611 FI Finland 46212.6410 2007 2022-09-16
## 3612 FI Finland 44074.0309 2006 2022-09-16
## 3613 FI Finland 42530.6197 2005 2022-09-16
## 3614 FI Finland 41522.1751 2004 2022-09-16
## 3615 FI Finland 40044.3049 2003 2022-09-16
## 3616 FI Finland 39351.3904 2002 2022-09-16
## 3617 FI Finland 38784.7726 2001 2022-09-16
## 3618 FI Finland 37884.3913 2000 2022-09-16
## 3619 FI Finland 35891.0056 1999 2022-09-16
## 3620 FI Finland 34464.9909 1998 2022-09-16
## 3621 FI Finland 32768.3781 1997 2022-09-16
## 3622 FI Finland 30908.3003 1996 2022-09-16
## 3623 FI Finland 29912.8980 1995 2022-09-16
## 3624 FI Finland 28812.3036 1994 2022-09-16
## 3625 FI Finland 27833.7026 1993 2022-09-16
## 3626 FI Finland 28155.0896 1992 2022-09-16
## 3627 FI Finland 29278.3637 1991 2022-09-16
## 3628 FI Finland 31279.9520 1990 2022-09-16
## 3629 FI Finland 31209.7581 1989 2022-09-16
## 3630 FI Finland 29806.3433 1988 2022-09-16
## 3631 FI Finland 28410.8751 1987 2022-09-16
## 3632 FI Finland 27508.2000 1986 2022-09-16
## 3633 FI Finland 26857.5936 1985 2022-09-16
## 3634 FI Finland 26045.5139 1984 2022-09-16
## 3635 FI Finland 25363.8552 1983 2022-09-16
## 3636 FI Finland 24744.2968 1982 2022-09-16
## 3637 FI Finland 24133.2421 1981 2022-09-16
## 3638 FI Finland 23921.6145 1980 2022-09-16
## 3639 FI Finland 22769.1073 1979 2022-09-16
## 3640 FI Finland 21309.7127 1978 2022-09-16
## 3641 FI Finland 20764.7166 1977 2022-09-16
## 3642 FI Finland 20773.1309 1976 2022-09-16
## 3643 FI Finland 20764.3370 1975 2022-09-16
## 3644 FI Finland 20486.9386 1974 2022-09-16
## 3645 FI Finland 19948.8274 1973 2022-09-16
## 3646 FI Finland 18752.7792 1972 2022-09-16
## 3647 FI Finland 17510.2266 1971 2022-09-16
## 3648 FI Finland 17128.6307 1970 2022-09-16
## 3649 FI Finland 16280.1983 1969 2022-09-16
## 3650 FI Finland 14846.4872 1968 2022-09-16
## 3651 FI Finland 14577.5309 1967 2022-09-16
## 3652 FI Finland 14345.5591 1966 2022-09-16
## 3653 FI Finland 14065.6737 1965 2022-09-16
## 3654 FI Finland 13401.9566 1964 2022-09-16
## 3655 FI Finland 12805.8626 1963 2022-09-16
## 3656 FI Finland 12486.5232 1962 2022-09-16
## 3657 FI Finland 12207.6936 1961 2022-09-16
## 3658 FI Finland 11425.2934 1960 2022-09-16
## 3659 FJ Fiji 4708.0919 2021 2022-09-16
## 3660 FJ Fiji 4943.7696 2020 2022-09-16
## 3661 FJ Fiji 5869.0211 2019 2022-09-16
## 3662 FJ Fiji 5938.4275 2018 2022-09-16
## 3663 FJ Fiji 5759.6586 2017 2022-09-16
## 3664 FJ Fiji 5498.6619 2016 2022-09-16
## 3665 FJ Fiji 5390.7142 2015 2022-09-16
## 3666 FJ Fiji 5171.5276 2014 2022-09-16
## 3667 FJ Fiji 4901.8976 2013 2022-09-16
## 3668 FJ Fiji 4683.2263 2012 2022-09-16
## 3669 FJ Fiji 4626.6833 2011 2022-09-16
## 3670 FJ Fiji 4523.8662 2010 2022-09-16
## 3671 FJ Fiji 4425.8480 2009 2022-09-16
## 3672 FJ Fiji 4532.0132 2008 2022-09-16
## 3673 FJ Fiji 4534.8828 2007 2022-09-16
## 3674 FJ Fiji 4619.7340 2006 2022-09-16
## 3675 FJ Fiji 4570.2859 2005 2022-09-16
## 3676 FJ Fiji 4559.2814 2004 2022-09-16
## 3677 FJ Fiji 4339.2778 2003 2022-09-16
## 3678 FJ Fiji 4300.6413 2002 2022-09-16
## 3679 FJ Fiji 4174.1182 2001 2022-09-16
## 3680 FJ Fiji 4106.9663 2000 2022-09-16
## 3681 FJ Fiji 4202.3926 1999 2022-09-16
## 3682 FJ Fiji 3892.2000 1998 2022-09-16
## 3683 FJ Fiji 3878.1754 1997 2022-09-16
## 3684 FJ Fiji 4007.6120 1996 2022-09-16
## 3685 FJ Fiji 3868.2488 1995 2022-09-16
## 3686 FJ Fiji 3822.3119 1994 2022-09-16
## 3687 FJ Fiji 3688.1130 1993 2022-09-16
## 3688 FJ Fiji 3662.0868 1992 2022-09-16
## 3689 FJ Fiji 3494.1215 1991 2022-09-16
## 3690 FJ Fiji 3624.7108 1990 2022-09-16
## 3691 FJ Fiji 3444.7873 1989 2022-09-16
## 3692 FJ Fiji 3213.7259 1988 2022-09-16
## 3693 FJ Fiji 3188.3644 1987 2022-09-16
## 3694 FJ Fiji 3429.1049 1986 2022-09-16
## 3695 FJ Fiji 3213.1927 1985 2022-09-16
## 3696 FJ Fiji 3422.9056 1984 2022-09-16
## 3697 FJ Fiji 3226.8779 1983 2022-09-16
## 3698 FJ Fiji 3446.4929 1982 2022-09-16
## 3699 FJ Fiji 3762.7635 1981 2022-09-16
## 3700 FJ Fiji 3626.3225 1980 2022-09-16
## 3701 FJ Fiji 3766.8109 1979 2022-09-16
## 3702 FJ Fiji 3423.6897 1978 2022-09-16
## 3703 FJ Fiji 3423.3261 1977 2022-09-16
## 3704 FJ Fiji 3291.5555 1976 2022-09-16
## 3705 FJ Fiji 3264.6496 1975 2022-09-16
## 3706 FJ Fiji 3311.8036 1974 2022-09-16
## 3707 FJ Fiji 3293.5186 1973 2022-09-16
## 3708 FJ Fiji 3012.2670 1972 2022-09-16
## 3709 FJ Fiji 2861.6452 1971 2022-09-16
## 3710 FJ Fiji 2734.0984 1970 2022-09-16
## 3711 FJ Fiji 2477.5929 1969 2022-09-16
## 3712 FJ Fiji 2466.9902 1968 2022-09-16
## 3713 FJ Fiji 2337.4198 1967 2022-09-16
## 3714 FJ Fiji 2112.1907 1966 2022-09-16
## 3715 FJ Fiji 2168.8196 1965 2022-09-16
## 3716 FJ Fiji 2295.4133 1964 2022-09-16
## 3717 FJ Fiji 2260.0743 1963 2022-09-16
## 3718 FJ Fiji 2198.6789 1962 2022-09-16
## 3719 FJ Fiji 2197.3415 1961 2022-09-16
## 3720 FJ Fiji 2196.9262 1960 2022-09-16
## 3721 FM Micronesia, Fed. Sts. 2719.6846 2021 2022-09-16
## 3722 FM Micronesia, Fed. Sts. 2839.3884 2020 2022-09-16
## 3723 FM Micronesia, Fed. Sts. 2921.1456 2019 2022-09-16
## 3724 FM Micronesia, Fed. Sts. 2917.2422 2018 2022-09-16
## 3725 FM Micronesia, Fed. Sts. 2941.8733 2017 2022-09-16
## 3726 FM Micronesia, Fed. Sts. 2897.4176 2016 2022-09-16
## 3727 FM Micronesia, Fed. Sts. 2906.6170 2015 2022-09-16
## 3728 FM Micronesia, Fed. Sts. 2815.4975 2014 2022-09-16
## 3729 FM Micronesia, Fed. Sts. 2923.3597 2013 2022-09-16
## 3730 FM Micronesia, Fed. Sts. 3076.1654 2012 2022-09-16
## 3731 FM Micronesia, Fed. Sts. 3166.7439 2011 2022-09-16
## 3732 FM Micronesia, Fed. Sts. 3084.7539 2010 2022-09-16
## 3733 FM Micronesia, Fed. Sts. 3014.9860 2009 2022-09-16
## 3734 FM Micronesia, Fed. Sts. 2965.7382 2008 2022-09-16
## 3735 FM Micronesia, Fed. Sts. 3012.9471 2007 2022-09-16
## 3736 FM Micronesia, Fed. Sts. 3042.1582 2006 2022-09-16
## 3737 FM Micronesia, Fed. Sts. 3022.7957 2005 2022-09-16
## 3738 FM Micronesia, Fed. Sts. 2948.7235 2004 2022-09-16
## 3739 FM Micronesia, Fed. Sts. 3034.5233 2003 2022-09-16
## 3740 FM Micronesia, Fed. Sts. 2984.0662 2002 2022-09-16
## 3741 FM Micronesia, Fed. Sts. 2963.8722 2001 2022-09-16
## 3742 FM Micronesia, Fed. Sts. 2894.6429 2000 2022-09-16
## 3743 FM Micronesia, Fed. Sts. 2751.8445 1999 2022-09-16
## 3744 FM Micronesia, Fed. Sts. 2703.5720 1998 2022-09-16
## 3745 FM Micronesia, Fed. Sts. 2622.1719 1997 2022-09-16
## 3746 FM Micronesia, Fed. Sts. 2795.5291 1996 2022-09-16
## 3747 FM Micronesia, Fed. Sts. 2908.2538 1995 2022-09-16
## 3748 FM Micronesia, Fed. Sts. 2756.2011 1994 2022-09-16
## 3749 FM Micronesia, Fed. Sts. 2827.7926 1993 2022-09-16
## 3750 FM Micronesia, Fed. Sts. 2679.7871 1992 2022-09-16
## 3751 FM Micronesia, Fed. Sts. 2644.5200 1991 2022-09-16
## 3752 FM Micronesia, Fed. Sts. 2524.9473 1990 2022-09-16
## 3753 FM Micronesia, Fed. Sts. 2491.9098 1989 2022-09-16
## 3754 FM Micronesia, Fed. Sts. 2461.4145 1988 2022-09-16
## 3755 FM Micronesia, Fed. Sts. 2453.5556 1987 2022-09-16
## 3756 FM Micronesia, Fed. Sts. 2481.8635 1986 2022-09-16
## 3757 FM Micronesia, Fed. Sts. NA 1985 2022-09-16
## 3758 FM Micronesia, Fed. Sts. NA 1984 2022-09-16
## 3759 FM Micronesia, Fed. Sts. NA 1983 2022-09-16
## 3760 FM Micronesia, Fed. Sts. NA 1982 2022-09-16
## 3761 FM Micronesia, Fed. Sts. NA 1981 2022-09-16
## 3762 FM Micronesia, Fed. Sts. NA 1980 2022-09-16
## 3763 FM Micronesia, Fed. Sts. NA 1979 2022-09-16
## 3764 FM Micronesia, Fed. Sts. NA 1978 2022-09-16
## 3765 FM Micronesia, Fed. Sts. NA 1977 2022-09-16
## 3766 FM Micronesia, Fed. Sts. NA 1976 2022-09-16
## 3767 FM Micronesia, Fed. Sts. NA 1975 2022-09-16
## 3768 FM Micronesia, Fed. Sts. NA 1974 2022-09-16
## 3769 FM Micronesia, Fed. Sts. NA 1973 2022-09-16
## 3770 FM Micronesia, Fed. Sts. NA 1972 2022-09-16
## 3771 FM Micronesia, Fed. Sts. NA 1971 2022-09-16
## 3772 FM Micronesia, Fed. Sts. NA 1970 2022-09-16
## 3773 FM Micronesia, Fed. Sts. NA 1969 2022-09-16
## 3774 FM Micronesia, Fed. Sts. NA 1968 2022-09-16
## 3775 FM Micronesia, Fed. Sts. NA 1967 2022-09-16
## 3776 FM Micronesia, Fed. Sts. NA 1966 2022-09-16
## 3777 FM Micronesia, Fed. Sts. NA 1965 2022-09-16
## 3778 FM Micronesia, Fed. Sts. NA 1964 2022-09-16
## 3779 FM Micronesia, Fed. Sts. NA 1963 2022-09-16
## 3780 FM Micronesia, Fed. Sts. NA 1962 2022-09-16
## 3781 FM Micronesia, Fed. Sts. NA 1961 2022-09-16
## 3782 FM Micronesia, Fed. Sts. NA 1960 2022-09-16
## 3783 FO Faroe Islands NA 2021 2022-09-16
## 3784 FO Faroe Islands NA 2020 2022-09-16
## 3785 FO Faroe Islands NA 2019 2022-09-16
## 3786 FO Faroe Islands NA 2018 2022-09-16
## 3787 FO Faroe Islands NA 2017 2022-09-16
## 3788 FO Faroe Islands NA 2016 2022-09-16
## 3789 FO Faroe Islands 53310.2620 2015 2022-09-16
## 3790 FO Faroe Islands NA 2014 2022-09-16
## 3791 FO Faroe Islands NA 2013 2022-09-16
## 3792 FO Faroe Islands NA 2012 2022-09-16
## 3793 FO Faroe Islands NA 2011 2022-09-16
## 3794 FO Faroe Islands NA 2010 2022-09-16
## 3795 FO Faroe Islands NA 2009 2022-09-16
## 3796 FO Faroe Islands NA 2008 2022-09-16
## 3797 FO Faroe Islands NA 2007 2022-09-16
## 3798 FO Faroe Islands NA 2006 2022-09-16
## 3799 FO Faroe Islands NA 2005 2022-09-16
## 3800 FO Faroe Islands NA 2004 2022-09-16
## 3801 FO Faroe Islands NA 2003 2022-09-16
## 3802 FO Faroe Islands NA 2002 2022-09-16
## 3803 FO Faroe Islands NA 2001 2022-09-16
## 3804 FO Faroe Islands NA 2000 2022-09-16
## 3805 FO Faroe Islands NA 1999 2022-09-16
## 3806 FO Faroe Islands NA 1998 2022-09-16
## 3807 FO Faroe Islands NA 1997 2022-09-16
## 3808 FO Faroe Islands NA 1996 2022-09-16
## 3809 FO Faroe Islands NA 1995 2022-09-16
## 3810 FO Faroe Islands NA 1994 2022-09-16
## 3811 FO Faroe Islands NA 1993 2022-09-16
## 3812 FO Faroe Islands NA 1992 2022-09-16
## 3813 FO Faroe Islands NA 1991 2022-09-16
## 3814 FO Faroe Islands NA 1990 2022-09-16
## 3815 FO Faroe Islands NA 1989 2022-09-16
## 3816 FO Faroe Islands NA 1988 2022-09-16
## 3817 FO Faroe Islands NA 1987 2022-09-16
## 3818 FO Faroe Islands NA 1986 2022-09-16
## 3819 FO Faroe Islands NA 1985 2022-09-16
## 3820 FO Faroe Islands NA 1984 2022-09-16
## 3821 FO Faroe Islands NA 1983 2022-09-16
## 3822 FO Faroe Islands NA 1982 2022-09-16
## 3823 FO Faroe Islands NA 1981 2022-09-16
## 3824 FO Faroe Islands NA 1980 2022-09-16
## 3825 FO Faroe Islands NA 1979 2022-09-16
## 3826 FO Faroe Islands NA 1978 2022-09-16
## 3827 FO Faroe Islands NA 1977 2022-09-16
## 3828 FO Faroe Islands NA 1976 2022-09-16
## 3829 FO Faroe Islands NA 1975 2022-09-16
## 3830 FO Faroe Islands NA 1974 2022-09-16
## 3831 FO Faroe Islands NA 1973 2022-09-16
## 3832 FO Faroe Islands NA 1972 2022-09-16
## 3833 FO Faroe Islands NA 1971 2022-09-16
## 3834 FO Faroe Islands NA 1970 2022-09-16
## 3835 FO Faroe Islands NA 1969 2022-09-16
## 3836 FO Faroe Islands NA 1968 2022-09-16
## 3837 FO Faroe Islands NA 1967 2022-09-16
## 3838 FO Faroe Islands NA 1966 2022-09-16
## 3839 FO Faroe Islands NA 1965 2022-09-16
## 3840 FO Faroe Islands NA 1964 2022-09-16
## 3841 FO Faroe Islands NA 1963 2022-09-16
## 3842 FO Faroe Islands NA 1962 2022-09-16
## 3843 FO Faroe Islands NA 1961 2022-09-16
## 3844 FO Faroe Islands NA 1960 2022-09-16
## 3845 FR France 38210.2182 2021 2022-09-16
## 3846 FR France 35785.9670 2020 2022-09-16
## 3847 FR France 38912.3313 2019 2022-09-16
## 3848 FR France 38291.8658 2018 2022-09-16
## 3849 FR France 37694.0833 2017 2022-09-16
## 3850 FR France 36956.7958 2016 2022-09-16
## 3851 FR France 36652.9223 2015 2022-09-16
## 3852 FR France 36378.6187 2014 2022-09-16
## 3853 FR France 36205.1678 2013 2022-09-16
## 3854 FR France 36183.4880 2012 2022-09-16
## 3855 FR France 36245.5428 2011 2022-09-16
## 3856 FR France 35639.8041 2010 2022-09-16
## 3857 FR France 35131.4491 2009 2022-09-16
## 3858 FR France 36357.3225 2008 2022-09-16
## 3859 FR France 36468.0979 2007 2022-09-16
## 3860 FR France 35825.7486 2006 2022-09-16
## 3861 FR France 35213.8931 2005 2022-09-16
## 3862 FR France 34899.8764 2004 2022-09-16
## 3863 FR France 34190.3029 2003 2022-09-16
## 3864 FR France 34152.3659 2002 2022-09-16
## 3865 FR France 34015.3809 2001 2022-09-16
## 3866 FR France 33597.3662 2000 2022-09-16
## 3867 FR France 32551.0831 1999 2022-09-16
## 3868 FR France 31636.5672 1998 2022-09-16
## 3869 FR France 30653.3529 1997 2022-09-16
## 3870 FR France 30059.6950 1996 2022-09-16
## 3871 FR France 29746.0055 1995 2022-09-16
## 3872 FR France 29237.7063 1994 2022-09-16
## 3873 FR France 28670.5992 1993 2022-09-16
## 3874 FR France 28977.2621 1992 2022-09-16
## 3875 FR France 28663.2841 1991 2022-09-16
## 3876 FR France 28523.5774 1990 2022-09-16
## 3877 FR France 27854.6079 1989 2022-09-16
## 3878 FR France 26840.0499 1988 2022-09-16
## 3879 FR France 25769.7309 1987 2022-09-16
## 3880 FR France 25270.0182 1986 2022-09-16
## 3881 FR France 24832.9692 1985 2022-09-16
## 3882 FR France 24573.9301 1984 2022-09-16
## 3883 FR France 24343.1301 1983 2022-09-16
## 3884 FR France 24176.3145 1982 2022-09-16
## 3885 FR France 23708.2313 1981 2022-09-16
## 3886 FR France 23571.7601 1980 2022-09-16
## 3887 FR France 23308.6779 1979 2022-09-16
## 3888 FR France 22602.2938 1978 2022-09-16
## 3889 FR France 21826.9181 1977 2022-09-16
## 3890 FR France 21192.4504 1976 2022-09-16
## 3891 FR France 20416.3807 1975 2022-09-16
## 3892 FR France 20744.7098 1974 2022-09-16
## 3893 FR France 20033.0120 1973 2022-09-16
## 3894 FR France 18985.7672 1972 2022-09-16
## 3895 FR France 18312.5430 1971 2022-09-16
## 3896 FR France 17526.4742 1970 2022-09-16
## 3897 FR France 16644.3029 1969 2022-09-16
## 3898 FR France 15656.8327 1968 2022-09-16
## 3899 FR France 15101.8177 1967 2022-09-16
## 3900 FR France 14520.9027 1966 2022-09-16
## 3901 FR France 13938.2009 1965 2022-09-16
## 3902 FR France 13450.6131 1964 2022-09-16
## 3903 FR France 12779.8777 1963 2022-09-16
## 3904 FR France 12200.1647 1962 2022-09-16
## 3905 FR France 11579.3114 1961 2022-09-16
## 3906 FR France 11176.4128 1960 2022-09-16
## 3907 GA Gabon 6759.8642 2021 2022-09-16
## 3908 GA Gabon 6818.4968 2020 2022-09-16
## 3909 GA Gabon 7116.0813 2019 2022-09-16
## 3910 GA Gabon 7019.8276 2018 2022-09-16
## 3911 GA Gabon 7145.1176 2017 2022-09-16
## 3912 GA Gabon 7313.1400 2016 2022-09-16
## 3913 GA Gabon 7384.7007 2015 2022-09-16
## 3914 GA Gabon 7350.0513 2014 2022-09-16
## 3915 GA Gabon 7304.7797 2013 2022-09-16
## 3916 GA Gabon 7181.2137 2012 2022-09-16
## 3917 GA Gabon 7086.3878 2011 2022-09-16
## 3918 GA Gabon 6863.5388 2010 2022-09-16
## 3919 GA Gabon 6634.7187 2009 2022-09-16
## 3920 GA Gabon 6845.9446 2008 2022-09-16
## 3921 GA Gabon 7301.2288 2007 2022-09-16
## 3922 GA Gabon 7091.7200 2006 2022-09-16
## 3923 GA Gabon 7504.2600 2005 2022-09-16
## 3924 GA Gabon 7507.1314 2004 2022-09-16
## 3925 GA Gabon 7646.8777 2003 2022-09-16
## 3926 GA Gabon 7662.4553 2002 2022-09-16
## 3927 GA Gabon 7866.6135 2001 2022-09-16
## 3928 GA Gabon 7888.0621 2000 2022-09-16
## 3929 GA Gabon 8235.8994 1999 2022-09-16
## 3930 GA Gabon 9267.8691 1998 2022-09-16
## 3931 GA Gabon 9181.8263 1997 2022-09-16
## 3932 GA Gabon 8905.0252 1996 2022-09-16
## 3933 GA Gabon 8815.2289 1995 2022-09-16
## 3934 GA Gabon 8617.5554 1994 2022-09-16
## 3935 GA Gabon 8530.8168 1993 2022-09-16
## 3936 GA Gabon 8429.5487 1992 2022-09-16
## 3937 GA Gabon 8937.1336 1991 2022-09-16
## 3938 GA Gabon 8655.5379 1990 2022-09-16
## 3939 GA Gabon 8457.9402 1989 2022-09-16
## 3940 GA Gabon 8010.9962 1988 2022-09-16
## 3941 GA Gabon 7298.9446 1987 2022-09-16
## 3942 GA Gabon 9056.2550 1986 2022-09-16
## 3943 GA Gabon 9382.8877 1985 2022-09-16
## 3944 GA Gabon 9869.4089 1984 2022-09-16
## 3945 GA Gabon 9426.6771 1983 2022-09-16
## 3946 GA Gabon 9161.2177 1982 2022-09-16
## 3947 GA Gabon 9698.2768 1981 2022-09-16
## 3948 GA Gabon 9461.3395 1980 2022-09-16
## 3949 GA Gabon 9454.2077 1979 2022-09-16
## 3950 GA Gabon 9636.7592 1978 2022-09-16
## 3951 GA Gabon 12984.8658 1977 2022-09-16
## 3952 GA Gabon 15187.6452 1976 2022-09-16
## 3953 GA Gabon 11437.9245 1975 2022-09-16
## 3954 GA Gabon 9789.8732 1974 2022-09-16
## 3955 GA Gabon 7151.7138 1973 2022-09-16
## 3956 GA Gabon 6609.7316 1972 2022-09-16
## 3957 GA Gabon 6046.3787 1971 2022-09-16
## 3958 GA Gabon 5588.8763 1970 2022-09-16
## 3959 GA Gabon 5246.4580 1969 2022-09-16
## 3960 GA Gabon 4956.0410 1968 2022-09-16
## 3961 GA Gabon 4936.9211 1967 2022-09-16
## 3962 GA Gabon 4837.2590 1966 2022-09-16
## 3963 GA Gabon 4713.3185 1965 2022-09-16
## 3964 GA Gabon 4420.9290 1964 2022-09-16
## 3965 GA Gabon 4288.1357 1963 2022-09-16
## 3966 GA Gabon 4091.5952 1962 2022-09-16
## 3967 GA Gabon 3849.2815 1961 2022-09-16
## 3968 GA Gabon 3386.6159 1960 2022-09-16
## 3969 GB United Kingdom 46209.1052 2021 2022-09-16
## 3970 GB United Kingdom 43166.1552 2020 2022-09-16
## 3971 GB United Kingdom 47750.8797 2019 2022-09-16
## 3972 GB United Kingdom 47231.3369 2018 2022-09-16
## 3973 GB United Kingdom 46746.6419 2017 2022-09-16
## 3974 GB United Kingdom 46081.7153 2016 2022-09-16
## 3975 GB United Kingdom 45404.5678 2015 2022-09-16
## 3976 GB United Kingdom 44596.1897 2014 2022-09-16
## 3977 GB United Kingdom 43621.0592 2013 2022-09-16
## 3978 GB United Kingdom 43099.5973 2012 2022-09-16
## 3979 GB United Kingdom 42771.6411 2011 2022-09-16
## 3980 GB United Kingdom 42487.9254 2010 2022-09-16
## 3981 GB United Kingdom 41928.6098 2009 2022-09-16
## 3982 GB United Kingdom 44120.9295 2008 2022-09-16
## 3983 GB United Kingdom 44576.3677 2007 2022-09-16
## 3984 GB United Kingdom 43927.8860 2006 2022-09-16
## 3985 GB United Kingdom 43137.2552 2005 2022-09-16
## 3986 GB United Kingdom 42336.5542 2004 2022-09-16
## 3987 GB United Kingdom 41598.2117 2003 2022-09-16
## 3988 GB United Kingdom 40563.3373 2002 2022-09-16
## 3989 GB United Kingdom 39888.4993 2001 2022-09-16
## 3990 GB United Kingdom 39229.2685 2000 2022-09-16
## 3991 GB United Kingdom 37975.0999 1999 2022-09-16
## 3992 GB United Kingdom 36995.7094 1998 2022-09-16
## 3993 GB United Kingdom 35969.2150 1997 2022-09-16
## 3994 GB United Kingdom 34374.5202 1996 2022-09-16
## 3995 GB United Kingdom 33645.0733 1995 2022-09-16
## 3996 GB United Kingdom 32901.2473 1994 2022-09-16
## 3997 GB United Kingdom 31763.4894 1993 2022-09-16
## 3998 GB United Kingdom 31066.2355 1992 2022-09-16
## 3999 GB United Kingdom 31025.9226 1991 2022-09-16
## 4000 GB United Kingdom 31469.1613 1990 2022-09-16
## 4001 GB United Kingdom 31333.4620 1989 2022-09-16
## 4002 GB United Kingdom 30625.7233 1988 2022-09-16
## 4003 GB United Kingdom 29029.7048 1987 2022-09-16
## 4004 GB United Kingdom 27602.9439 1986 2022-09-16
## 4005 GB United Kingdom 26821.9660 1985 2022-09-16
## 4006 GB United Kingdom 25812.3621 1984 2022-09-16
## 4007 GB United Kingdom 25279.6243 1983 2022-09-16
## 4008 GB United Kingdom 24263.8611 1982 2022-09-16
## 4009 GB United Kingdom 23780.7654 1981 2022-09-16
## 4010 GB United Kingdom 23977.9324 1980 2022-09-16
## 4011 GB United Kingdom 24504.3814 1979 2022-09-16
## 4012 GB United Kingdom 23640.1072 1978 2022-09-16
## 4013 GB United Kingdom 22687.5314 1977 2022-09-16
## 4014 GB United Kingdom 22136.0261 1976 2022-09-16
## 4015 GB United Kingdom 21504.7354 1975 2022-09-16
## 4016 GB United Kingdom 21824.7596 1974 2022-09-16
## 4017 GB United Kingdom 22394.9064 1973 2022-09-16
## 4018 GB United Kingdom 21064.0294 1972 2022-09-16
## 4019 GB United Kingdom 20259.9999 1971 2022-09-16
## 4020 GB United Kingdom 19655.9120 1970 2022-09-16
## 4021 GB United Kingdom 18561.7283 1969 2022-09-16
## 4022 GB United Kingdom 18287.2057 1968 2022-09-16
## 4023 GB United Kingdom 17428.1584 1967 2022-09-16
## 4024 GB United Kingdom 17047.2525 1966 2022-09-16
## 4025 GB United Kingdom 16876.0174 1965 2022-09-16
## 4026 GB United Kingdom 16628.5761 1964 2022-09-16
## 4027 GB United Kingdom 15859.4491 1963 2022-09-16
## 4028 GB United Kingdom 15235.9237 1962 2022-09-16
## 4029 GB United Kingdom 15198.1534 1961 2022-09-16
## 4030 GB United Kingdom 14914.8808 1960 2022-09-16
## 4031 GD Grenada 9121.3761 2021 2022-09-16
## 4032 GD Grenada 8699.1114 2020 2022-09-16
## 4033 GD Grenada 10133.1322 2019 2022-09-16
## 4034 GD Grenada 10115.0641 2018 2022-09-16
## 4035 GD Grenada 9742.6037 2017 2022-09-16
## 4036 GD Grenada 9380.2322 2016 2022-09-16
## 4037 GD Grenada 9096.5387 2015 2022-09-16
## 4038 GD Grenada 8601.0810 2014 2022-09-16
## 4039 GD Grenada 8066.5527 2013 2022-09-16
## 4040 GD Grenada 7934.0414 2012 2022-09-16
## 4041 GD Grenada 8076.8232 2011 2022-09-16
## 4042 GD Grenada 8057.6865 2010 2022-09-16
## 4043 GD Grenada 8132.7807 2009 2022-09-16
## 4044 GD Grenada 8735.9640 2008 2022-09-16
## 4045 GD Grenada 8676.5075 2007 2022-09-16
## 4046 GD Grenada 8194.9508 2006 2022-09-16
## 4047 GD Grenada 8558.8287 2005 2022-09-16
## 4048 GD Grenada 7578.3094 2004 2022-09-16
## 4049 GD Grenada 7652.8510 2003 2022-09-16
## 4050 GD Grenada 7015.9627 2002 2022-09-16
## 4051 GD Grenada 6808.7005 2001 2022-09-16
## 4052 GD Grenada 6976.7168 2000 2022-09-16
## 4053 GD Grenada 6678.0852 1999 2022-09-16
## 4054 GD Grenada 6271.9956 1998 2022-09-16
## 4055 GD Grenada 5637.5455 1997 2022-09-16
## 4056 GD Grenada 5398.2753 1996 2022-09-16
## 4057 GD Grenada 5205.8239 1995 2022-09-16
## 4058 GD Grenada 5145.5603 1994 2022-09-16
## 4059 GD Grenada 5117.0943 1993 2022-09-16
## 4060 GD Grenada 5276.9712 1992 2022-09-16
## 4061 GD Grenada 5360.8388 1991 2022-09-16
## 4062 GD Grenada 5294.9325 1990 2022-09-16
## 4063 GD Grenada 5058.9431 1989 2022-09-16
## 4064 GD Grenada 4815.9343 1988 2022-09-16
## 4065 GD Grenada 4616.0645 1987 2022-09-16
## 4066 GD Grenada 4199.1263 1986 2022-09-16
## 4067 GD Grenada 3926.3187 1985 2022-09-16
## 4068 GD Grenada 3760.5027 1984 2022-09-16
## 4069 GD Grenada 3723.6548 1983 2022-09-16
## 4070 GD Grenada 3704.5538 1982 2022-09-16
## 4071 GD Grenada 3656.8468 1981 2022-09-16
## 4072 GD Grenada 3665.4261 1980 2022-09-16
## 4073 GD Grenada 3702.9764 1979 2022-09-16
## 4074 GD Grenada 3486.8212 1978 2022-09-16
## 4075 GD Grenada 3269.1118 1977 2022-09-16
## 4076 GD Grenada NA 1976 2022-09-16
## 4077 GD Grenada NA 1975 2022-09-16
## 4078 GD Grenada NA 1974 2022-09-16
## 4079 GD Grenada NA 1973 2022-09-16
## 4080 GD Grenada NA 1972 2022-09-16
## 4081 GD Grenada NA 1971 2022-09-16
## 4082 GD Grenada NA 1970 2022-09-16
## 4083 GD Grenada NA 1969 2022-09-16
## 4084 GD Grenada NA 1968 2022-09-16
## 4085 GD Grenada NA 1967 2022-09-16
## 4086 GD Grenada NA 1966 2022-09-16
## 4087 GD Grenada NA 1965 2022-09-16
## 4088 GD Grenada NA 1964 2022-09-16
## 4089 GD Grenada NA 1963 2022-09-16
## 4090 GD Grenada NA 1962 2022-09-16
## 4091 GD Grenada NA 1961 2022-09-16
## 4092 GD Grenada NA 1960 2022-09-16
## 4093 GE Georgia 4927.0647 2021 2022-09-16
## 4094 GE Georgia 4447.6643 2020 2022-09-16
## 4095 GE Georgia 4773.4233 2019 2022-09-16
## 4096 GE Georgia 4539.0875 2018 2022-09-16
## 4097 GE Georgia 4327.7276 2017 2022-09-16
## 4098 GE Georgia 4128.3856 2016 2022-09-16
## 4099 GE Georgia 4014.1859 2015 2022-09-16
## 4100 GE Georgia 3902.5688 2014 2022-09-16
## 4101 GE Georgia 3738.7050 2013 2022-09-16
## 4102 GE Georgia 3597.2038 2012 2022-09-16
## 4103 GE Georgia 3356.9979 2011 2022-09-16
## 4104 GE Georgia 3100.7234 2010 2022-09-16
## 4105 GE Georgia 2897.1309 2009 2022-09-16
## 4106 GE Georgia 2980.3095 2008 2022-09-16
## 4107 GE Georgia 2901.1041 2007 2022-09-16
## 4108 GE Georgia 2563.5431 2006 2022-09-16
## 4109 GE Georgia 2329.5709 2005 2022-09-16
## 4110 GE Georgia 2112.2613 2004 2022-09-16
## 4111 GE Georgia 1984.2443 2003 2022-09-16
## 4112 GE Georgia 1774.6364 2002 2022-09-16
## 4113 GE Georgia 1667.5080 2001 2022-09-16
## 4114 GE Georgia 1566.5603 2000 2022-09-16
## 4115 GE Georgia 1508.6565 1999 2022-09-16
## 4116 GE Georgia 1436.7119 1998 2022-09-16
## 4117 GE Georgia 1359.3928 1997 2022-09-16
## 4118 GE Georgia 1191.1811 1996 2022-09-16
## 4119 GE Georgia 1033.0232 1995 2022-09-16
## 4120 GE Georgia 969.7129 1994 2022-09-16
## 4121 GE Georgia 1065.7356 1993 2022-09-16
## 4122 GE Georgia 1519.0353 1992 2022-09-16
## 4123 GE Georgia 2778.3050 1991 2022-09-16
## 4124 GE Georgia 3546.1580 1990 2022-09-16
## 4125 GE Georgia 4160.4559 1989 2022-09-16
## 4126 GE Georgia 4494.8089 1988 2022-09-16
## 4127 GE Georgia 4300.6113 1987 2022-09-16
## 4128 GE Georgia 4281.3740 1986 2022-09-16
## 4129 GE Georgia 4704.1473 1985 2022-09-16
## 4130 GE Georgia 4522.1021 1984 2022-09-16
## 4131 GE Georgia 4326.1063 1983 2022-09-16
## 4132 GE Georgia 4184.2901 1982 2022-09-16
## 4133 GE Georgia 4137.0626 1981 2022-09-16
## 4134 GE Georgia 3962.4216 1980 2022-09-16
## 4135 GE Georgia 3821.0984 1979 2022-09-16
## 4136 GE Georgia 3585.1027 1978 2022-09-16
## 4137 GE Georgia 3356.7196 1977 2022-09-16
## 4138 GE Georgia 3161.6343 1976 2022-09-16
## 4139 GE Georgia 3001.4968 1975 2022-09-16
## 4140 GE Georgia 2815.8907 1974 2022-09-16
## 4141 GE Georgia 2610.5077 1973 2022-09-16
## 4142 GE Georgia 2473.2644 1972 2022-09-16
## 4143 GE Georgia 2429.4740 1971 2022-09-16
## 4144 GE Georgia 2395.6936 1970 2022-09-16
## 4145 GE Georgia 2158.7671 1969 2022-09-16
## 4146 GE Georgia 2079.6901 1968 2022-09-16
## 4147 GE Georgia 2009.1073 1967 2022-09-16
## 4148 GE Georgia 1909.5634 1966 2022-09-16
## 4149 GE Georgia 1796.1713 1965 2022-09-16
## 4150 GE Georgia NA 1964 2022-09-16
## 4151 GE Georgia NA 1963 2022-09-16
## 4152 GE Georgia NA 1962 2022-09-16
## 4153 GE Georgia NA 1961 2022-09-16
## 4154 GE Georgia NA 1960 2022-09-16
## 4155 GH Ghana 2084.6350 2021 2022-09-16
## 4156 GH Ghana 2020.6243 2020 2022-09-16
## 4157 GH Ghana 2053.5867 2019 2022-09-16
## 4158 GH Ghana 1970.2608 2018 2022-09-16
## 4159 GH Ghana 1896.3667 2017 2022-09-16
## 4160 GH Ghana 1793.1809 2016 2022-09-16
## 4161 GH Ghana 1774.0748 2015 2022-09-16
## 4162 GH Ghana 1777.0967 2014 2022-09-16
## 4163 GH Ghana 1767.8021 2013 2022-09-16
## 4164 GH Ghana 1686.0695 2012 2022-09-16
## 4165 GH Ghana 1579.6996 2011 2022-09-16
## 4166 GH Ghana 1419.1203 2010 2022-09-16
## 4167 GH Ghana 1348.3414 2009 2022-09-16
## 4168 GH Ghana 1319.1736 2008 2022-09-16
## 4169 GH Ghana 1240.1620 2007 2022-09-16
## 4170 GH Ghana 1219.5621 2006 2022-09-16
## 4171 GH Ghana 1175.8617 2005 2022-09-16
## 4172 GH Ghana 1138.6584 2004 2022-09-16
## 4173 GH Ghana 1105.4014 2003 2022-09-16
## 4174 GH Ghana 1076.9152 2002 2022-09-16
## 4175 GH Ghana 1056.0709 2001 2022-09-16
## 4176 GH Ghana 1040.6341 2000 2022-09-16
## 4177 GH Ghana 1028.3878 1999 2022-09-16
## 4178 GH Ghana 1009.4724 1998 2022-09-16
## 4179 GH Ghana 988.2819 1997 2022-09-16
## 4180 GH Ghana 972.7306 1996 2022-09-16
## 4181 GH Ghana 954.4414 1995 2022-09-16
## 4182 GH Ghana 941.7819 1994 2022-09-16
## 4183 GH Ghana 937.4460 1993 2022-09-16
## 4184 GH Ghana 919.9808 1992 2022-09-16
## 4185 GH Ghana 911.5963 1991 2022-09-16
## 4186 GH Ghana 891.3048 1990 2022-09-16
## 4187 GH Ghana 887.8231 1989 2022-09-16
## 4188 GH Ghana 869.4706 1988 2022-09-16
## 4189 GH Ghana 847.1364 1987 2022-09-16
## 4190 GH Ghana 832.1502 1986 2022-09-16
## 4191 GH Ghana 814.6129 1985 2022-09-16
## 4192 GH Ghana 798.7614 1984 2022-09-16
## 4193 GH Ghana 757.9191 1983 2022-09-16
## 4194 GH Ghana 818.4245 1982 2022-09-16
## 4195 GH Ghana 904.7609 1981 2022-09-16
## 4196 GH Ghana 962.3836 1980 2022-09-16
## 4197 GH Ghana 980.0977 1979 2022-09-16
## 4198 GH Ghana 1025.7984 1978 2022-09-16
## 4199 GH Ghana 963.3676 1977 2022-09-16
## 4200 GH Ghana 960.0750 1976 2022-09-16
## 4201 GH Ghana 1016.4572 1975 2022-09-16
## 4202 GH Ghana 1188.9582 1974 2022-09-16
## 4203 GH Ghana 1142.6613 1973 2022-09-16
## 4204 GH Ghana 1142.3816 1972 2022-09-16
## 4205 GH Ghana 1204.9992 1971 2022-09-16
## 4206 GH Ghana 1176.4315 1970 2022-09-16
## 4207 GH Ghana 1099.2944 1969 2022-09-16
## 4208 GH Ghana 1061.7139 1968 2022-09-16
## 4209 GH Ghana 1082.3908 1967 2022-09-16
## 4210 GH Ghana 1075.4035 1966 2022-09-16
## 4211 GH Ghana 1152.5439 1965 2022-09-16
## 4212 GH Ghana 1169.4650 1964 2022-09-16
## 4213 GH Ghana 1179.3491 1963 2022-09-16
## 4214 GH Ghana 1166.0230 1962 2022-09-16
## 4215 GH Ghana 1156.5812 1961 2022-09-16
## 4216 GH Ghana 1154.1367 1960 2022-09-16
## 4217 GI Gibraltar NA 2021 2022-09-16
## 4218 GI Gibraltar NA 2020 2022-09-16
## 4219 GI Gibraltar NA 2019 2022-09-16
## 4220 GI Gibraltar NA 2018 2022-09-16
## 4221 GI Gibraltar NA 2017 2022-09-16
## 4222 GI Gibraltar NA 2016 2022-09-16
## 4223 GI Gibraltar NA 2015 2022-09-16
## 4224 GI Gibraltar NA 2014 2022-09-16
## 4225 GI Gibraltar NA 2013 2022-09-16
## 4226 GI Gibraltar NA 2012 2022-09-16
## 4227 GI Gibraltar NA 2011 2022-09-16
## 4228 GI Gibraltar NA 2010 2022-09-16
## 4229 GI Gibraltar NA 2009 2022-09-16
## 4230 GI Gibraltar NA 2008 2022-09-16
## 4231 GI Gibraltar NA 2007 2022-09-16
## 4232 GI Gibraltar NA 2006 2022-09-16
## 4233 GI Gibraltar NA 2005 2022-09-16
## 4234 GI Gibraltar NA 2004 2022-09-16
## 4235 GI Gibraltar NA 2003 2022-09-16
## 4236 GI Gibraltar NA 2002 2022-09-16
## 4237 GI Gibraltar NA 2001 2022-09-16
## 4238 GI Gibraltar NA 2000 2022-09-16
## 4239 GI Gibraltar NA 1999 2022-09-16
## 4240 GI Gibraltar NA 1998 2022-09-16
## 4241 GI Gibraltar NA 1997 2022-09-16
## 4242 GI Gibraltar NA 1996 2022-09-16
## 4243 GI Gibraltar NA 1995 2022-09-16
## 4244 GI Gibraltar NA 1994 2022-09-16
## 4245 GI Gibraltar NA 1993 2022-09-16
## 4246 GI Gibraltar NA 1992 2022-09-16
## 4247 GI Gibraltar NA 1991 2022-09-16
## 4248 GI Gibraltar NA 1990 2022-09-16
## 4249 GI Gibraltar NA 1989 2022-09-16
## 4250 GI Gibraltar NA 1988 2022-09-16
## 4251 GI Gibraltar NA 1987 2022-09-16
## 4252 GI Gibraltar NA 1986 2022-09-16
## 4253 GI Gibraltar NA 1985 2022-09-16
## 4254 GI Gibraltar NA 1984 2022-09-16
## 4255 GI Gibraltar NA 1983 2022-09-16
## 4256 GI Gibraltar NA 1982 2022-09-16
## 4257 GI Gibraltar NA 1981 2022-09-16
## 4258 GI Gibraltar NA 1980 2022-09-16
## 4259 GI Gibraltar NA 1979 2022-09-16
## 4260 GI Gibraltar NA 1978 2022-09-16
## 4261 GI Gibraltar NA 1977 2022-09-16
## 4262 GI Gibraltar NA 1976 2022-09-16
## 4263 GI Gibraltar NA 1975 2022-09-16
## 4264 GI Gibraltar NA 1974 2022-09-16
## 4265 GI Gibraltar NA 1973 2022-09-16
## 4266 GI Gibraltar NA 1972 2022-09-16
## 4267 GI Gibraltar NA 1971 2022-09-16
## 4268 GI Gibraltar NA 1970 2022-09-16
## 4269 GI Gibraltar NA 1969 2022-09-16
## 4270 GI Gibraltar NA 1968 2022-09-16
## 4271 GI Gibraltar NA 1967 2022-09-16
## 4272 GI Gibraltar NA 1966 2022-09-16
## 4273 GI Gibraltar NA 1965 2022-09-16
## 4274 GI Gibraltar NA 1964 2022-09-16
## 4275 GI Gibraltar NA 1963 2022-09-16
## 4276 GI Gibraltar NA 1962 2022-09-16
## 4277 GI Gibraltar NA 1961 2022-09-16
## 4278 GI Gibraltar NA 1960 2022-09-16
## 4279 GL Greenland NA 2021 2022-09-16
## 4280 GL Greenland 47957.7937 2020 2022-09-16
## 4281 GL Greenland 47908.1067 2019 2022-09-16
## 4282 GL Greenland 47013.0349 2018 2022-09-16
## 4283 GL Greenland 46598.8233 2017 2022-09-16
## 4284 GL Greenland 46561.8316 2016 2022-09-16
## 4285 GL Greenland 44536.4013 2015 2022-09-16
## 4286 GL Greenland 45545.1903 2014 2022-09-16
## 4287 GL Greenland 43338.4290 2013 2022-09-16
## 4288 GL Greenland 43655.7459 2012 2022-09-16
## 4289 GL Greenland 42994.9238 2011 2022-09-16
## 4290 GL Greenland 43198.0773 2010 2022-09-16
## 4291 GL Greenland 42899.7888 2009 2022-09-16
## 4292 GL Greenland 42527.7111 2008 2022-09-16
## 4293 GL Greenland 39896.9169 2007 2022-09-16
## 4294 GL Greenland 38829.5768 2006 2022-09-16
## 4295 GL Greenland 36681.8438 2005 2022-09-16
## 4296 GL Greenland 34953.9857 2004 2022-09-16
## 4297 GL Greenland 32779.9156 2003 2022-09-16
## 4298 GL Greenland 31475.8540 2002 2022-09-16
## 4299 GL Greenland 31930.6286 2001 2022-09-16
## 4300 GL Greenland 31614.6517 2000 2022-09-16
## 4301 GL Greenland 29570.9931 1999 2022-09-16
## 4302 GL Greenland 29169.0769 1998 2022-09-16
## 4303 GL Greenland 27117.4015 1997 2022-09-16
## 4304 GL Greenland 26772.6417 1996 2022-09-16
## 4305 GL Greenland 26416.5440 1995 2022-09-16
## 4306 GL Greenland 25604.6223 1994 2022-09-16
## 4307 GL Greenland 24303.9236 1993 2022-09-16
## 4308 GL Greenland 25544.3258 1992 2022-09-16
## 4309 GL Greenland 26823.4063 1991 2022-09-16
## 4310 GL Greenland 26805.5776 1990 2022-09-16
## 4311 GL Greenland 30528.8333 1989 2022-09-16
## 4312 GL Greenland 28883.8482 1988 2022-09-16
## 4313 GL Greenland 27705.0909 1987 2022-09-16
## 4314 GL Greenland 26551.2682 1986 2022-09-16
## 4315 GL Greenland 24931.5228 1985 2022-09-16
## 4316 GL Greenland 24280.2834 1984 2022-09-16
## 4317 GL Greenland 25901.5009 1983 2022-09-16
## 4318 GL Greenland 25327.6348 1982 2022-09-16
## 4319 GL Greenland 26758.5836 1981 2022-09-16
## 4320 GL Greenland 27005.3541 1980 2022-09-16
## 4321 GL Greenland 25150.0149 1979 2022-09-16
## 4322 GL Greenland 24179.2314 1978 2022-09-16
## 4323 GL Greenland 22714.6628 1977 2022-09-16
## 4324 GL Greenland 20747.1713 1976 2022-09-16
## 4325 GL Greenland 19619.8146 1975 2022-09-16
## 4326 GL Greenland 19533.2191 1974 2022-09-16
## 4327 GL Greenland 18667.3322 1973 2022-09-16
## 4328 GL Greenland 17731.0935 1972 2022-09-16
## 4329 GL Greenland 17088.7022 1971 2022-09-16
## 4330 GL Greenland 15375.2027 1970 2022-09-16
## 4331 GL Greenland NA 1969 2022-09-16
## 4332 GL Greenland NA 1968 2022-09-16
## 4333 GL Greenland NA 1967 2022-09-16
## 4334 GL Greenland NA 1966 2022-09-16
## 4335 GL Greenland NA 1965 2022-09-16
## 4336 GL Greenland NA 1964 2022-09-16
## 4337 GL Greenland NA 1963 2022-09-16
## 4338 GL Greenland NA 1962 2022-09-16
## 4339 GL Greenland NA 1961 2022-09-16
## 4340 GL Greenland NA 1960 2022-09-16
## 4341 GM Gambia, The 711.0504 2021 2022-09-16
## 4342 GM Gambia, The 692.7492 2020 2022-09-16
## 4343 GM Gambia, The 714.5421 2019 2022-09-16
## 4344 GM Gambia, The 692.6321 2018 2022-09-16
## 4345 GM Gambia, The 665.2132 2017 2022-09-16
## 4346 GM Gambia, The 653.7330 2016 2022-09-16
## 4347 GM Gambia, The 660.7236 2015 2022-09-16
## 4348 GM Gambia, The 654.3509 2014 2022-09-16
## 4349 GM Gambia, The 684.0815 2013 2022-09-16
## 4350 GM Gambia, The 685.4642 2012 2022-09-16
## 4351 GM Gambia, The 671.3696 2011 2022-09-16
## 4352 GM Gambia, The 753.1768 2010 2022-09-16
## 4353 GM Gambia, The 732.7855 2009 2022-09-16
## 4354 GM Gambia, The 707.7285 2008 2022-09-16
## 4355 GM Gambia, The 686.1424 2007 2022-09-16
## 4356 GM Gambia, The 686.1300 2006 2022-09-16
## 4357 GM Gambia, The 711.2819 2005 2022-09-16
## 4358 GM Gambia, The 751.3964 2004 2022-09-16
## 4359 GM Gambia, The 724.4703 2003 2022-09-16
## 4360 GM Gambia, The 699.9417 2002 2022-09-16
## 4361 GM Gambia, The 746.9613 2001 2022-09-16
## 4362 GM Gambia, The 728.7096 2000 2022-09-16
## 4363 GM Gambia, The 712.6728 1999 2022-09-16
## 4364 GM Gambia, The 690.9004 1998 2022-09-16
## 4365 GM Gambia, The 688.4448 1997 2022-09-16
## 4366 GM Gambia, The 676.8257 1996 2022-09-16
## 4367 GM Gambia, The 682.9385 1995 2022-09-16
## 4368 GM Gambia, The 698.2252 1994 2022-09-16
## 4369 GM Gambia, The 719.0706 1993 2022-09-16
## 4370 GM Gambia, The 720.7258 1992 2022-09-16
## 4371 GM Gambia, The 721.6147 1991 2022-09-16
## 4372 GM Gambia, The 727.0236 1990 2022-09-16
## 4373 GM Gambia, The 732.6804 1989 2022-09-16
## 4374 GM Gambia, The 725.3098 1988 2022-09-16
## 4375 GM Gambia, The 729.6757 1987 2022-09-16
## 4376 GM Gambia, The 748.0876 1986 2022-09-16
## 4377 GM Gambia, The 752.3002 1985 2022-09-16
## 4378 GM Gambia, The 789.9234 1984 2022-09-16
## 4379 GM Gambia, The 790.7255 1983 2022-09-16
## 4380 GM Gambia, The 736.3427 1982 2022-09-16
## 4381 GM Gambia, The 765.1821 1981 2022-09-16
## 4382 GM Gambia, The 764.2061 1980 2022-09-16
## 4383 GM Gambia, The 742.9977 1979 2022-09-16
## 4384 GM Gambia, The 778.5348 1978 2022-09-16
## 4385 GM Gambia, The 757.4008 1977 2022-09-16
## 4386 GM Gambia, The 757.0841 1976 2022-09-16
## 4387 GM Gambia, The 728.5204 1975 2022-09-16
## 4388 GM Gambia, The 668.9185 1974 2022-09-16
## 4389 GM Gambia, The 651.4769 1973 2022-09-16
## 4390 GM Gambia, The 614.4853 1972 2022-09-16
## 4391 GM Gambia, The 631.3615 1971 2022-09-16
## 4392 GM Gambia, The 650.4180 1970 2022-09-16
## 4393 GM Gambia, The 630.6040 1969 2022-09-16
## 4394 GM Gambia, The 633.3495 1968 2022-09-16
## 4395 GM Gambia, The 594.2140 1967 2022-09-16
## 4396 GM Gambia, The 610.1521 1966 2022-09-16
## 4397 GM Gambia, The NA 1965 2022-09-16
## 4398 GM Gambia, The NA 1964 2022-09-16
## 4399 GM Gambia, The NA 1963 2022-09-16
## 4400 GM Gambia, The NA 1962 2022-09-16
## 4401 GM Gambia, The NA 1961 2022-09-16
## 4402 GM Gambia, The NA 1960 2022-09-16
## 4403 GN Guinea 965.3755 2021 2022-09-16
## 4404 GN Guinea 962.1163 2020 2022-09-16
## 4405 GN Guinea 945.5074 2019 2022-09-16
## 4406 GN Guinea 920.9643 2018 2022-09-16
## 4407 GN Guinea 890.7887 2017 2022-09-16
## 4408 GN Guinea 830.2462 2016 2022-09-16
## 4409 GN Guinea 769.2555 2015 2022-09-16
## 4410 GN Guinea 759.5879 2014 2022-09-16
## 4411 GN Guinea 749.8701 2013 2022-09-16
## 4412 GN Guinea 737.7131 2012 2022-09-16
## 4413 GN Guinea 711.9909 2011 2022-09-16
## 4414 GN Guinea 689.2567 2010 2022-09-16
## 4415 GN Guinea 672.6307 2009 2022-09-16
## 4416 GN Guinea 696.0313 2008 2022-09-16
## 4417 GN Guinea 683.9001 2007 2022-09-16
## 4418 GN Guinea 654.7477 2006 2022-09-16
## 4419 GN Guinea 661.1025 2005 2022-09-16
## 4420 GN Guinea 655.0855 2004 2022-09-16
## 4421 GN Guinea 652.7307 2003 2022-09-16
## 4422 GN Guinea 657.2218 2002 2022-09-16
## 4423 GN Guinea 637.4932 2001 2022-09-16
## 4424 GN Guinea 628.1551 2000 2022-09-16
## 4425 GN Guinea 626.9663 1999 2022-09-16
## 4426 GN Guinea 618.8469 1998 2022-09-16
## 4427 GN Guinea 612.5726 1997 2022-09-16
## 4428 GN Guinea 597.8676 1996 2022-09-16
## 4429 GN Guinea 587.6179 1995 2022-09-16
## 4430 GN Guinea 576.6894 1994 2022-09-16
## 4431 GN Guinea 569.4615 1993 2022-09-16
## 4432 GN Guinea 556.7379 1992 2022-09-16
## 4433 GN Guinea 554.0437 1991 2022-09-16
## 4434 GN Guinea 555.4583 1990 2022-09-16
## 4435 GN Guinea 548.3893 1989 2022-09-16
## 4436 GN Guinea 543.5848 1988 2022-09-16
## 4437 GN Guinea 527.2971 1987 2022-09-16
## 4438 GN Guinea 526.0399 1986 2022-09-16
## 4439 GN Guinea NA 1985 2022-09-16
## 4440 GN Guinea NA 1984 2022-09-16
## 4441 GN Guinea NA 1983 2022-09-16
## 4442 GN Guinea NA 1982 2022-09-16
## 4443 GN Guinea NA 1981 2022-09-16
## 4444 GN Guinea NA 1980 2022-09-16
## 4445 GN Guinea NA 1979 2022-09-16
## 4446 GN Guinea NA 1978 2022-09-16
## 4447 GN Guinea NA 1977 2022-09-16
## 4448 GN Guinea NA 1976 2022-09-16
## 4449 GN Guinea NA 1975 2022-09-16
## 4450 GN Guinea NA 1974 2022-09-16
## 4451 GN Guinea NA 1973 2022-09-16
## 4452 GN Guinea NA 1972 2022-09-16
## 4453 GN Guinea NA 1971 2022-09-16
## 4454 GN Guinea NA 1970 2022-09-16
## 4455 GN Guinea NA 1969 2022-09-16
## 4456 GN Guinea NA 1968 2022-09-16
## 4457 GN Guinea NA 1967 2022-09-16
## 4458 GN Guinea NA 1966 2022-09-16
## 4459 GN Guinea NA 1965 2022-09-16
## 4460 GN Guinea NA 1964 2022-09-16
## 4461 GN Guinea NA 1963 2022-09-16
## 4462 GN Guinea NA 1962 2022-09-16
## 4463 GN Guinea NA 1961 2022-09-16
## 4464 GN Guinea NA 1960 2022-09-16
## 4465 GQ Equatorial Guinea 6575.6722 2021 2022-09-16
## 4466 GQ Equatorial Guinea 6860.3741 2020 2022-09-16
## 4467 GQ Equatorial Guinea 7412.5812 2019 2022-09-16
## 4468 GQ Equatorial Guinea 8124.1829 2018 2022-09-16
## 4469 GQ Equatorial Guinea 8986.9510 2017 2022-09-16
## 4470 GQ Equatorial Guinea 9894.0063 2016 2022-09-16
## 4471 GQ Equatorial Guinea 11283.3980 2015 2022-09-16
## 4472 GQ Equatorial Guinea 12926.5335 2014 2022-09-16
## 4473 GQ Equatorial Guinea 13421.5657 2013 2022-09-16
## 4474 GQ Equatorial Guinea 14614.1769 2012 2022-09-16
## 4475 GQ Equatorial Guinea 14098.6464 2011 2022-09-16
## 4476 GQ Equatorial Guinea 13841.3964 2010 2022-09-16
## 4477 GQ Equatorial Guinea 15906.4965 2009 2022-09-16
## 4478 GQ Equatorial Guinea 16438.6414 2008 2022-09-16
## 4479 GQ Equatorial Guinea 14619.7506 2007 2022-09-16
## 4480 GQ Equatorial Guinea 13282.9425 2006 2022-09-16
## 4481 GQ Equatorial Guinea 12908.0638 2005 2022-09-16
## 4482 GQ Equatorial Guinea 11558.6754 2004 2022-09-16
## 4483 GQ Equatorial Guinea 8745.2691 2003 2022-09-16
## 4484 GQ Equatorial Guinea 8003.9618 2002 2022-09-16
## 4485 GQ Equatorial Guinea 6983.4390 2001 2022-09-16
## 4486 GQ Equatorial Guinea 4454.0382 2000 2022-09-16
## 4487 GQ Equatorial Guinea 3925.9055 1999 2022-09-16
## 4488 GQ Equatorial Guinea 3254.2914 1998 2022-09-16
## 4489 GQ Equatorial Guinea 2737.2146 1997 2022-09-16
## 4490 GQ Equatorial Guinea 1138.7646 1996 2022-09-16
## 4491 GQ Equatorial Guinea 709.8652 1995 2022-09-16
## 4492 GQ Equatorial Guinea 626.4943 1994 2022-09-16
## 4493 GQ Equatorial Guinea 556.0927 1993 2022-09-16
## 4494 GQ Equatorial Guinea 518.0430 1992 2022-09-16
## 4495 GQ Equatorial Guinea 397.2734 1991 2022-09-16
## 4496 GQ Equatorial Guinea 414.4522 1990 2022-09-16
## 4497 GQ Equatorial Guinea 434.9105 1989 2022-09-16
## 4498 GQ Equatorial Guinea 453.3071 1988 2022-09-16
## 4499 GQ Equatorial Guinea 455.4136 1987 2022-09-16
## 4500 GQ Equatorial Guinea 452.5544 1986 2022-09-16
## 4501 GQ Equatorial Guinea 485.6025 1985 2022-09-16
## 4502 GQ Equatorial Guinea 456.7711 1984 2022-09-16
## 4503 GQ Equatorial Guinea 486.4505 1983 2022-09-16
## 4504 GQ Equatorial Guinea 501.6285 1982 2022-09-16
## 4505 GQ Equatorial Guinea 528.4512 1981 2022-09-16
## 4506 GQ Equatorial Guinea 528.4901 1980 2022-09-16
## 4507 GQ Equatorial Guinea NA 1979 2022-09-16
## 4508 GQ Equatorial Guinea NA 1978 2022-09-16
## 4509 GQ Equatorial Guinea NA 1977 2022-09-16
## 4510 GQ Equatorial Guinea NA 1976 2022-09-16
## 4511 GQ Equatorial Guinea NA 1975 2022-09-16
## 4512 GQ Equatorial Guinea NA 1974 2022-09-16
## 4513 GQ Equatorial Guinea NA 1973 2022-09-16
## 4514 GQ Equatorial Guinea NA 1972 2022-09-16
## 4515 GQ Equatorial Guinea NA 1971 2022-09-16
## 4516 GQ Equatorial Guinea NA 1970 2022-09-16
## 4517 GQ Equatorial Guinea NA 1969 2022-09-16
## 4518 GQ Equatorial Guinea NA 1968 2022-09-16
## 4519 GQ Equatorial Guinea NA 1967 2022-09-16
## 4520 GQ Equatorial Guinea NA 1966 2022-09-16
## 4521 GQ Equatorial Guinea NA 1965 2022-09-16
## 4522 GQ Equatorial Guinea NA 1964 2022-09-16
## 4523 GQ Equatorial Guinea NA 1963 2022-09-16
## 4524 GQ Equatorial Guinea NA 1962 2022-09-16
## 4525 GQ Equatorial Guinea NA 1961 2022-09-16
## 4526 GQ Equatorial Guinea NA 1960 2022-09-16
## 4527 GR Greece 18831.2875 2021 2022-09-16
## 4528 GR Greece 17323.8228 2020 2022-09-16
## 4529 GR Greece 19003.8290 2019 2022-09-16
## 4530 GR Greece 18647.4957 2018 2022-09-16
## 4531 GR Greece 18304.3077 2017 2022-09-16
## 4532 GR Greece 18070.7807 2016 2022-09-16
## 4533 GR Greece 18083.8779 2015 2022-09-16
## 4534 GR Greece 18000.4185 2014 2022-09-16
## 4535 GR Greece 17796.2577 2013 2022-09-16
## 4536 GR Greece 18123.6711 2012 2022-09-16
## 4537 GR Greece 19400.8077 2011 2022-09-16
## 4538 GR Greece 21560.3534 2010 2022-09-16
## 4539 GR Greece 22839.4465 2009 2022-09-16
## 4540 GR Greece 23928.7094 2008 2022-09-16
## 4541 GR Greece 24073.0005 2007 2022-09-16
## 4542 GR Greece 23369.3530 2006 2022-09-16
## 4543 GR Greece 22185.6168 2005 2022-09-16
## 4544 GR Greece 22118.2517 2004 2022-09-16
## 4545 GR Greece 21104.9243 2003 2022-09-16
## 4546 GR Greece 19996.6385 2002 2022-09-16
## 4547 GR Greece 19312.4705 2001 2022-09-16
## 4548 GR Greece 18642.8829 2000 2022-09-16
## 4549 GR Greece 18013.2193 1999 2022-09-16
## 4550 GR Greece 17543.3899 1998 2022-09-16
## 4551 GR Greece 16979.5500 1997 2022-09-16
## 4552 GR Greece 16331.1885 1996 2022-09-16
## 4553 GR Greece 15946.8934 1995 2022-09-16
## 4554 GR Greece 15692.0813 1994 2022-09-16
## 4555 GR Greece 15461.6169 1993 2022-09-16
## 4556 GR Greece 15805.7314 1992 2022-09-16
## 4557 GR Greece 15816.2175 1991 2022-09-16
## 4558 GR Greece 15525.9087 1990 2022-09-16
## 4559 GR Greece 15691.0147 1989 2022-09-16
## 4560 GR Greece 15195.6767 1988 2022-09-16
## 4561 GR Greece 14623.9143 1987 2022-09-16
## 4562 GR Greece 15011.9928 1986 2022-09-16
## 4563 GR Greece 14984.1615 1985 2022-09-16
## 4564 GR Greece 14674.1992 1984 2022-09-16
## 4565 GR Greece 14456.8161 1983 2022-09-16
## 4566 GR Greece 14699.7145 1982 2022-09-16
## 4567 GR Greece 14960.0573 1981 2022-09-16
## 4568 GR Greece 15333.0272 1980 2022-09-16
## 4569 GR Greece 15380.2290 1979 2022-09-16
## 4570 GR Greece 15078.2926 1978 2022-09-16
## 4571 GR Greece 14242.9073 1977 2022-09-16
## 4572 GR Greece 14017.1882 1976 2022-09-16
## 4573 GR Greece 13323.6798 1975 2022-09-16
## 4574 GR Greece 12644.2945 1974 2022-09-16
## 4575 GR Greece 13564.2326 1973 2022-09-16
## 4576 GR Greece 12605.8585 1972 2022-09-16
## 4577 GR Greece 11517.8384 1971 2022-09-16
## 4578 GR Greece 10726.8084 1970 2022-09-16
## 4579 GR Greece 9903.0474 1969 2022-09-16
## 4580 GR Greece 8909.0845 1968 2022-09-16
## 4581 GR Greece 8364.6631 1967 2022-09-16
## 4582 GR Greece 7980.6048 1966 2022-09-16
## 4583 GR Greece 7549.4074 1965 2022-09-16
## 4584 GR Greece 6847.4691 1964 2022-09-16
## 4585 GR Greece 6281.2945 1963 2022-09-16
## 4586 GR Greece 5636.9458 1962 2022-09-16
## 4587 GR Greece 5650.0178 1961 2022-09-16
## 4588 GR Greece 5030.7436 1960 2022-09-16
## 4589 GT Guatemala 4371.6157 2021 2022-09-16
## 4590 GT Guatemala 4126.2054 2020 2022-09-16
## 4591 GT Guatemala 4254.0352 2019 2022-09-16
## 4592 GT Guatemala 4160.0711 2018 2022-09-16
## 4593 GT Guatemala 4091.2680 2017 2022-09-16
## 4594 GT Guatemala 4034.1585 2016 2022-09-16
## 4595 GT Guatemala 3994.6369 2015 2022-09-16
## 4596 GT Guatemala 3903.0596 2014 2022-09-16
## 4597 GT Guatemala 3802.1538 2013 2022-09-16
## 4598 GT Guatemala 3731.6758 2012 2022-09-16
## 4599 GT Guatemala 3688.8662 2011 2022-09-16
## 4600 GT Guatemala 3606.4305 2010 2022-09-16
## 4601 GT Guatemala 3570.3028 2009 2022-09-16
## 4602 GT Guatemala 3620.8305 2008 2022-09-16
## 4603 GT Guatemala 3573.5996 2007 2022-09-16
## 4604 GT Guatemala 3427.6783 2006 2022-09-16
## 4605 GT Guatemala 3320.1641 2005 2022-09-16
## 4606 GT Guatemala 3282.3211 2004 2022-09-16
## 4607 GT Guatemala 3250.8411 2003 2022-09-16
## 4608 GT Guatemala 3239.5672 2002 2022-09-16
## 4609 GT Guatemala 3192.3086 2001 2022-09-16
## 4610 GT Guatemala 3195.3943 2000 2022-09-16
## 4611 GT Guatemala 3160.0795 1999 2022-09-16
## 4612 GT Guatemala 3115.9774 1998 2022-09-16
## 4613 GT Guatemala 3038.7135 1997 2022-09-16
## 4614 GT Guatemala 2981.1209 1996 2022-09-16
## 4615 GT Guatemala 2965.8918 1995 2022-09-16
## 4616 GT Guatemala 2896.2234 1994 2022-09-16
## 4617 GT Guatemala 2854.1330 1993 2022-09-16
## 4618 GT Guatemala 2817.2311 1992 2022-09-16
## 4619 GT Guatemala 2758.6788 1991 2022-09-16
## 4620 GT Guatemala 2733.8666 1990 2022-09-16
## 4621 GT Guatemala 2725.1068 1989 2022-09-16
## 4622 GT Guatemala 2695.0918 1988 2022-09-16
## 4623 GT Guatemala 2666.9335 1987 2022-09-16
## 4624 GT Guatemala 2647.9577 1986 2022-09-16
## 4625 GT Guatemala 2718.2571 1985 2022-09-16
## 4626 GT Guatemala 2811.2912 1984 2022-09-16
## 4627 GT Guatemala 2875.0960 1983 2022-09-16
## 4628 GT Guatemala 3032.2337 1982 2022-09-16
## 4629 GT Guatemala 3228.3018 1981 2022-09-16
## 4630 GT Guatemala 3291.7370 1980 2022-09-16
## 4631 GT Guatemala 3252.5906 1979 2022-09-16
## 4632 GT Guatemala 3181.2876 1978 2022-09-16
## 4633 GT Guatemala 3100.4127 1977 2022-09-16
## 4634 GT Guatemala 2941.2770 1976 2022-09-16
## 4635 GT Guatemala 2800.9637 1975 2022-09-16
## 4636 GT Guatemala 2810.1133 1974 2022-09-16
## 4637 GT Guatemala 2702.9543 1973 2022-09-16
## 4638 GT Guatemala 2590.8354 1972 2022-09-16
## 4639 GT Guatemala 2471.7801 1971 2022-09-16
## 4640 GT Guatemala 2398.7233 1970 2022-09-16
## 4641 GT Guatemala 2326.8234 1969 2022-09-16
## 4642 GT Guatemala 2279.8722 1968 2022-09-16
## 4643 GT Guatemala 2152.8780 1967 2022-09-16
## 4644 GT Guatemala 2125.3834 1966 2022-09-16
## 4645 GT Guatemala 2071.6407 1965 2022-09-16
## 4646 GT Guatemala 2042.4552 1964 2022-09-16
## 4647 GT Guatemala 2009.3223 1963 2022-09-16
## 4648 GT Guatemala 1888.7033 1962 2022-09-16
## 4649 GT Guatemala 1878.5456 1961 2022-09-16
## 4650 GT Guatemala 1854.7933 1960 2022-09-16
## 4651 GU Guam NA 2021 2022-09-16
## 4652 GU Guam 31162.6760 2020 2022-09-16
## 4653 GU Guam 35666.3162 2019 2022-09-16
## 4654 GU Guam 35103.1618 2018 2022-09-16
## 4655 GU Guam 35678.2833 2017 2022-09-16
## 4656 GU Guam 35652.8048 2016 2022-09-16
## 4657 GU Guam 35829.2504 2015 2022-09-16
## 4658 GU Guam 35722.1143 2014 2022-09-16
## 4659 GU Guam 35222.3885 2013 2022-09-16
## 4660 GU Guam 34728.8937 2012 2022-09-16
## 4661 GU Guam 34067.1938 2011 2022-09-16
## 4662 GU Guam 34094.3488 2010 2022-09-16
## 4663 GU Guam 33383.1269 2009 2022-09-16
## 4664 GU Guam 33278.0733 2008 2022-09-16
## 4665 GU Guam 32653.3079 2007 2022-09-16
## 4666 GU Guam 32461.4485 2006 2022-09-16
## 4667 GU Guam 33743.7414 2005 2022-09-16
## 4668 GU Guam 32622.1337 2004 2022-09-16
## 4669 GU Guam 30704.9533 2003 2022-09-16
## 4670 GU Guam 30543.8238 2002 2022-09-16
## 4671 GU Guam NA 2001 2022-09-16
## 4672 GU Guam NA 2000 2022-09-16
## 4673 GU Guam NA 1999 2022-09-16
## 4674 GU Guam NA 1998 2022-09-16
## 4675 GU Guam NA 1997 2022-09-16
## 4676 GU Guam NA 1996 2022-09-16
## 4677 GU Guam NA 1995 2022-09-16
## 4678 GU Guam NA 1994 2022-09-16
## 4679 GU Guam NA 1993 2022-09-16
## 4680 GU Guam NA 1992 2022-09-16
## 4681 GU Guam NA 1991 2022-09-16
## 4682 GU Guam NA 1990 2022-09-16
## 4683 GU Guam NA 1989 2022-09-16
## 4684 GU Guam NA 1988 2022-09-16
## 4685 GU Guam NA 1987 2022-09-16
## 4686 GU Guam NA 1986 2022-09-16
## 4687 GU Guam NA 1985 2022-09-16
## 4688 GU Guam NA 1984 2022-09-16
## 4689 GU Guam NA 1983 2022-09-16
## 4690 GU Guam NA 1982 2022-09-16
## 4691 GU Guam NA 1981 2022-09-16
## 4692 GU Guam NA 1980 2022-09-16
## 4693 GU Guam NA 1979 2022-09-16
## 4694 GU Guam NA 1978 2022-09-16
## 4695 GU Guam NA 1977 2022-09-16
## 4696 GU Guam NA 1976 2022-09-16
## 4697 GU Guam NA 1975 2022-09-16
## 4698 GU Guam NA 1974 2022-09-16
## 4699 GU Guam NA 1973 2022-09-16
## 4700 GU Guam NA 1972 2022-09-16
## 4701 GU Guam NA 1971 2022-09-16
## 4702 GU Guam NA 1970 2022-09-16
## 4703 GU Guam NA 1969 2022-09-16
## 4704 GU Guam NA 1968 2022-09-16
## 4705 GU Guam NA 1967 2022-09-16
## 4706 GU Guam NA 1966 2022-09-16
## 4707 GU Guam NA 1965 2022-09-16
## 4708 GU Guam NA 1964 2022-09-16
## 4709 GU Guam NA 1963 2022-09-16
## 4710 GU Guam NA 1962 2022-09-16
## 4711 GU Guam NA 1961 2022-09-16
## 4712 GU Guam NA 1960 2022-09-16
## 4713 GW Guinea-Bissau 627.6750 2021 2022-09-16
## 4714 GW Guinea-Bissau 619.2892 2020 2022-09-16
## 4715 GW Guinea-Bissau 650.0694 2019 2022-09-16
## 4716 GW Guinea-Bissau 637.5467 2018 2022-09-16
## 4717 GW Guinea-Bissau 645.3591 2017 2022-09-16
## 4718 GW Guinea-Bissau 624.9198 2016 2022-09-16
## 4719 GW Guinea-Bissau 603.3994 2015 2022-09-16
## 4720 GW Guinea-Bissau 583.5661 2014 2022-09-16
## 4721 GW Guinea-Bissau 593.4814 2013 2022-09-16
## 4722 GW Guinea-Bissau 590.2661 2012 2022-09-16
## 4723 GW Guinea-Bissau 616.6835 2011 2022-09-16
## 4724 GW Guinea-Bissau 585.6916 2010 2022-09-16
## 4725 GW Guinea-Bissau 574.4708 2009 2022-09-16
## 4726 GW Guinea-Bissau 569.9528 2008 2022-09-16
## 4727 GW Guinea-Bissau 566.1074 2007 2022-09-16
## 4728 GW Guinea-Bissau 561.7350 2006 2022-09-16
## 4729 GW Guinea-Bissau 562.3849 2005 2022-09-16
## 4730 GW Guinea-Bissau 552.2848 2004 2022-09-16
## 4731 GW Guinea-Bissau 550.0894 2003 2022-09-16
## 4732 GW Guinea-Bissau 559.5562 2002 2022-09-16
## 4733 GW Guinea-Bissau 577.7188 2001 2022-09-16
## 4734 GW Guinea-Bissau 577.4857 2000 2022-09-16
## 4735 GW Guinea-Bissau 559.0069 1999 2022-09-16
## 4736 GW Guinea-Bissau 564.2424 1998 2022-09-16
## 4737 GW Guinea-Bissau 799.9123 1997 2022-09-16
## 4738 GW Guinea-Bissau 765.7436 1996 2022-09-16
## 4739 GW Guinea-Bissau 700.0042 1995 2022-09-16
## 4740 GW Guinea-Bissau 684.6529 1994 2022-09-16
## 4741 GW Guinea-Bissau 677.9988 1993 2022-09-16
## 4742 GW Guinea-Bissau 679.0665 1992 2022-09-16
## 4743 GW Guinea-Bissau 687.0513 1991 2022-09-16
## 4744 GW Guinea-Bissau 668.6306 1990 2022-09-16
## 4745 GW Guinea-Bissau 644.3835 1989 2022-09-16
## 4746 GW Guinea-Bissau 620.8334 1988 2022-09-16
## 4747 GW Guinea-Bissau 606.7255 1987 2022-09-16
## 4748 GW Guinea-Bissau 602.9874 1986 2022-09-16
## 4749 GW Guinea-Bissau 622.0063 1985 2022-09-16
## 4750 GW Guinea-Bissau 611.7783 1984 2022-09-16
## 4751 GW Guinea-Bissau 574.9287 1983 2022-09-16
## 4752 GW Guinea-Bissau 609.7020 1982 2022-09-16
## 4753 GW Guinea-Bissau 597.3609 1981 2022-09-16
## 4754 GW Guinea-Bissau 513.3624 1980 2022-09-16
## 4755 GW Guinea-Bissau 616.2824 1979 2022-09-16
## 4756 GW Guinea-Bissau 606.2591 1978 2022-09-16
## 4757 GW Guinea-Bissau 536.1960 1977 2022-09-16
## 4758 GW Guinea-Bissau 578.5985 1976 2022-09-16
## 4759 GW Guinea-Bissau 554.5318 1975 2022-09-16
## 4760 GW Guinea-Bissau 519.8348 1974 2022-09-16
## 4761 GW Guinea-Bissau 504.8234 1973 2022-09-16
## 4762 GW Guinea-Bissau 508.5939 1972 2022-09-16
## 4763 GW Guinea-Bissau 487.5371 1971 2022-09-16
## 4764 GW Guinea-Bissau 517.0412 1970 2022-09-16
## 4765 GW Guinea-Bissau NA 1969 2022-09-16
## 4766 GW Guinea-Bissau NA 1968 2022-09-16
## 4767 GW Guinea-Bissau NA 1967 2022-09-16
## 4768 GW Guinea-Bissau NA 1966 2022-09-16
## 4769 GW Guinea-Bissau NA 1965 2022-09-16
## 4770 GW Guinea-Bissau NA 1964 2022-09-16
## 4771 GW Guinea-Bissau NA 1963 2022-09-16
## 4772 GW Guinea-Bissau NA 1962 2022-09-16
## 4773 GW Guinea-Bissau NA 1961 2022-09-16
## 4774 GW Guinea-Bissau NA 1960 2022-09-16
## 4775 GY Guyana 11040.7120 2021 2022-09-16
## 4776 GY Guyana 9250.3017 2020 2022-09-16
## 4777 GY Guyana 6478.2877 2019 2022-09-16
## 4778 GY Guyana 6178.8897 2018 2022-09-16
## 4779 GY Guyana 5945.0687 2017 2022-09-16
## 4780 GY Guyana 5759.6917 2016 2022-09-16
## 4781 GY Guyana 5576.8259 2015 2022-09-16
## 4782 GY Guyana 5568.2182 2014 2022-09-16
## 4783 GY Guyana 5505.3900 2013 2022-09-16
## 4784 GY Guyana 5338.7127 2012 2022-09-16
## 4785 GY Guyana 5088.6070 2011 2022-09-16
## 4786 GY Guyana 4847.4315 2010 2022-09-16
## 4787 GY Guyana 4681.6483 2009 2022-09-16
## 4788 GY Guyana 4512.3853 2008 2022-09-16
## 4789 GY Guyana 4443.0726 2007 2022-09-16
## 4790 GY Guyana 4145.7848 2006 2022-09-16
## 4791 GY Guyana 3944.4447 2005 2022-09-16
## 4792 GY Guyana 4025.1907 2004 2022-09-16
## 4793 GY Guyana 3966.3961 2003 2022-09-16
## 4794 GY Guyana 3993.5241 2002 2022-09-16
## 4795 GY Guyana 3946.5893 2001 2022-09-16
## 4796 GY Guyana 3850.8178 2000 2022-09-16
## 4797 GY Guyana 3888.6573 1999 2022-09-16
## 4798 GY Guyana 3756.3032 1998 2022-09-16
## 4799 GY Guyana 3799.2983 1997 2022-09-16
## 4800 GY Guyana 3564.8541 1996 2022-09-16
## 4801 GY Guyana 3299.9951 1995 2022-09-16
## 4802 GY Guyana 3151.8561 1994 2022-09-16
## 4803 GY Guyana 2922.3793 1993 2022-09-16
## 4804 GY Guyana 2721.5374 1992 2022-09-16
## 4805 GY Guyana 2539.5775 1991 2022-09-16
## 4806 GY Guyana 2398.2929 1990 2022-09-16
## 4807 GY Guyana 2466.6388 1989 2022-09-16
## 4808 GY Guyana 2576.6991 1988 2022-09-16
## 4809 GY Guyana 2651.4656 1987 2022-09-16
## 4810 GY Guyana 2603.7818 1986 2022-09-16
## 4811 GY Guyana 2607.0100 1985 2022-09-16
## 4812 GY Guyana 2530.2248 1984 2022-09-16
## 4813 GY Guyana 2651.4225 1983 2022-09-16
## 4814 GY Guyana 2836.2815 1982 2022-09-16
## 4815 GY Guyana 3265.2070 1981 2022-09-16
## 4816 GY Guyana 3223.5937 1980 2022-09-16
## 4817 GY Guyana 3184.5561 1979 2022-09-16
## 4818 GY Guyana 3269.9261 1978 2022-09-16
## 4819 GY Guyana 3363.7226 1977 2022-09-16
## 4820 GY Guyana 3493.0175 1976 2022-09-16
## 4821 GY Guyana 3478.2162 1975 2022-09-16
## 4822 GY Guyana 3240.9984 1974 2022-09-16
## 4823 GY Guyana 3041.9262 1973 2022-09-16
## 4824 GY Guyana 3037.6553 1972 2022-09-16
## 4825 GY Guyana 3178.2785 1971 2022-09-16
## 4826 GY Guyana 3120.6073 1970 2022-09-16
## 4827 GY Guyana 3032.7560 1969 2022-09-16
## 4828 GY Guyana 2874.1541 1968 2022-09-16
## 4829 GY Guyana 2888.2835 1967 2022-09-16
## 4830 GY Guyana 2816.1088 1966 2022-09-16
## 4831 GY Guyana 2728.0067 1965 2022-09-16
## 4832 GY Guyana 2522.1522 1964 2022-09-16
## 4833 GY Guyana 2320.3535 1963 2022-09-16
## 4834 GY Guyana 2716.2297 1962 2022-09-16
## 4835 GY Guyana 2764.1044 1961 2022-09-16
## 4836 GY Guyana 2720.9119 1960 2022-09-16
## 4837 HK Hong Kong SAR, China 44535.9366 2021 2022-09-16
## 4838 HK Hong Kong SAR, China 41469.9755 2020 2022-09-16
## 4839 HK Hong Kong SAR, China 44192.3785 2019 2022-09-16
## 4840 HK Hong Kong SAR, China 45280.2188 2018 2022-09-16
## 4841 HK Hong Kong SAR, China 44380.5349 2017 2022-09-16
## 4842 HK Hong Kong SAR, China 43087.2864 2016 2022-09-16
## 4843 HK Hong Kong SAR, China 42431.8883 2015 2022-09-16
## 4844 HK Hong Kong SAR, China 41796.5937 2014 2022-09-16
## 4845 HK Hong Kong SAR, China 40959.7332 2013 2022-09-16
## 4846 HK Hong Kong SAR, China 39887.5981 2012 2022-09-16
## 4847 HK Hong Kong SAR, China 39656.1118 2011 2022-09-16
## 4848 HK Hong Kong SAR, China 38089.8121 2010 2022-09-16
## 4849 HK Hong Kong SAR, China 35938.4005 2009 2022-09-16
## 4850 HK Hong Kong SAR, China 36923.8965 2008 2022-09-16
## 4851 HK Hong Kong SAR, China 36371.5093 2007 2022-09-16
## 4852 HK Hong Kong SAR, China 34457.8930 2006 2022-09-16
## 4853 HK Hong Kong SAR, China 32401.2548 2005 2022-09-16
## 4854 HK Hong Kong SAR, China 30304.1988 2004 2022-09-16
## 4855 HK Hong Kong SAR, China 28097.0180 2003 2022-09-16
## 4856 HK Hong Kong SAR, China 27209.9796 2002 2022-09-16
## 4857 HK Hong Kong SAR, China 26885.3714 2001 2022-09-16
## 4858 HK Hong Kong SAR, China 26933.1716 2000 2022-09-16
## 4859 HK Hong Kong SAR, China 25237.5922 1999 2022-09-16
## 4860 HK Hong Kong SAR, China 24856.6830 1998 2022-09-16
## 4861 HK Hong Kong SAR, China 26631.7066 1997 2022-09-16
## 4862 HK Hong Kong SAR, China 25551.2790 1996 2022-09-16
## 4863 HK Hong Kong SAR, China 25619.9043 1995 2022-09-16
## 4864 HK Hong Kong SAR, China 25526.3195 1994 2022-09-16
## 4865 HK Hong Kong SAR, China 24621.5434 1993 2022-09-16
## 4866 HK Hong Kong SAR, China 23585.5727 1992 2022-09-16
## 4867 HK Hong Kong SAR, China 22388.5615 1991 2022-09-16
## 4868 HK Hong Kong SAR, China 21357.2122 1990 2022-09-16
## 4869 HK Hong Kong SAR, China 20635.4756 1989 2022-09-16
## 4870 HK Hong Kong SAR, China 20386.1437 1988 2022-09-16
## 4871 HK Hong Kong SAR, China 18945.6258 1987 2022-09-16
## 4872 HK Hong Kong SAR, China 16876.1787 1986 2022-09-16
## 4873 HK Hong Kong SAR, China 15386.5902 1985 2022-09-16
## 4874 HK Hong Kong SAR, China 15435.9039 1984 2022-09-16
## 4875 HK Hong Kong SAR, China 14174.6314 1983 2022-09-16
## 4876 HK Hong Kong SAR, China 13579.9713 1982 2022-09-16
## 4877 HK Hong Kong SAR, China 13397.2455 1981 2022-09-16
## 4878 HK Hong Kong SAR, China 12553.0511 1980 2022-09-16
## 4879 HK Hong Kong SAR, China 11709.1556 1979 2022-09-16
## 4880 HK Hong Kong SAR, China 11085.7650 1978 2022-09-16
## 4881 HK Hong Kong SAR, China 10427.0693 1977 2022-09-16
## 4882 HK Hong Kong SAR, China 9468.4483 1976 2022-09-16
## 4883 HK Hong Kong SAR, China 8253.9466 1975 2022-09-16
## 4884 HK Hong Kong SAR, China 8370.7568 1974 2022-09-16
## 4885 HK Hong Kong SAR, China 8435.7970 1973 2022-09-16
## 4886 HK Hong Kong SAR, China 7728.2022 1972 2022-09-16
## 4887 HK Hong Kong SAR, China 7122.0169 1971 2022-09-16
## 4888 HK Hong Kong SAR, China 6782.6150 1970 2022-09-16
## 4889 HK Hong Kong SAR, China 6363.6737 1969 2022-09-16
## 4890 HK Hong Kong SAR, China 5807.3260 1968 2022-09-16
## 4891 HK Hong Kong SAR, China 5737.0397 1967 2022-09-16
## 4892 HK Hong Kong SAR, China 5791.0116 1966 2022-09-16
## 4893 HK Hong Kong SAR, China 5739.4994 1965 2022-09-16
## 4894 HK Hong Kong SAR, China 5139.7280 1964 2022-09-16
## 4895 HK Hong Kong SAR, China 4847.2623 1963 2022-09-16
## 4896 HK Hong Kong SAR, China 4333.7943 1962 2022-09-16
## 4897 HK Hong Kong SAR, China 3955.9929 1961 2022-09-16
## 4898 HK Hong Kong SAR, China NA 1960 2022-09-16
## 4899 HN Honduras 2479.9897 2021 2022-09-16
## 4900 HN Honduras 2239.0081 2020 2022-09-16
## 4901 HN Honduras 2499.4928 2019 2022-09-16
## 4902 HN Honduras 2475.1703 2018 2022-09-16
## 4903 HN Honduras 2423.5923 2017 2022-09-16
## 4904 HN Honduras 2351.0936 2016 2022-09-16
## 4905 HN Honduras 2302.2044 2015 2022-09-16
## 4906 HN Honduras 2256.0151 2014 2022-09-16
## 4907 HN Honduras 2228.1467 2013 2022-09-16
## 4908 HN Honduras 2207.2302 2012 2022-09-16
## 4909 HN Honduras 2159.7108 2011 2022-09-16
## 4910 HN Honduras 2120.7429 2010 2022-09-16
## 4911 HN Honduras 2086.2713 2009 2022-09-16
## 4912 HN Honduras 2183.7657 2008 2022-09-16
## 4913 HN Honduras 2141.3752 2007 2022-09-16
## 4914 HN Honduras 2062.6036 2006 2022-09-16
## 4915 HN Honduras 1980.9861 2005 2022-09-16
## 4916 HN Honduras 1913.1118 2004 2022-09-16
## 4917 HN Honduras 1845.6371 2003 2022-09-16
## 4918 HN Honduras 1810.4737 2002 2022-09-16
## 4919 HN Honduras 1790.7975 2001 2022-09-16
## 4920 HN Honduras 1790.3641 2000 2022-09-16
## 4921 HN Honduras 1714.9617 1999 2022-09-16
## 4922 HN Honduras 1776.7582 1998 2022-09-16
## 4923 HN Honduras 1764.7423 1997 2022-09-16
## 4924 HN Honduras 1736.2423 1996 2022-09-16
## 4925 HN Honduras 1753.8564 1995 2022-09-16
## 4926 HN Honduras 1699.2675 1994 2022-09-16
## 4927 HN Honduras 1744.2564 1993 2022-09-16
## 4928 HN Honduras 1684.6274 1992 2022-09-16
## 4929 HN Honduras 1633.6706 1991 2022-09-16
## 4930 HN Honduras 1738.6216 1990 2022-09-16
## 4931 HN Honduras 1740.7967 1989 2022-09-16
## 4932 HN Honduras 1744.4528 1988 2022-09-16
## 4933 HN Honduras 1765.4006 1987 2022-09-16
## 4934 HN Honduras 1705.0324 1986 2022-09-16
## 4935 HN Honduras 1667.5557 1985 2022-09-16
## 4936 HN Honduras 1626.7242 1984 2022-09-16
## 4937 HN Honduras 1576.8025 1983 2022-09-16
## 4938 HN Honduras 1610.8764 1982 2022-09-16
## 4939 HN Honduras 1696.0603 1981 2022-09-16
## 4940 HN Honduras 1770.5616 1980 2022-09-16
## 4941 HN Honduras 1815.0898 1979 2022-09-16
## 4942 HN Honduras 1772.6272 1978 2022-09-16
## 4943 HN Honduras 1725.3488 1977 2022-09-16
## 4944 HN Honduras 1611.9284 1976 2022-09-16
## 4945 HN Honduras 1504.0366 1975 2022-09-16
## 4946 HN Honduras 1517.9120 1974 2022-09-16
## 4947 HN Honduras 1583.5014 1973 2022-09-16
## 4948 HN Honduras 1512.2236 1972 2022-09-16
## 4949 HN Honduras 1472.7443 1971 2022-09-16
## 4950 HN Honduras 1458.6395 1970 2022-09-16
## 4951 HN Honduras 1449.8240 1969 2022-09-16
## 4952 HN Honduras 1483.5779 1968 2022-09-16
## 4953 HN Honduras 1433.3394 1967 2022-09-16
## 4954 HN Honduras 1392.6028 1966 2022-09-16
## 4955 HN Honduras 1360.3403 1965 2022-09-16
## 4956 HN Honduras 1283.6859 1964 2022-09-16
## 4957 HN Honduras 1252.5167 1963 2022-09-16
## 4958 HN Honduras 1243.4754 1962 2022-09-16
## 4959 HN Honduras 1208.9215 1961 2022-09-16
## 4960 HN Honduras 1220.5311 1960 2022-09-16
## 4961 HR Croatia 12441.5025 2016 2022-09-16
## 4962 HR Croatia 14068.0445 2019 2022-09-16
## 4963 HR Croatia 13519.5588 2018 2022-09-16
## 4964 HR Croatia 13021.6717 2017 2022-09-16
## 4965 HR Croatia 14888.3306 2021 2022-09-16
## 4966 HR Croatia 12984.6959 2020 2022-09-16
## 4967 HR Croatia NA 1994 2022-09-16
## 4968 HR Croatia NA 1993 2022-09-16
## 4969 HR Croatia NA 1992 2022-09-16
## 4970 HR Croatia NA 1991 2022-09-16
## 4971 HR Croatia NA 1990 2022-09-16
## 4972 HR Croatia NA 1989 2022-09-16
## 4973 HR Croatia NA 1988 2022-09-16
## 4974 HR Croatia NA 1987 2022-09-16
## 4975 HR Croatia NA 1986 2022-09-16
## 4976 HR Croatia NA 1985 2022-09-16
## 4977 HR Croatia NA 1984 2022-09-16
## 4978 HR Croatia NA 1983 2022-09-16
## 4979 HR Croatia NA 1982 2022-09-16
## 4980 HR Croatia NA 1981 2022-09-16
## 4981 HR Croatia NA 1980 2022-09-16
## 4982 HR Croatia NA 1979 2022-09-16
## 4983 HR Croatia NA 1978 2022-09-16
## 4984 HR Croatia NA 1977 2022-09-16
## 4985 HR Croatia NA 1976 2022-09-16
## 4986 HR Croatia 11933.3774 2015 2022-09-16
## 4987 HR Croatia 11543.8763 2014 2022-09-16
## 4988 HR Croatia 11536.8602 2013 2022-09-16
## 4989 HR Croatia 11546.7017 2012 2022-09-16
## 4990 HR Croatia 11779.5300 2011 2022-09-16
## 4991 HR Croatia 11748.9448 2010 2022-09-16
## 4992 HR Croatia 11870.7940 2009 2022-09-16
## 4993 HR Croatia 12789.6358 2008 2022-09-16
## 4994 HR Croatia 12550.2339 2007 2022-09-16
## 4995 HR Croatia 11959.9232 2006 2022-09-16
## 4996 HR Croatia 11399.7753 2005 2022-09-16
## 4997 HR Croatia 10942.5724 2004 2022-09-16
## 4998 HR Croatia 10509.5497 2003 2022-09-16
## 4999 HR Croatia 9962.0449 2002 2022-09-16
## 5000 HR Croatia 9428.4107 2001 2022-09-16
## 5001 HR Croatia 8805.5004 2000 2022-09-16
## 5002 HR Croatia 8473.7105 1999 2022-09-16
## 5003 HR Croatia 8511.7819 1998 2022-09-16
## 5004 HR Croatia 8322.9639 1997 2022-09-16
## 5005 HR Croatia 7803.9220 1996 2022-09-16
## 5006 HR Croatia 7263.5709 1995 2022-09-16
## 5007 HR Croatia NA 1968 2022-09-16
## 5008 HR Croatia NA 1967 2022-09-16
## 5009 HR Croatia NA 1966 2022-09-16
## 5010 HR Croatia NA 1965 2022-09-16
## 5011 HR Croatia NA 1964 2022-09-16
## 5012 HR Croatia NA 1963 2022-09-16
## 5013 HR Croatia NA 1975 2022-09-16
## 5014 HR Croatia NA 1974 2022-09-16
## 5015 HR Croatia NA 1973 2022-09-16
## 5016 HR Croatia NA 1972 2022-09-16
## 5017 HR Croatia NA 1971 2022-09-16
## 5018 HR Croatia NA 1970 2022-09-16
## 5019 HR Croatia NA 1969 2022-09-16
## 5020 HR Croatia NA 1960 2022-09-16
## 5021 HR Croatia NA 1962 2022-09-16
## 5022 HR Croatia NA 1961 2022-09-16
## 5023 HT Haiti 1272.5905 2021 2022-09-16
## 5024 HT Haiti 1311.7081 2020 2022-09-16
## 5025 HT Haiti 1373.8831 2019 2022-09-16
## 5026 HT Haiti 1414.9994 2018 2022-09-16
## 5027 HT Haiti 1409.6325 2017 2022-09-16
## 5028 HT Haiti 1393.1766 2016 2022-09-16
## 5029 HT Haiti 1386.8542 2015 2022-09-16
## 5030 HT Haiti 1370.9869 2014 2022-09-16
## 5031 HT Haiti 1366.9926 2013 2022-09-16
## 5032 HT Haiti 1329.4658 2012 2022-09-16
## 5033 HT Haiti 1342.5436 2011 2022-09-16
## 5034 HT Haiti 1296.8057 2010 2022-09-16
## 5035 HT Haiti 1395.7055 2009 2022-09-16
## 5036 HT Haiti 1338.7634 2008 2022-09-16
## 5037 HT Haiti 1324.8707 2007 2022-09-16
## 5038 HT Haiti 1285.7034 2006 2022-09-16
## 5039 HT Haiti 1283.8971 2005 2022-09-16
## 5040 HT Haiti 1266.0348 2004 2022-09-16
## 5041 HT Haiti 1304.1283 2003 2022-09-16
## 5042 HT Haiti 1281.2741 2002 2022-09-16
## 5043 HT Haiti 1289.3436 2001 2022-09-16
## 5044 HT Haiti 1315.9439 2000 2022-09-16
## 5045 HT Haiti 1327.2900 1999 2022-09-16
## 5046 HT Haiti 1315.0918 1998 2022-09-16
## 5047 HT Haiti 1310.0822 1997 2022-09-16
## 5048 HT Haiti 1298.7743 1996 2022-09-16
## 5049 HT Haiti 1270.1296 1995 2022-09-16
## 5050 HT Haiti 1177.3545 1994 2022-09-16
## 5051 HT Haiti 1362.5373 1993 2022-09-16
## 5052 HT Haiti 1468.5061 1992 2022-09-16
## 5053 HT Haiti 1581.2910 1991 2022-09-16
## 5054 HT Haiti 1583.1313 1990 2022-09-16
## 5055 HT Haiti 1598.7035 1989 2022-09-16
## 5056 HT Haiti 1680.6762 1988 2022-09-16
## 5057 HT Haiti 1712.6613 1987 2022-09-16
## 5058 HT Haiti 1763.7235 1986 2022-09-16
## 5059 HT Haiti 1812.0531 1985 2022-09-16
## 5060 HT Haiti 1842.6401 1984 2022-09-16
## 5061 HT Haiti 1880.5439 1983 2022-09-16
## 5062 HT Haiti 1908.2034 1982 2022-09-16
## 5063 HT Haiti 2025.6249 1981 2022-09-16
## 5064 HT Haiti 2133.2119 1980 2022-09-16
## 5065 HT Haiti 2030.9620 1979 2022-09-16
## 5066 HT Haiti 1928.7954 1978 2022-09-16
## 5067 HT Haiti 1853.5621 1977 2022-09-16
## 5068 HT Haiti 1822.7418 1976 2022-09-16
## 5069 HT Haiti 1712.9200 1975 2022-09-16
## 5070 HT Haiti 1724.6611 1974 2022-09-16
## 5071 HT Haiti 1658.6277 1973 2022-09-16
## 5072 HT Haiti 1609.9428 1972 2022-09-16
## 5073 HT Haiti 1621.2294 1971 2022-09-16
## 5074 HT Haiti 1548.9147 1970 2022-09-16
## 5075 HT Haiti 1566.5557 1969 2022-09-16
## 5076 HT Haiti 1537.0910 1968 2022-09-16
## 5077 HT Haiti 1518.1375 1967 2022-09-16
## 5078 HT Haiti 1580.9898 1966 2022-09-16
## 5079 HT Haiti 1620.9839 1965 2022-09-16
## 5080 HT Haiti 1617.4863 1964 2022-09-16
## 5081 HT Haiti 1676.6355 1963 2022-09-16
## 5082 HT Haiti 1742.3975 1962 2022-09-16
## 5083 HT Haiti 1646.6471 1961 2022-09-16
## 5084 HT Haiti 1729.6414 1960 2022-09-16
## 5085 HU Hungary 15486.6340 2021 2022-09-16
## 5086 HU Hungary 14400.7192 2020 2022-09-16
## 5087 HU Hungary 15041.0986 2019 2022-09-16
## 5088 HU Hungary 14379.4442 2018 2022-09-16
## 5089 HU Hungary 13630.6882 2017 2022-09-16
## 5090 HU Hungary 13037.9647 2016 2022-09-16
## 5091 HU Hungary 12720.7120 2015 2022-09-16
## 5092 HU Hungary 12237.3117 2014 2022-09-16
## 5093 HU Hungary 11709.8014 2013 2022-09-16
## 5094 HU Hungary 11470.4034 2012 2022-09-16
## 5095 HU Hungary 11556.6726 2011 2022-09-16
## 5096 HU Hungary 11313.5229 2010 2022-09-16
## 5097 HU Hungary 11167.0294 2009 2022-09-16
## 5098 HU Hungary 11937.0491 2008 2022-09-16
## 5099 HU Hungary 11797.4290 2007 2022-09-16
## 5100 HU Hungary 11746.6312 2006 2022-09-16
## 5101 HU Hungary 11282.9299 2005 2022-09-16
## 5102 HU Hungary 10796.7619 2004 2022-09-16
## 5103 HU Hungary 10259.8419 2003 2022-09-16
## 5104 HU Hungary 9829.0275 2002 2022-09-16
## 5105 HU Hungary 9357.4174 2001 2022-09-16
## 5106 HU Hungary 8970.5112 2000 2022-09-16
## 5107 HU Hungary 8563.6565 1999 2022-09-16
## 5108 HU Hungary 8284.9988 1998 2022-09-16
## 5109 HU Hungary 7955.4799 1997 2022-09-16
## 5110 HU Hungary 7697.5259 1996 2022-09-16
## 5111 HU Hungary 7677.9877 1995 2022-09-16
## 5112 HU Hungary 7554.7755 1994 2022-09-16
## 5113 HU Hungary 7328.4603 1993 2022-09-16
## 5114 HU Hungary 7362.5242 1992 2022-09-16
## 5115 HU Hungary 7592.2846 1991 2022-09-16
## 5116 HU Hungary NA 1990 2022-09-16
## 5117 HU Hungary NA 1989 2022-09-16
## 5118 HU Hungary NA 1988 2022-09-16
## 5119 HU Hungary NA 1987 2022-09-16
## 5120 HU Hungary NA 1986 2022-09-16
## 5121 HU Hungary NA 1985 2022-09-16
## 5122 HU Hungary NA 1984 2022-09-16
## 5123 HU Hungary NA 1983 2022-09-16
## 5124 HU Hungary NA 1982 2022-09-16
## 5125 HU Hungary NA 1981 2022-09-16
## 5126 HU Hungary NA 1980 2022-09-16
## 5127 HU Hungary NA 1979 2022-09-16
## 5128 HU Hungary NA 1978 2022-09-16
## 5129 HU Hungary NA 1977 2022-09-16
## 5130 HU Hungary NA 1976 2022-09-16
## 5131 HU Hungary NA 1975 2022-09-16
## 5132 HU Hungary NA 1974 2022-09-16
## 5133 HU Hungary NA 1973 2022-09-16
## 5134 HU Hungary NA 1972 2022-09-16
## 5135 HU Hungary NA 1971 2022-09-16
## 5136 HU Hungary NA 1970 2022-09-16
## 5137 HU Hungary NA 1969 2022-09-16
## 5138 HU Hungary NA 1968 2022-09-16
## 5139 HU Hungary NA 1967 2022-09-16
## 5140 HU Hungary NA 1966 2022-09-16
## 5141 HU Hungary NA 1965 2022-09-16
## 5142 HU Hungary NA 1964 2022-09-16
## 5143 HU Hungary NA 1963 2022-09-16
## 5144 HU Hungary NA 1962 2022-09-16
## 5145 HU Hungary NA 1961 2022-09-16
## 5146 HU Hungary NA 1960 2022-09-16
## 5147 ID Indonesia 3855.7971 2021 2022-09-16
## 5148 ID Indonesia 3757.1216 2020 2022-09-16
## 5149 ID Indonesia 3877.4246 2019 2022-09-16
## 5150 ID Indonesia 3732.8671 2018 2022-09-16
## 5151 ID Indonesia 3589.7155 2017 2022-09-16
## 5152 ID Indonesia 3456.9281 2016 2022-09-16
## 5153 ID Indonesia 3331.6951 2015 2022-09-16
## 5154 ID Indonesia 3217.3175 2014 2022-09-16
## 5155 ID Indonesia 3104.3480 2013 2022-09-16
## 5156 ID Indonesia 2980.6101 2012 2022-09-16
## 5157 ID Indonesia 2849.3550 2011 2022-09-16
## 5158 ID Indonesia 2720.1916 2010 2022-09-16
## 5159 ID Indonesia 2595.2988 2009 2022-09-16
## 5160 ID Indonesia 2513.6716 2008 2022-09-16
## 5161 ID Indonesia 2402.6675 2007 2022-09-16
## 5162 ID Indonesia 2289.4220 2006 2022-09-16
## 5163 ID Indonesia 2199.0939 2005 2022-09-16
## 5164 ID Indonesia 2108.6418 2004 2022-09-16
## 5165 ID Indonesia 2034.7615 2003 2022-09-16
## 5166 ID Indonesia 1968.3011 2002 2022-09-16
## 5167 ID Indonesia 1909.2919 2001 2022-09-16
## 5168 ID Indonesia 1867.5488 2000 2022-09-16
## 5169 ID Indonesia 1804.7052 1999 2022-09-16
## 5170 ID Indonesia 1815.6981 1998 2022-09-16
## 5171 ID Indonesia 2119.9181 1997 2022-09-16
## 5172 ID Indonesia 2054.3858 1996 2022-09-16
## 5173 ID Indonesia 1934.1234 1995 2022-09-16
## 5174 ID Indonesia 1815.0182 1994 2022-09-16
## 5175 ID Indonesia 1714.8776 1993 2022-09-16
## 5176 ID Indonesia 1636.9549 1992 2022-09-16
## 5177 ID Indonesia 1563.2950 1991 2022-09-16
## 5178 ID Indonesia 1489.7429 1990 2022-09-16
## 5179 ID Indonesia 1414.3514 1989 2022-09-16
## 5180 ID Indonesia 1336.4202 1988 2022-09-16
## 5181 ID Indonesia 1289.3365 1987 2022-09-16
## 5182 ID Indonesia 1252.2138 1986 2022-09-16
## 5183 ID Indonesia 1208.2510 1985 2022-09-16
## 5184 ID Indonesia 1204.4597 1984 2022-09-16
## 5185 ID Indonesia 1152.3984 1983 2022-09-16
## 5186 ID Indonesia 1129.1815 1982 2022-09-16
## 5187 ID Indonesia 1130.1923 1981 2022-09-16
## 5188 ID Indonesia 1072.4502 1980 2022-09-16
## 5189 ID Indonesia 998.2301 1979 2022-09-16
## 5190 ID Indonesia 954.1291 1978 2022-09-16
## 5191 ID Indonesia 914.5380 1977 2022-09-16
## 5192 ID Indonesia 865.6041 1976 2022-09-16
## 5193 ID Indonesia 828.7021 1975 2022-09-16
## 5194 ID Indonesia 804.7672 1974 2022-09-16
## 5195 ID Indonesia 769.9479 1973 2022-09-16
## 5196 ID Indonesia 730.9584 1972 2022-09-16
## 5197 ID Indonesia 701.0726 1971 2022-09-16
## 5198 ID Indonesia 672.6767 1970 2022-09-16
## 5199 ID Indonesia 642.4104 1969 2022-09-16
## 5200 ID Indonesia 617.8495 1968 2022-09-16
## 5201 ID Indonesia 572.3816 1967 2022-09-16
## 5202 ID Indonesia 580.1523 1966 2022-09-16
## 5203 ID Indonesia 579.9246 1965 2022-09-16
## 5204 ID Indonesia 589.4169 1964 2022-09-16
## 5205 ID Indonesia 584.7892 1963 2022-09-16
## 5206 ID Indonesia 614.3141 1962 2022-09-16
## 5207 ID Indonesia 619.4049 1961 2022-09-16
## 5208 ID Indonesia 601.4469 1960 2022-09-16
## 5209 IE Ireland 88588.4841 2021 2022-09-16
## 5210 IE Ireland 78732.5533 2020 2022-09-16
## 5211 IE Ireland 75143.0185 2019 2022-09-16
## 5212 IE Ireland 72607.6319 2018 2022-09-16
## 5213 IE Ireland 67424.2286 2017 2022-09-16
## 5214 IE Ireland 62568.6266 2016 2022-09-16
## 5215 IE Ireland 62012.4849 2015 2022-09-16
## 5216 IE Ireland 50010.4342 2014 2022-09-16
## 5217 IE Ireland 46339.4693 2013 2022-09-16
## 5218 IE Ireland 46001.2733 2012 2022-09-16
## 5219 IE Ireland 46220.8132 2011 2022-09-16
## 5220 IE Ireland 45932.0137 2010 2022-09-16
## 5221 IE Ireland 45386.4052 2009 2022-09-16
## 5222 IE Ireland 48313.9671 2008 2022-09-16
## 5223 IE Ireland 51625.2761 2007 2022-09-16
## 5224 IE Ireland 50462.2653 2006 2022-09-16
## 5225 IE Ireland 49381.7756 2005 2022-09-16
## 5226 IE Ireland 47731.4846 2004 2022-09-16
## 5227 IE Ireland 45523.0558 2003 2022-09-16
## 5228 IE Ireland 44918.8073 2002 2022-09-16
## 5229 IE Ireland 43138.6171 2001 2022-09-16
## 5230 IE Ireland 41623.0575 2000 2022-09-16
## 5231 IE Ireland 38557.4495 1999 2022-09-16
## 5232 IE Ireland 35282.0031 1998 2022-09-16
## 5233 IE Ireland 32781.2302 1997 2022-09-16
## 5234 IE Ireland 29826.2922 1996 2022-09-16
## 5235 IE Ireland 27998.8192 1995 2022-09-16
## 5236 IE Ireland 25669.6172 1994 2022-09-16
## 5237 IE Ireland 24368.4003 1993 2022-09-16
## 5238 IE Ireland 23848.3651 1992 2022-09-16
## 5239 IE Ireland 23234.8246 1991 2022-09-16
## 5240 IE Ireland 22926.3960 1990 2022-09-16
## 5241 IE Ireland 21154.6893 1989 2022-09-16
## 5242 IE Ireland 19913.2872 1988 2022-09-16
## 5243 IE Ireland 18845.0770 1987 2022-09-16
## 5244 IE Ireland 18007.3326 1986 2022-09-16
## 5245 IE Ireland 18093.0145 1985 2022-09-16
## 5246 IE Ireland 17579.5623 1984 2022-09-16
## 5247 IE Ireland 16950.7439 1983 2022-09-16
## 5248 IE Ireland 17113.1487 1982 2022-09-16
## 5249 IE Ireland 16890.0280 1981 2022-09-16
## 5250 IE Ireland 16539.0205 1980 2022-09-16
## 5251 IE Ireland 16230.6587 1979 2022-09-16
## 5252 IE Ireland 15957.9512 1978 2022-09-16
## 5253 IE Ireland 15100.7290 1977 2022-09-16
## 5254 IE Ireland 14145.1249 1976 2022-09-16
## 5255 IE Ireland 14162.6723 1975 2022-09-16
## 5256 IE Ireland 13626.8060 1974 2022-09-16
## 5257 IE Ireland 13288.3252 1973 2022-09-16
## 5258 IE Ireland 12894.3731 1972 2022-09-16
## 5259 IE Ireland 12289.8526 1971 2022-09-16
## 5260 IE Ireland 12017.4828 1970 2022-09-16
## 5261 IE Ireland NA 1969 2022-09-16
## 5262 IE Ireland NA 1968 2022-09-16
## 5263 IE Ireland NA 1967 2022-09-16
## 5264 IE Ireland NA 1966 2022-09-16
## 5265 IE Ireland NA 1965 2022-09-16
## 5266 IE Ireland NA 1964 2022-09-16
## 5267 IE Ireland NA 1963 2022-09-16
## 5268 IE Ireland NA 1962 2022-09-16
## 5269 IE Ireland NA 1961 2022-09-16
## 5270 IE Ireland NA 1960 2022-09-16
## 5271 IL Israel 39913.0985 2021 2022-09-16
## 5272 IL Israel 37488.4550 2020 2022-09-16
## 5273 IL Israel 38995.2305 2019 2022-09-16
## 5274 IL Israel 38301.4537 2018 2022-09-16
## 5275 IL Israel 37550.7277 2017 2022-09-16
## 5276 IL Israel 36680.3221 2016 2022-09-16
## 5277 IL Israel 35808.4364 2015 2022-09-16
## 5278 IL Israel 35710.8863 2014 2022-09-16
## 5279 IL Israel 34960.9434 2013 2022-09-16
## 5280 IL Israel 33995.4277 2012 2022-09-16
## 5281 IL Israel 33678.1315 2011 2022-09-16
## 5282 IL Israel 32504.7134 2010 2022-09-16
## 5283 IL Israel 31323.3120 2009 2022-09-16
## 5284 IL Israel 31718.4891 2008 2022-09-16
## 5285 IL Israel 31207.6020 2007 2022-09-16
## 5286 IL Israel 29939.9372 2006 2022-09-16
## 5287 IL Israel 28809.6425 2005 2022-09-16
## 5288 IL Israel 28151.2719 2004 2022-09-16
## 5289 IL Israel 27310.9659 2003 2022-09-16
## 5290 IL Israel 27492.5620 2002 2022-09-16
## 5291 IL Israel 28106.9451 2001 2022-09-16
## 5292 IL Israel 28747.9291 2000 2022-09-16
## 5293 IL Israel 27107.2211 1999 2022-09-16
## 5294 IL Israel 26847.7314 1998 2022-09-16
## 5295 IL Israel 26362.1535 1997 2022-09-16
## 5296 IL Israel 26008.2786 1996 2022-09-16
## 5297 IL Israel 25179.9699 1995 2022-09-16
## 5298 IL Israel NA 1994 2022-09-16
## 5299 IL Israel NA 1993 2022-09-16
## 5300 IL Israel NA 1992 2022-09-16
## 5301 IL Israel NA 1991 2022-09-16
## 5302 IL Israel NA 1990 2022-09-16
## 5303 IL Israel NA 1989 2022-09-16
## 5304 IL Israel NA 1988 2022-09-16
## 5305 IL Israel NA 1987 2022-09-16
## 5306 IL Israel NA 1986 2022-09-16
## 5307 IL Israel NA 1985 2022-09-16
## 5308 IL Israel NA 1984 2022-09-16
## 5309 IL Israel NA 1983 2022-09-16
## 5310 IL Israel NA 1982 2022-09-16
## 5311 IL Israel NA 1981 2022-09-16
## 5312 IL Israel NA 1980 2022-09-16
## 5313 IL Israel NA 1979 2022-09-16
## 5314 IL Israel NA 1978 2022-09-16
## 5315 IL Israel NA 1977 2022-09-16
## 5316 IL Israel NA 1976 2022-09-16
## 5317 IL Israel NA 1975 2022-09-16
## 5318 IL Israel NA 1974 2022-09-16
## 5319 IL Israel NA 1973 2022-09-16
## 5320 IL Israel NA 1972 2022-09-16
## 5321 IL Israel NA 1971 2022-09-16
## 5322 IL Israel NA 1970 2022-09-16
## 5323 IL Israel NA 1969 2022-09-16
## 5324 IL Israel NA 1968 2022-09-16
## 5325 IL Israel NA 1967 2022-09-16
## 5326 IL Israel NA 1966 2022-09-16
## 5327 IL Israel NA 1965 2022-09-16
## 5328 IL Israel NA 1964 2022-09-16
## 5329 IL Israel NA 1963 2022-09-16
## 5330 IL Israel NA 1962 2022-09-16
## 5331 IL Israel NA 1961 2022-09-16
## 5332 IL Israel NA 1960 2022-09-16
## 5333 IM Isle of Man NA 2021 2022-09-16
## 5334 IM Isle of Man NA 2020 2022-09-16
## 5335 IM Isle of Man 96105.3032 2019 2022-09-16
## 5336 IM Isle of Man 96449.3396 2018 2022-09-16
## 5337 IM Isle of Man 94883.2885 2017 2022-09-16
## 5338 IM Isle of Man 90975.3085 2016 2022-09-16
## 5339 IM Isle of Man 85126.9705 2015 2022-09-16
## 5340 IM Isle of Man 85194.6244 2014 2022-09-16
## 5341 IM Isle of Man 80538.4642 2013 2022-09-16
## 5342 IM Isle of Man 76833.1981 2012 2022-09-16
## 5343 IM Isle of Man 71304.0148 2011 2022-09-16
## 5344 IM Isle of Man 69933.0832 2010 2022-09-16
## 5345 IM Isle of Man 68015.8807 2009 2022-09-16
## 5346 IM Isle of Man 67306.1069 2008 2022-09-16
## 5347 IM Isle of Man 65025.6392 2007 2022-09-16
## 5348 IM Isle of Man 61324.6777 2006 2022-09-16
## 5349 IM Isle of Man 57642.3418 2005 2022-09-16
## 5350 IM Isle of Man 54963.4873 2004 2022-09-16
## 5351 IM Isle of Man 52668.5910 2003 2022-09-16
## 5352 IM Isle of Man 50042.6314 2002 2022-09-16
## 5353 IM Isle of Man 47491.6299 2001 2022-09-16
## 5354 IM Isle of Man 45506.4691 2000 2022-09-16
## 5355 IM Isle of Man 43753.9735 1999 2022-09-16
## 5356 IM Isle of Man 39026.2905 1998 2022-09-16
## 5357 IM Isle of Man 34889.5618 1997 2022-09-16
## 5358 IM Isle of Man 32552.9157 1996 2022-09-16
## 5359 IM Isle of Man 30540.2347 1995 2022-09-16
## 5360 IM Isle of Man 29473.5969 1994 2022-09-16
## 5361 IM Isle of Man 28431.6451 1993 2022-09-16
## 5362 IM Isle of Man 27776.8741 1992 2022-09-16
## 5363 IM Isle of Man 27686.1852 1991 2022-09-16
## 5364 IM Isle of Man 27495.3900 1990 2022-09-16
## 5365 IM Isle of Man 26782.4960 1989 2022-09-16
## 5366 IM Isle of Man 25559.6465 1988 2022-09-16
## 5367 IM Isle of Man 23354.8226 1987 2022-09-16
## 5368 IM Isle of Man 21667.5896 1986 2022-09-16
## 5369 IM Isle of Man 18453.1555 1985 2022-09-16
## 5370 IM Isle of Man 18510.0812 1984 2022-09-16
## 5371 IM Isle of Man NA 1983 2022-09-16
## 5372 IM Isle of Man NA 1982 2022-09-16
## 5373 IM Isle of Man NA 1981 2022-09-16
## 5374 IM Isle of Man NA 1980 2022-09-16
## 5375 IM Isle of Man NA 1979 2022-09-16
## 5376 IM Isle of Man NA 1978 2022-09-16
## 5377 IM Isle of Man NA 1977 2022-09-16
## 5378 IM Isle of Man NA 1976 2022-09-16
## 5379 IM Isle of Man NA 1975 2022-09-16
## 5380 IM Isle of Man NA 1974 2022-09-16
## 5381 IM Isle of Man NA 1973 2022-09-16
## 5382 IM Isle of Man NA 1972 2022-09-16
## 5383 IM Isle of Man NA 1971 2022-09-16
## 5384 IM Isle of Man NA 1970 2022-09-16
## 5385 IM Isle of Man NA 1969 2022-09-16
## 5386 IM Isle of Man NA 1968 2022-09-16
## 5387 IM Isle of Man NA 1967 2022-09-16
## 5388 IM Isle of Man NA 1966 2022-09-16
## 5389 IM Isle of Man NA 1965 2022-09-16
## 5390 IM Isle of Man NA 1964 2022-09-16
## 5391 IM Isle of Man NA 1963 2022-09-16
## 5392 IM Isle of Man NA 1962 2022-09-16
## 5393 IM Isle of Man NA 1961 2022-09-16
## 5394 IM Isle of Man NA 1960 2022-09-16
## 5395 IN India 1961.4210 2021 2022-09-16
## 5396 IN India 1817.8158 2020 2022-09-16
## 5397 IN India 1965.5393 2019 2022-09-16
## 5398 IN India 1914.0124 2018 2022-09-16
## 5399 IN India 1816.7309 2017 2022-09-16
## 5400 IN India 1719.3181 2016 2022-09-16
## 5401 IN India 1605.6054 2015 2022-09-16
## 5402 IN India 1503.4215 2014 2022-09-16
## 5403 IN India 1415.8287 2013 2022-09-16
## 5404 IN India 1346.6759 2012 2022-09-16
## 5405 IN India 1292.8212 2011 2022-09-16
## 5406 IN India 1244.3660 2010 2022-09-16
## 5407 IN India 1162.4988 2009 2022-09-16
## 5408 IN India 1093.0766 2008 2022-09-16
## 5409 IN India 1075.9941 2007 2022-09-16
## 5410 IN India 1014.6276 2006 2022-09-16
## 5411 IN India 953.5680 2005 2022-09-16
## 5412 IN India 897.6282 2004 2022-09-16
## 5413 IN India 845.2748 2003 2022-09-16
## 5414 IN India 796.7248 2002 2022-09-16
## 5415 IN India 780.6062 2001 2022-09-16
## 5416 IN India 757.6687 2000 2022-09-16
## 5417 IN India 742.6590 1999 2022-09-16
## 5418 IN India 694.7353 1998 2022-09-16
## 5419 IN India 666.4202 1997 2022-09-16
## 5420 IN India 652.5661 1996 2022-09-16
## 5421 IN India 618.3678 1995 2022-09-16
## 5422 IN India 585.9646 1994 2022-09-16
## 5423 IN India 560.1619 1993 2022-09-16
## 5424 IN India 545.3995 1992 2022-09-16
## 5425 IN India 527.5145 1991 2022-09-16
## 5426 IN India 532.7546 1990 2022-09-16
## 5427 IN India 515.4106 1989 2022-09-16
## 5428 IN India 496.8561 1988 2022-09-16
## 5429 IN India 463.0558 1987 2022-09-16
## 5430 IN India 455.2282 1986 2022-09-16
## 5431 IN India 444.2327 1985 2022-09-16
## 5432 IN India 431.7030 1984 2022-09-16
## 5433 IN India 425.4725 1983 2022-09-16
## 5434 IN India 405.8766 1982 2022-09-16
## 5435 IN India 401.4846 1981 2022-09-16
## 5436 IN India 387.6409 1980 2022-09-16
## 5437 IN India 371.6631 1979 2022-09-16
## 5438 IN India 401.3125 1978 2022-09-16
## 5439 IN India 388.4075 1977 2022-09-16
## 5440 IN India 370.5288 1976 2022-09-16
## 5441 IN India 372.9646 1975 2022-09-16
## 5442 IN India 349.7257 1974 2022-09-16
## 5443 IN India 353.7833 1973 2022-09-16
## 5444 IN India 350.5610 1972 2022-09-16
## 5445 IN India 360.7175 1971 2022-09-16
## 5446 IN India 362.9911 1970 2022-09-16
## 5447 IN India 352.8832 1969 2022-09-16
## 5448 IN India 338.4326 1968 2022-09-16
## 5449 IN India 334.3330 1967 2022-09-16
## 5450 IN India 316.6193 1966 2022-09-16
## 5451 IN India 323.4641 1965 2022-09-16
## 5452 IN India 339.2037 1964 2022-09-16
## 5453 IN India 322.2841 1963 2022-09-16
## 5454 IN India 310.3767 1962 2022-09-16
## 5455 IN India 307.7279 1961 2022-09-16
## 5456 IN India 302.6718 1960 2022-09-16
## 5457 IQ Iraq 4465.7562 2021 2022-09-16
## 5458 IQ Iraq 4448.1837 2020 2022-09-16
## 5459 IQ Iraq 5132.7011 2019 2022-09-16
## 5460 IQ Iraq 4975.3810 2018 2022-09-16
## 5461 IQ Iraq 4961.4045 2017 2022-09-16
## 5462 IQ Iraq 5183.4090 2016 2022-09-16
## 5463 IQ Iraq 4688.3180 2015 2022-09-16
## 5464 IQ Iraq 4627.8348 2014 2022-09-16
## 5465 IQ Iraq 4793.5394 2013 2022-09-16
## 5466 IQ Iraq 4630.7365 2012 2022-09-16
## 5467 IQ Iraq 4218.3824 2011 2022-09-16
## 5468 IQ Iraq 4052.0626 2010 2022-09-16
## 5469 IQ Iraq 3909.2916 2009 2022-09-16
## 5470 IQ Iraq 3859.7582 2008 2022-09-16
## 5471 IQ Iraq 3626.9459 2007 2022-09-16
## 5472 IQ Iraq 3619.8859 2006 2022-09-16
## 5473 IQ Iraq 3493.3447 2005 2022-09-16
## 5474 IQ Iraq 3515.3468 2004 2022-09-16
## 5475 IQ Iraq 2351.7127 2003 2022-09-16
## 5476 IQ Iraq 3818.8454 2002 2022-09-16
## 5477 IQ Iraq 4284.2599 2001 2022-09-16
## 5478 IQ Iraq 4337.4172 2000 2022-09-16
## 5479 IQ Iraq 3822.8337 1999 2022-09-16
## 5480 IQ Iraq 3352.3078 1998 2022-09-16
## 5481 IQ Iraq 2564.0567 1997 2022-09-16
## 5482 IQ Iraq 2181.7028 1996 2022-09-16
## 5483 IQ Iraq 2026.9367 1995 2022-09-16
## 5484 IQ Iraq 2046.8220 1994 2022-09-16
## 5485 IQ Iraq 2031.6033 1993 2022-09-16
## 5486 IQ Iraq 1606.0967 1992 2022-09-16
## 5487 IQ Iraq 1246.0601 1991 2022-09-16
## 5488 IQ Iraq 3559.3958 1990 2022-09-16
## 5489 IQ Iraq 2311.6739 1989 2022-09-16
## 5490 IQ Iraq 2441.0423 1988 2022-09-16
## 5491 IQ Iraq 2494.8585 1987 2022-09-16
## 5492 IQ Iraq 2332.2944 1986 2022-09-16
## 5493 IQ Iraq 2279.4251 1985 2022-09-16
## 5494 IQ Iraq 2300.8062 1984 2022-09-16
## 5495 IQ Iraq 2394.5673 1983 2022-09-16
## 5496 IQ Iraq 2827.8357 1982 2022-09-16
## 5497 IQ Iraq 2809.5522 1981 2022-09-16
## 5498 IQ Iraq 2911.1778 1980 2022-09-16
## 5499 IQ Iraq 2402.9243 1979 2022-09-16
## 5500 IQ Iraq 2049.6262 1978 2022-09-16
## 5501 IQ Iraq 1806.9721 1977 2022-09-16
## 5502 IQ Iraq 1831.0814 1976 2022-09-16
## 5503 IQ Iraq 1614.0569 1975 2022-09-16
## 5504 IQ Iraq 1482.0868 1974 2022-09-16
## 5505 IQ Iraq 1318.5113 1973 2022-09-16
## 5506 IQ Iraq 1304.5560 1972 2022-09-16
## 5507 IQ Iraq 1299.7395 1971 2022-09-16
## 5508 IQ Iraq 1275.4670 1970 2022-09-16
## 5509 IQ Iraq 1262.3307 1969 2022-09-16
## 5510 IQ Iraq 1265.5606 1968 2022-09-16
## 5511 IQ Iraq NA 1967 2022-09-16
## 5512 IQ Iraq NA 1966 2022-09-16
## 5513 IQ Iraq NA 1965 2022-09-16
## 5514 IQ Iraq NA 1964 2022-09-16
## 5515 IQ Iraq NA 1963 2022-09-16
## 5516 IQ Iraq NA 1962 2022-09-16
## 5517 IQ Iraq NA 1961 2022-09-16
## 5518 IQ Iraq NA 1960 2022-09-16
## 5519 IR Iran, Islamic Rep. NA 2021 2022-09-16
## 5520 IR Iran, Islamic Rep. 5333.0468 2020 2022-09-16
## 5521 IR Iran, Islamic Rep. 5308.9199 2019 2022-09-16
## 5522 IR Iran, Islamic Rep. 5454.2978 2018 2022-09-16
## 5523 IR Iran, Islamic Rep. 5657.9701 2017 2022-09-16
## 5524 IR Iran, Islamic Rep. 5582.8929 2016 2022-09-16
## 5525 IR Iran, Islamic Rep. 5200.6808 2015 2022-09-16
## 5526 IR Iran, Islamic Rep. 5345.7619 2014 2022-09-16
## 5527 IR Iran, Islamic Rep. 5157.4390 2013 2022-09-16
## 5528 IR Iran, Islamic Rep. 5302.4615 2012 2022-09-16
## 5529 IR Iran, Islamic Rep. 5575.6823 2011 2022-09-16
## 5530 IR Iran, Islamic Rep. 5496.2153 2010 2022-09-16
## 5531 IR Iran, Islamic Rep. 5254.6868 2009 2022-09-16
## 5532 IR Iran, Islamic Rep. 5260.2910 2008 2022-09-16
## 5533 IR Iran, Islamic Rep. 5304.8047 2007 2022-09-16
## 5534 IR Iran, Islamic Rep. 4959.1250 2006 2022-09-16
## 5535 IR Iran, Islamic Rep. 4776.6324 2005 2022-09-16
## 5536 IR Iran, Islamic Rep. 4683.4273 2004 2022-09-16
## 5537 IR Iran, Islamic Rep. 4543.3451 2003 2022-09-16
## 5538 IR Iran, Islamic Rep. 4234.1401 2002 2022-09-16
## 5539 IR Iran, Islamic Rep. 3966.9104 2001 2022-09-16
## 5540 IR Iran, Islamic Rep. 3922.9801 2000 2022-09-16
## 5541 IR Iran, Islamic Rep. 3753.3704 1999 2022-09-16
## 5542 IR Iran, Islamic Rep. 3727.3642 1998 2022-09-16
## 5543 IR Iran, Islamic Rep. 3699.7361 1997 2022-09-16
## 5544 IR Iran, Islamic Rep. 3699.7454 1996 2022-09-16
## 5545 IR Iran, Islamic Rep. 3527.0761 1995 2022-09-16
## 5546 IR Iran, Islamic Rep. 3492.8114 1994 2022-09-16
## 5547 IR Iran, Islamic Rep. 3604.7255 1993 2022-09-16
## 5548 IR Iran, Islamic Rep. 3717.2602 1992 2022-09-16
## 5549 IR Iran, Islamic Rep. 3667.2927 1991 2022-09-16
## 5550 IR Iran, Islamic Rep. 3329.3427 1990 2022-09-16
## 5551 IR Iran, Islamic Rep. 3013.4466 1989 2022-09-16
## 5552 IR Iran, Islamic Rep. 2932.6665 1988 2022-09-16
## 5553 IR Iran, Islamic Rep. 3237.4683 1987 2022-09-16
## 5554 IR Iran, Islamic Rep. 3370.3431 1986 2022-09-16
## 5555 IR Iran, Islamic Rep. 3886.8462 1985 2022-09-16
## 5556 IR Iran, Islamic Rep. 3972.8642 1984 2022-09-16
## 5557 IR Iran, Islamic Rep. 4458.3349 1983 2022-09-16
## 5558 IR Iran, Islamic Rep. 4182.8169 1982 2022-09-16
## 5559 IR Iran, Islamic Rep. 3536.9540 1981 2022-09-16
## 5560 IR Iran, Islamic Rep. 3900.9984 1980 2022-09-16
## 5561 IR Iran, Islamic Rep. 5164.5636 1979 2022-09-16
## 5562 IR Iran, Islamic Rep. 6078.5546 1978 2022-09-16
## 5563 IR Iran, Islamic Rep. 7206.0896 1977 2022-09-16
## 5564 IR Iran, Islamic Rep. 7646.5411 1976 2022-09-16
## 5565 IR Iran, Islamic Rep. 6664.2317 1975 2022-09-16
## 5566 IR Iran, Islamic Rep. 6884.4567 1974 2022-09-16
## 5567 IR Iran, Islamic Rep. 6692.4212 1973 2022-09-16
## 5568 IR Iran, Islamic Rep. 6400.8765 1972 2022-09-16
## 5569 IR Iran, Islamic Rep. 5741.8658 1971 2022-09-16
## 5570 IR Iran, Islamic Rep. 5185.9089 1970 2022-09-16
## 5571 IR Iran, Islamic Rep. 4801.1459 1969 2022-09-16
## 5572 IR Iran, Islamic Rep. 4268.8354 1968 2022-09-16
## 5573 IR Iran, Islamic Rep. 3832.7082 1967 2022-09-16
## 5574 IR Iran, Islamic Rep. 3538.2671 1966 2022-09-16
## 5575 IR Iran, Islamic Rep. 3258.4008 1965 2022-09-16
## 5576 IR Iran, Islamic Rep. 2858.2137 1964 2022-09-16
## 5577 IR Iran, Islamic Rep. 2704.7339 1963 2022-09-16
## 5578 IR Iran, Islamic Rep. 2593.4866 1962 2022-09-16
## 5579 IR Iran, Islamic Rep. 2466.5733 1961 2022-09-16
## 5580 IR Iran, Islamic Rep. 2292.8891 1960 2022-09-16
## 5581 IS Iceland 54291.8701 2021 2022-09-16
## 5582 IS Iceland 53188.0398 2020 2022-09-16
## 5583 IS Iceland 57818.8595 2019 2022-09-16
## 5584 IS Iceland 57699.4589 2018 2022-09-16
## 5585 IS Iceland 56501.4577 2017 2022-09-16
## 5586 IS Iceland 55513.6423 2016 2022-09-16
## 5587 IS Iceland 52951.6815 2015 2022-09-16
## 5588 IS Iceland 51233.2440 2014 2022-09-16
## 5589 IS Iceland 50946.8163 2013 2022-09-16
## 5590 IS Iceland 49191.5744 2012 2022-09-16
## 5591 IS Iceland 48933.5457 2011 2022-09-16
## 5592 IS Iceland 48193.7014 2010 2022-09-16
## 5593 IS Iceland 49527.3988 2009 2022-09-16
## 5594 IS Iceland 53821.4708 2008 2022-09-16
## 5595 IS Iceland 53646.3690 2007 2022-09-16
## 5596 IS Iceland 50731.6907 2006 2022-09-16
## 5597 IS Iceland 48850.7659 2005 2022-09-16
## 5598 IS Iceland 46766.0169 2004 2022-09-16
## 5599 IS Iceland 43763.7756 2003 2022-09-16
## 5600 IS Iceland 43143.4606 2002 2022-09-16
## 5601 IS Iceland 43288.0763 2001 2022-09-16
## 5602 IS Iceland 42174.6651 2000 2022-09-16
## 5603 IS Iceland 40725.8860 1999 2022-09-16
## 5604 IS Iceland 39622.6070 1998 2022-09-16
## 5605 IS Iceland 37302.6717 1997 2022-09-16
## 5606 IS Iceland 35557.3100 1996 2022-09-16
## 5607 IS Iceland 34188.3821 1995 2022-09-16
## 5608 IS Iceland NA 1994 2022-09-16
## 5609 IS Iceland NA 1993 2022-09-16
## 5610 IS Iceland NA 1992 2022-09-16
## 5611 IS Iceland NA 1991 2022-09-16
## 5612 IS Iceland NA 1990 2022-09-16
## 5613 IS Iceland NA 1989 2022-09-16
## 5614 IS Iceland NA 1988 2022-09-16
## 5615 IS Iceland NA 1987 2022-09-16
## 5616 IS Iceland NA 1986 2022-09-16
## 5617 IS Iceland NA 1985 2022-09-16
## 5618 IS Iceland NA 1984 2022-09-16
## 5619 IS Iceland NA 1983 2022-09-16
## 5620 IS Iceland NA 1982 2022-09-16
## 5621 IS Iceland NA 1981 2022-09-16
## 5622 IS Iceland NA 1980 2022-09-16
## 5623 IS Iceland NA 1979 2022-09-16
## 5624 IS Iceland NA 1978 2022-09-16
## 5625 IS Iceland NA 1977 2022-09-16
## 5626 IS Iceland NA 1976 2022-09-16
## 5627 IS Iceland NA 1975 2022-09-16
## 5628 IS Iceland NA 1974 2022-09-16
## 5629 IS Iceland NA 1973 2022-09-16
## 5630 IS Iceland NA 1972 2022-09-16
## 5631 IS Iceland NA 1971 2022-09-16
## 5632 IS Iceland NA 1970 2022-09-16
## 5633 IS Iceland NA 1969 2022-09-16
## 5634 IS Iceland NA 1968 2022-09-16
## 5635 IS Iceland NA 1967 2022-09-16
## 5636 IS Iceland NA 1966 2022-09-16
## 5637 IS Iceland NA 1965 2022-09-16
## 5638 IS Iceland NA 1964 2022-09-16
## 5639 IS Iceland NA 1963 2022-09-16
## 5640 IS Iceland NA 1962 2022-09-16
## 5641 IS Iceland NA 1961 2022-09-16
## 5642 IS Iceland NA 1960 2022-09-16
## 5643 IT Italy 31511.7949 2021 2022-09-16
## 5644 IT Italy 29358.1294 2020 2022-09-16
## 5645 IT Italy 32119.7444 2019 2022-09-16
## 5646 IT Italy 31593.4803 2018 2022-09-16
## 5647 IT Italy 31244.2271 2017 2022-09-16
## 5648 IT Italy 30685.6459 2016 2022-09-16
## 5649 IT Italy 30242.3861 2015 2022-09-16
## 5650 IT Italy 29979.9187 2014 2022-09-16
## 5651 IT Italy 30257.6274 2013 2022-09-16
## 5652 IT Italy 31184.5584 2012 2022-09-16
## 5653 IT Italy 32229.4568 2011 2022-09-16
## 5654 IT Italy 32058.1740 2010 2022-09-16
## 5655 IT Italy 31615.2708 2009 2022-09-16
## 5656 IT Italy 33530.3601 2008 2022-09-16
## 5657 IT Italy 34081.0903 2007 2022-09-16
## 5658 IT Italy 33751.7000 2006 2022-09-16
## 5659 IT Italy 33257.7698 2005 2022-09-16
## 5660 IT Italy 33150.4762 2004 2022-09-16
## 5661 IT Italy 32897.3908 2003 2022-09-16
## 5662 IT Italy 32998.2032 2002 2022-09-16
## 5663 IT Italy 32963.6706 2001 2022-09-16
## 5664 IT Italy 32350.9044 2000 2022-09-16
## 5665 IT Italy 31184.6164 1999 2022-09-16
## 5666 IT Italy 30690.9117 1998 2022-09-16
## 5667 IT Italy 30153.7752 1997 2022-09-16
## 5668 IT Italy 29627.4869 1996 2022-09-16
## 5669 IT Italy 29265.0890 1995 2022-09-16
## 5670 IT Italy 28444.4103 1994 2022-09-16
## 5671 IT Italy 27851.1214 1993 2022-09-16
## 5672 IT Italy 28107.8590 1992 2022-09-16
## 5673 IT Italy 27894.2428 1991 2022-09-16
## 5674 IT Italy 27490.6320 1990 2022-09-16
## 5675 IT Italy 26977.9327 1989 2022-09-16
## 5676 IT Italy 26113.3555 1988 2022-09-16
## 5677 IT Italy 25074.2673 1987 2022-09-16
## 5678 IT Italy 24301.1434 1986 2022-09-16
## 5679 IT Italy 23626.7493 1985 2022-09-16
## 5680 IT Italy 22990.2903 1984 2022-09-16
## 5681 IT Italy 22276.8124 1983 2022-09-16
## 5682 IT Italy 22027.3545 1982 2022-09-16
## 5683 IT Italy 21952.8849 1981 2022-09-16
## 5684 IT Italy 21795.2545 1980 2022-09-16
## 5685 IT Italy 21115.9195 1979 2022-09-16
## 5686 IT Italy 19986.0626 1978 2022-09-16
## 5687 IT Italy 19427.9111 1977 2022-09-16
## 5688 IT Italy 19023.5042 1976 2022-09-16
## 5689 IT Italy 17846.9746 1975 2022-09-16
## 5690 IT Italy 18337.1606 1974 2022-09-16
## 5691 IT Italy 17495.2850 1973 2022-09-16
## 5692 IT Italy 16442.6580 1972 2022-09-16
## 5693 IT Italy 15947.7221 1971 2022-09-16
## 5694 IT Italy 15736.1836 1970 2022-09-16
## 5695 IT Italy 15027.8575 1969 2022-09-16
## 5696 IT Italy 14244.5255 1968 2022-09-16
## 5697 IT Italy 13454.2758 1967 2022-09-16
## 5698 IT Italy 12644.3214 1966 2022-09-16
## 5699 IT Italy 12023.4127 1965 2022-09-16
## 5700 IT Italy 11741.3794 1964 2022-09-16
## 5701 IT Italy 11516.1768 1963 2022-09-16
## 5702 IT Italy 10984.3107 1962 2022-09-16
## 5703 IT Italy 10412.9048 1961 2022-09-16
## 5704 IT Italy 9687.6470 1960 2022-09-16
## 5705 JG Channel Islands NA 2001 2022-09-16
## 5706 JG Channel Islands NA 2002 2022-09-16
## 5707 JG Channel Islands NA 1997 2022-09-16
## 5708 JG Channel Islands NA 2000 2022-09-16
## 5709 JG Channel Islands NA 1999 2022-09-16
## 5710 JG Channel Islands NA 1998 2022-09-16
## 5711 JG Channel Islands NA 1993 2022-09-16
## 5712 JG Channel Islands NA 1992 2022-09-16
## 5713 JG Channel Islands NA 1991 2022-09-16
## 5714 JG Channel Islands NA 1990 2022-09-16
## 5715 JG Channel Islands NA 1989 2022-09-16
## 5716 JG Channel Islands NA 1988 2022-09-16
## 5717 JG Channel Islands NA 1987 2022-09-16
## 5718 JG Channel Islands NA 1986 2022-09-16
## 5719 JG Channel Islands NA 1985 2022-09-16
## 5720 JG Channel Islands NA 1984 2022-09-16
## 5721 JG Channel Islands NA 1996 2022-09-16
## 5722 JG Channel Islands NA 1995 2022-09-16
## 5723 JG Channel Islands NA 1994 2022-09-16
## 5724 JG Channel Islands NA 1980 2022-09-16
## 5725 JG Channel Islands NA 1979 2022-09-16
## 5726 JG Channel Islands NA 1978 2022-09-16
## 5727 JG Channel Islands NA 1977 2022-09-16
## 5728 JG Channel Islands NA 1976 2022-09-16
## 5729 JG Channel Islands NA 1975 2022-09-16
## 5730 JG Channel Islands NA 1974 2022-09-16
## 5731 JG Channel Islands NA 1973 2022-09-16
## 5732 JG Channel Islands NA 1972 2022-09-16
## 5733 JG Channel Islands NA 1971 2022-09-16
## 5734 JG Channel Islands NA 1970 2022-09-16
## 5735 JG Channel Islands NA 1969 2022-09-16
## 5736 JG Channel Islands NA 1968 2022-09-16
## 5737 JG Channel Islands NA 1967 2022-09-16
## 5738 JG Channel Islands NA 1966 2022-09-16
## 5739 JG Channel Islands NA 1965 2022-09-16
## 5740 JG Channel Islands NA 1964 2022-09-16
## 5741 JG Channel Islands NA 1963 2022-09-16
## 5742 JG Channel Islands NA 1962 2022-09-16
## 5743 JG Channel Islands NA 1961 2022-09-16
## 5744 JG Channel Islands NA 1960 2022-09-16
## 5745 JG Channel Islands NA 2014 2022-09-16
## 5746 JG Channel Islands NA 2013 2022-09-16
## 5747 JG Channel Islands NA 2012 2022-09-16
## 5748 JG Channel Islands NA 1983 2022-09-16
## 5749 JG Channel Islands NA 1982 2022-09-16
## 5750 JG Channel Islands NA 1981 2022-09-16
## 5751 JG Channel Islands NA 2021 2022-09-16
## 5752 JG Channel Islands NA 2020 2022-09-16
## 5753 JG Channel Islands NA 2019 2022-09-16
## 5754 JG Channel Islands NA 2018 2022-09-16
## 5755 JG Channel Islands NA 2017 2022-09-16
## 5756 JG Channel Islands NA 2016 2022-09-16
## 5757 JG Channel Islands NA 2015 2022-09-16
## 5758 JG Channel Islands NA 2010 2022-09-16
## 5759 JG Channel Islands NA 2009 2022-09-16
## 5760 JG Channel Islands NA 2008 2022-09-16
## 5761 JG Channel Islands NA 2011 2022-09-16
## 5762 JG Channel Islands NA 2006 2022-09-16
## 5763 JG Channel Islands NA 2005 2022-09-16
## 5764 JG Channel Islands NA 2004 2022-09-16
## 5765 JG Channel Islands NA 2007 2022-09-16
## 5766 JG Channel Islands NA 2003 2022-09-16
## 5767 JM Jamaica 4728.1547 2021 2022-09-16
## 5768 JM Jamaica 4539.0019 2020 2022-09-16
## 5769 JM Jamaica 5065.3749 2019 2022-09-16
## 5770 JM Jamaica 5043.5408 2018 2022-09-16
## 5771 JM Jamaica 4973.7242 2017 2022-09-16
## 5772 JM Jamaica 4949.3695 2016 2022-09-16
## 5773 JM Jamaica 4907.9274 2015 2022-09-16
## 5774 JM Jamaica 4889.9863 2014 2022-09-16
## 5775 JM Jamaica 4884.3920 2013 2022-09-16
## 5776 JM Jamaica 4887.5870 2012 2022-09-16
## 5777 JM Jamaica 4945.9488 2011 2022-09-16
## 5778 JM Jamaica 4888.5791 2010 2022-09-16
## 5779 JM Jamaica 4986.8165 2009 2022-09-16
## 5780 JM Jamaica 5239.5328 2008 2022-09-16
## 5781 JM Jamaica 5308.4403 2007 2022-09-16
## 5782 JM Jamaica 5259.7481 2006 2022-09-16
## 5783 JM Jamaica 5138.4474 2005 2022-09-16
## 5784 JM Jamaica 5120.9294 2004 2022-09-16
## 5785 JM Jamaica 5083.0882 2003 2022-09-16
## 5786 JM Jamaica 4933.5343 2002 2022-09-16
## 5787 JM Jamaica 4869.7257 2001 2022-09-16
## 5788 JM Jamaica 4841.3157 2000 2022-09-16
## 5789 JM Jamaica 4839.2878 1999 2022-09-16
## 5790 JM Jamaica 4832.8088 1998 2022-09-16
## 5791 JM Jamaica 4996.1299 1997 2022-09-16
## 5792 JM Jamaica 5103.7046 1996 2022-09-16
## 5793 JM Jamaica 5159.7820 1995 2022-09-16
## 5794 JM Jamaica 5090.8676 1994 2022-09-16
## 5795 JM Jamaica 5070.8343 1993 2022-09-16
## 5796 JM Jamaica 4678.7281 1992 2022-09-16
## 5797 JM Jamaica 4629.8455 1991 2022-09-16
## 5798 JM Jamaica 4451.6351 1990 2022-09-16
## 5799 JM Jamaica 4301.3976 1989 2022-09-16
## 5800 JM Jamaica 4037.0953 1988 2022-09-16
## 5801 JM Jamaica 3905.6905 1987 2022-09-16
## 5802 JM Jamaica 3647.8654 1986 2022-09-16
## 5803 JM Jamaica 3615.1914 1985 2022-09-16
## 5804 JM Jamaica 3771.9037 1984 2022-09-16
## 5805 JM Jamaica 3889.3932 1983 2022-09-16
## 5806 JM Jamaica 3880.8908 1982 2022-09-16
## 5807 JM Jamaica 3866.4942 1981 2022-09-16
## 5808 JM Jamaica 3826.4259 1980 2022-09-16
## 5809 JM Jamaica 4115.5146 1979 2022-09-16
## 5810 JM Jamaica 4212.7039 1978 2022-09-16
## 5811 JM Jamaica 4265.7679 1977 2022-09-16
## 5812 JM Jamaica 4433.7629 1976 2022-09-16
## 5813 JM Jamaica 4815.9530 1975 2022-09-16
## 5814 JM Jamaica 4900.0935 1974 2022-09-16
## 5815 JM Jamaica 5197.9912 1973 2022-09-16
## 5816 JM Jamaica 5590.3075 1972 2022-09-16
## 5817 JM Jamaica 4813.8451 1971 2022-09-16
## 5818 JM Jamaica 4770.1075 1970 2022-09-16
## 5819 JM Jamaica 4316.3616 1969 2022-09-16
## 5820 JM Jamaica 4141.7029 1968 2022-09-16
## 5821 JM Jamaica 3965.6964 1967 2022-09-16
## 5822 JM Jamaica 3945.1294 1966 2022-09-16
## 5823 JM Jamaica NA 1965 2022-09-16
## 5824 JM Jamaica NA 1964 2022-09-16
## 5825 JM Jamaica NA 1963 2022-09-16
## 5826 JM Jamaica NA 1962 2022-09-16
## 5827 JM Jamaica NA 1961 2022-09-16
## 5828 JM Jamaica NA 1960 2022-09-16
## 5829 JO Jordan 4091.5742 2021 2022-09-16
## 5830 JO Jordan 4028.9630 2020 2022-09-16
## 5831 JO Jordan 4133.5498 2019 2022-09-16
## 5832 JO Jordan 4109.7524 2018 2022-09-16
## 5833 JO Jordan 4105.7210 2017 2022-09-16
## 5834 JO Jordan 4119.2521 2016 2022-09-16
## 5835 JO Jordan 4164.1088 2015 2022-09-16
## 5836 JO Jordan 4221.0895 2014 2022-09-16
## 5837 JO Jordan 4274.5479 2013 2022-09-16
## 5838 JO Jordan 4386.7451 2012 2022-09-16
## 5839 JO Jordan 4521.4081 2011 2022-09-16
## 5840 JO Jordan 4644.1694 2010 2022-09-16
## 5841 JO Jordan 4781.6051 2009 2022-09-16
## 5842 JO Jordan 4786.7485 2008 2022-09-16
## 5843 JO Jordan 4678.8351 2007 2022-09-16
## 5844 JO Jordan 4515.5911 2006 2022-09-16
## 5845 JO Jordan 4341.1887 2005 2022-09-16
## 5846 JO Jordan 4147.5374 2004 2022-09-16
## 5847 JO Jordan 3923.0338 2003 2022-09-16
## 5848 JO Jordan 3848.8236 2002 2022-09-16
## 5849 JO Jordan 3708.2526 2001 2022-09-16
## 5850 JO Jordan 3587.8267 2000 2022-09-16
## 5851 JO Jordan 3503.7685 1999 2022-09-16
## 5852 JO Jordan 3449.0697 1998 2022-09-16
## 5853 JO Jordan 3414.1222 1997 2022-09-16
## 5854 JO Jordan 3385.5652 1996 2022-09-16
## 5855 JO Jordan 3420.4252 1995 2022-09-16
## 5856 JO Jordan 3351.0536 1994 2022-09-16
## 5857 JO Jordan 3350.9916 1993 2022-09-16
## 5858 JO Jordan 3387.6082 1992 2022-09-16
## 5859 JO Jordan 3133.5850 1991 2022-09-16
## 5860 JO Jordan 3252.2835 1990 2022-09-16
## 5861 JO Jordan 3421.0725 1989 2022-09-16
## 5862 JO Jordan 4000.2639 1988 2022-09-16
## 5863 JO Jordan 4099.6661 1987 2022-09-16
## 5864 JO Jordan 4161.3900 1986 2022-09-16
## 5865 JO Jordan 4101.0051 1985 2022-09-16
## 5866 JO Jordan 4390.0978 1984 2022-09-16
## 5867 JO Jordan 4387.5692 1983 2022-09-16
## 5868 JO Jordan 4676.0190 1982 2022-09-16
## 5869 JO Jordan 4543.9207 1981 2022-09-16
## 5870 JO Jordan 4019.4323 1980 2022-09-16
## 5871 JO Jordan 3732.6271 1979 2022-09-16
## 5872 JO Jordan 3179.8407 1978 2022-09-16
## 5873 JO Jordan 2847.3300 1977 2022-09-16
## 5874 JO Jordan 2698.7217 1976 2022-09-16
## 5875 JO Jordan NA 1975 2022-09-16
## 5876 JO Jordan NA 1974 2022-09-16
## 5877 JO Jordan NA 1973 2022-09-16
## 5878 JO Jordan NA 1972 2022-09-16
## 5879 JO Jordan NA 1971 2022-09-16
## 5880 JO Jordan NA 1970 2022-09-16
## 5881 JO Jordan NA 1969 2022-09-16
## 5882 JO Jordan NA 1968 2022-09-16
## 5883 JO Jordan NA 1967 2022-09-16
## 5884 JO Jordan NA 1966 2022-09-16
## 5885 JO Jordan NA 1965 2022-09-16
## 5886 JO Jordan NA 1964 2022-09-16
## 5887 JO Jordan NA 1963 2022-09-16
## 5888 JO Jordan NA 1962 2022-09-16
## 5889 JO Jordan NA 1961 2022-09-16
## 5890 JO Jordan NA 1960 2022-09-16
## 5891 JP Japan 35278.4205 2021 2022-09-16
## 5892 JP Japan 34556.4399 2020 2022-09-16
## 5893 JP Japan 36081.0653 2019 2022-09-16
## 5894 JP Japan 36117.2277 2018 2022-09-16
## 5895 JP Japan 35861.9729 2017 2022-09-16
## 5896 JP Japan 35242.1994 2016 2022-09-16
## 5897 JP Japan 34960.6394 2015 2022-09-16
## 5898 JP Japan 34386.9059 2014 2022-09-16
## 5899 JP Japan 34239.8862 2013 2022-09-16
## 5900 JP Japan 33518.4449 2012 2022-09-16
## 5901 JP Japan 33011.1342 2011 2022-09-16
## 5902 JP Japan 32942.2021 2010 2022-09-16
## 5903 JP Japan 31651.0838 2009 2022-09-16
## 5904 JP Japan 33557.6454 2008 2022-09-16
## 5905 JP Japan 33990.0360 2007 2022-09-16
## 5906 JP Japan 33531.5186 2006 2022-09-16
## 5907 JP Japan 33098.5475 2005 2022-09-16
## 5908 JP Japan 32515.1158 2004 2022-09-16
## 5909 JP Japan 31830.2176 2003 2022-09-16
## 5910 JP Japan 31416.1242 2002 2022-09-16
## 5911 JP Japan 31476.0521 2001 2022-09-16
## 5912 JP Japan 31430.6311 2000 2022-09-16
## 5913 JP Japan 30636.2661 1999 2022-09-16
## 5914 JP Japan 30795.0889 1998 2022-09-16
## 5915 JP Japan 31276.1931 1997 2022-09-16
## 5916 JP Japan 31046.1702 1996 2022-09-16
## 5917 JP Japan 30171.1638 1995 2022-09-16
## 5918 JP Japan 29466.7552 1994 2022-09-16
## 5919 JP Japan 29232.4398 1993 2022-09-16
## 5920 JP Japan 29462.6540 1992 2022-09-16
## 5921 JP Japan 29308.2741 1991 2022-09-16
## 5922 JP Japan 28422.2131 1990 2022-09-16
## 5923 JP Japan 27199.9400 1989 2022-09-16
## 5924 JP Japan 26026.8649 1988 2022-09-16
## 5925 JP Japan 24503.0846 1987 2022-09-16
## 5926 JP Japan 23527.7125 1986 2022-09-16
## 5927 JP Japan 22898.9942 1985 2022-09-16
## 5928 JP Japan 21912.1519 1984 2022-09-16
## 5929 JP Japan 21122.9648 1983 2022-09-16
## 5930 JP Japan 20525.2959 1982 2022-09-16
## 5931 JP Japan 20011.8293 1981 2022-09-16
## 5932 JP Japan 19334.3747 1980 2022-09-16
## 5933 JP Japan 18953.3339 1979 2022-09-16
## 5934 JP Japan 18120.7284 1978 2022-09-16
## 5935 JP Japan 17370.6165 1977 2022-09-16
## 5936 JP Japan 16801.9250 1976 2022-09-16
## 5937 JP Japan 16333.6748 1975 2022-09-16
## 5938 JP Japan 16046.7847 1974 2022-09-16
## 5939 JP Japan 16463.2792 1973 2022-09-16
## 5940 JP Japan 15455.1369 1972 2022-09-16
## 5941 JP Japan 14456.8212 1971 2022-09-16
## 5942 JP Japan 14114.3158 1970 2022-09-16
## 5943 JP Japan 13935.6863 1969 2022-09-16
## 5944 JP Japan 12537.8809 1968 2022-09-16
## 5945 JP Japan 11232.9061 1967 2022-09-16
## 5946 JP Japan 10217.4142 1966 2022-09-16
## 5947 JP Japan 9319.7066 1965 2022-09-16
## 5948 JP Japan 8902.4956 1964 2022-09-16
## 5949 JP Japan 8055.0414 1963 2022-09-16
## 5950 JP Japan 7501.4454 1962 2022-09-16
## 5951 JP Japan 6952.1096 1961 2022-09-16
## 5952 JP Japan 6260.6760 1960 2022-09-16
## 5953 KE Kenya 1643.5691 2021 2022-09-16
## 5954 KE Kenya 1563.1787 2020 2022-09-16
## 5955 KE Kenya 1602.7884 2019 2022-09-16
## 5956 KE Kenya 1559.8591 2018 2022-09-16
## 5957 KE Kenya 1510.9081 2017 2022-09-16
## 5958 KE Kenya 1489.7588 2016 2022-09-16
## 5959 KE Kenya 1464.5540 2015 2022-09-16
## 5960 KE Kenya 1430.4452 2014 2022-09-16
## 5961 KE Kenya 1397.3787 2013 2022-09-16
## 5962 KE Kenya 1381.9687 2012 2022-09-16
## 5963 KE Kenya 1357.2536 2011 2022-09-16
## 5964 KE Kenya 1326.3858 2010 2022-09-16
## 5965 KE Kenya 1261.3485 2009 2022-09-16
## 5966 KE Kenya 1255.0251 2008 2022-09-16
## 5967 KE Kenya 1287.2498 2007 2022-09-16
## 5968 KE Kenya 1238.5370 2006 2022-09-16
## 5969 KE Kenya 1195.7738 2005 2022-09-16
## 5970 KE Kenya 1160.4385 2004 2022-09-16
## 5971 KE Kenya 1134.5349 2003 2022-09-16
## 5972 KE Kenya 1132.4865 2002 2022-09-16
## 5973 KE Kenya 1157.2956 2001 2022-09-16
## 5974 KE Kenya 1145.9846 2000 2022-09-16
## 5975 KE Kenya 1170.8674 1999 2022-09-16
## 5976 KE Kenya 1176.5758 1998 2022-09-16
## 5977 KE Kenya 1171.4251 1997 2022-09-16
## 5978 KE Kenya 1199.5812 1996 2022-09-16
## 5979 KE Kenya 1185.8785 1995 2022-09-16
## 5980 KE Kenya 1170.2971 1994 2022-09-16
## 5981 KE Kenya 1175.8021 1993 2022-09-16
## 5982 KE Kenya 1209.1433 1992 2022-09-16
## 5983 KE Kenya 1258.8705 1991 2022-09-16
## 5984 KE Kenya 1282.7183 1990 2022-09-16
## 5985 KE Kenya 1273.4876 1989 2022-09-16
## 5986 KE Kenya 1259.3385 1988 2022-09-16
## 5987 KE Kenya 1228.5713 1987 2022-09-16
## 5988 KE Kenya 1202.4312 1986 2022-09-16
## 5989 KE Kenya 1163.9825 1985 2022-09-16
## 5990 KE Kenya 1158.5776 1984 2022-09-16
## 5991 KE Kenya 1182.7388 1983 2022-09-16
## 5992 KE Kenya 1213.2317 1982 2022-09-16
## 5993 KE Kenya 1242.3275 1981 2022-09-16
## 5994 KE Kenya 1244.3078 1980 2022-09-16
## 5995 KE Kenya 1224.6169 1979 2022-09-16
## 5996 KE Kenya 1182.2928 1978 2022-09-16
## 5997 KE Kenya 1148.6450 1977 2022-09-16
## 5998 KE Kenya 1089.8312 1976 2022-09-16
## 5999 KE Kenya 1107.7436 1975 2022-09-16
## 6000 KE Kenya 1139.9186 1974 2022-09-16
## 6001 KE Kenya 1136.8101 1973 2022-09-16
## 6002 KE Kenya 1113.7002 1972 2022-09-16
## 6003 KE Kenya 986.3760 1971 2022-09-16
## 6004 KE Kenya 836.7620 1970 2022-09-16
## 6005 KE Kenya 909.0470 1969 2022-09-16
## 6006 KE Kenya 871.6486 1968 2022-09-16
## 6007 KE Kenya 835.1358 1967 2022-09-16
## 6008 KE Kenya 835.5380 1966 2022-09-16
## 6009 KE Kenya 752.8260 1965 2022-09-16
## 6010 KE Kenya 762.6027 1964 2022-09-16
## 6011 KE Kenya 750.4724 1963 2022-09-16
## 6012 KE Kenya 712.3702 1962 2022-09-16
## 6013 KE Kenya 671.7410 1961 2022-09-16
## 6014 KE Kenya 751.4767 1960 2022-09-16
## 6015 KG Kyrgyz Republic 1122.9701 2021 2022-09-16
## 6016 KG Kyrgyz Republic 1102.6644 2020 2022-09-16
## 6017 KG Kyrgyz Republic 1226.8245 2019 2022-09-16
## 6018 KG Kyrgyz Republic 1197.6107 2018 2022-09-16
## 6019 KG Kyrgyz Republic 1177.4387 2017 2022-09-16
## 6020 KG Kyrgyz Republic 1146.1032 2016 2022-09-16
## 6021 KG Kyrgyz Republic 1121.0828 2015 2022-09-16
## 6022 KG Kyrgyz Republic 1101.7053 2014 2022-09-16
## 6023 KG Kyrgyz Republic 1080.5482 2013 2022-09-16
## 6024 KG Kyrgyz Republic 993.7374 2012 2022-09-16
## 6025 KG Kyrgyz Republic 1011.3155 2011 2022-09-16
## 6026 KG Kyrgyz Republic 966.1507 2010 2022-09-16
## 6027 KG Kyrgyz Republic 982.3772 2009 2022-09-16
## 6028 KG Kyrgyz Republic 966.4154 2008 2022-09-16
## 6029 KG Kyrgyz Republic 900.0255 2007 2022-09-16
## 6030 KG Kyrgyz Republic 837.1338 2006 2022-09-16
## 6031 KG Kyrgyz Republic 820.7160 2005 2022-09-16
## 6032 KG Kyrgyz Republic 831.4843 2004 2022-09-16
## 6033 KG Kyrgyz Republic 786.3518 2003 2022-09-16
## 6034 KG Kyrgyz Republic 742.4437 2002 2022-09-16
## 6035 KG Kyrgyz Republic 749.4198 2001 2022-09-16
## 6036 KG Kyrgyz Republic 718.3373 2000 2022-09-16
## 6037 KG Kyrgyz Republic 689.4175 1999 2022-09-16
## 6038 KG Kyrgyz Republic 675.0605 1998 2022-09-16
## 6039 KG Kyrgyz Republic 671.2531 1997 2022-09-16
## 6040 KG Kyrgyz Republic 619.6729 1996 2022-09-16
## 6041 KG Kyrgyz Republic 587.3052 1995 2022-09-16
## 6042 KG Kyrgyz Republic 627.2168 1994 2022-09-16
## 6043 KG Kyrgyz Republic 784.5784 1993 2022-09-16
## 6044 KG Kyrgyz Republic 928.3156 1992 2022-09-16
## 6045 KG Kyrgyz Republic 1089.9085 1991 2022-09-16
## 6046 KG Kyrgyz Republic 1203.4821 1990 2022-09-16
## 6047 KG Kyrgyz Republic 1160.6762 1989 2022-09-16
## 6048 KG Kyrgyz Republic 1153.0252 1988 2022-09-16
## 6049 KG Kyrgyz Republic 1036.7103 1987 2022-09-16
## 6050 KG Kyrgyz Republic 1022.8667 1986 2022-09-16
## 6051 KG Kyrgyz Republic NA 1985 2022-09-16
## 6052 KG Kyrgyz Republic NA 1984 2022-09-16
## 6053 KG Kyrgyz Republic NA 1983 2022-09-16
## 6054 KG Kyrgyz Republic NA 1982 2022-09-16
## 6055 KG Kyrgyz Republic NA 1981 2022-09-16
## 6056 KG Kyrgyz Republic NA 1980 2022-09-16
## 6057 KG Kyrgyz Republic NA 1979 2022-09-16
## 6058 KG Kyrgyz Republic NA 1978 2022-09-16
## 6059 KG Kyrgyz Republic NA 1977 2022-09-16
## 6060 KG Kyrgyz Republic NA 1976 2022-09-16
## 6061 KG Kyrgyz Republic NA 1975 2022-09-16
## 6062 KG Kyrgyz Republic NA 1974 2022-09-16
## 6063 KG Kyrgyz Republic NA 1973 2022-09-16
## 6064 KG Kyrgyz Republic NA 1972 2022-09-16
## 6065 KG Kyrgyz Republic NA 1971 2022-09-16
## 6066 KG Kyrgyz Republic NA 1970 2022-09-16
## 6067 KG Kyrgyz Republic NA 1969 2022-09-16
## 6068 KG Kyrgyz Republic NA 1968 2022-09-16
## 6069 KG Kyrgyz Republic NA 1967 2022-09-16
## 6070 KG Kyrgyz Republic NA 1966 2022-09-16
## 6071 KG Kyrgyz Republic NA 1965 2022-09-16
## 6072 KG Kyrgyz Republic NA 1964 2022-09-16
## 6073 KG Kyrgyz Republic NA 1963 2022-09-16
## 6074 KG Kyrgyz Republic NA 1962 2022-09-16
## 6075 KG Kyrgyz Republic NA 1961 2022-09-16
## 6076 KG Kyrgyz Republic NA 1960 2022-09-16
## 6077 KH Cambodia NA 1980 2022-09-16
## 6078 KH Cambodia NA 1979 2022-09-16
## 6079 KH Cambodia NA 1978 2022-09-16
## 6080 KH Cambodia NA 1977 2022-09-16
## 6081 KH Cambodia 388.2880 1995 2022-09-16
## 6082 KH Cambodia 364.8811 1994 2022-09-16
## 6083 KH Cambodia 579.1964 1993 2022-09-16
## 6084 KH Cambodia NA 1992 2022-09-16
## 6085 KH Cambodia NA 1991 2022-09-16
## 6086 KH Cambodia NA 1990 2022-09-16
## 6087 KH Cambodia NA 1989 2022-09-16
## 6088 KH Cambodia NA 1988 2022-09-16
## 6089 KH Cambodia NA 1987 2022-09-16
## 6090 KH Cambodia NA 1986 2022-09-16
## 6091 KH Cambodia NA 1985 2022-09-16
## 6092 KH Cambodia NA 1984 2022-09-16
## 6093 KH Cambodia NA 1983 2022-09-16
## 6094 KH Cambodia NA 1982 2022-09-16
## 6095 KH Cambodia NA 1981 2022-09-16
## 6096 KH Cambodia 1399.7778 2021 2022-09-16
## 6097 KH Cambodia 1377.1451 2020 2022-09-16
## 6098 KH Cambodia 1441.1792 2019 2022-09-16
## 6099 KH Cambodia 1365.8291 2018 2022-09-16
## 6100 KH Cambodia NA 1976 2022-09-16
## 6101 KH Cambodia NA 1975 2022-09-16
## 6102 KH Cambodia NA 1974 2022-09-16
## 6103 KH Cambodia NA 1973 2022-09-16
## 6104 KH Cambodia NA 1972 2022-09-16
## 6105 KH Cambodia NA 1971 2022-09-16
## 6106 KH Cambodia NA 1970 2022-09-16
## 6107 KH Cambodia NA 1969 2022-09-16
## 6108 KH Cambodia NA 1968 2022-09-16
## 6109 KH Cambodia NA 1967 2022-09-16
## 6110 KH Cambodia NA 1966 2022-09-16
## 6111 KH Cambodia NA 1965 2022-09-16
## 6112 KH Cambodia NA 1964 2022-09-16
## 6113 KH Cambodia NA 1963 2022-09-16
## 6114 KH Cambodia NA 1962 2022-09-16
## 6115 KH Cambodia NA 1961 2022-09-16
## 6116 KH Cambodia NA 1960 2022-09-16
## 6117 KH Cambodia 486.5413 2000 2022-09-16
## 6118 KH Cambodia 452.3382 1999 2022-09-16
## 6119 KH Cambodia 411.2389 1998 2022-09-16
## 6120 KH Cambodia 403.3448 1997 2022-09-16
## 6121 KH Cambodia 398.9533 1996 2022-09-16
## 6122 KH Cambodia 854.9558 2009 2022-09-16
## 6123 KH Cambodia 867.1215 2008 2022-09-16
## 6124 KH Cambodia 824.8494 2007 2022-09-16
## 6125 KH Cambodia 759.6476 2006 2022-09-16
## 6126 KH Cambodia 696.3394 2005 2022-09-16
## 6127 KH Cambodia 1289.9858 2017 2022-09-16
## 6128 KH Cambodia 1224.2204 2016 2022-09-16
## 6129 KH Cambodia 1162.9050 2015 2022-09-16
## 6130 KH Cambodia 1104.7500 2014 2022-09-16
## 6131 KH Cambodia 1048.1325 2013 2022-09-16
## 6132 KH Cambodia 992.5498 2012 2022-09-16
## 6133 KH Cambodia 940.1118 2011 2022-09-16
## 6134 KH Cambodia 892.1004 2010 2022-09-16
## 6135 KH Cambodia 515.5754 2001 2022-09-16
## 6136 KH Cambodia 624.6039 2004 2022-09-16
## 6137 KH Cambodia 575.3292 2003 2022-09-16
## 6138 KH Cambodia 539.3939 2002 2022-09-16
## 6139 KI Kiribati NA 2021 2022-09-16
## 6140 KI Kiribati 1473.8880 2020 2022-09-16
## 6141 KI Kiribati 1505.1552 2019 2022-09-16
## 6142 KI Kiribati 1536.3918 2018 2022-09-16
## 6143 KI Kiribati 1481.0131 2017 2022-09-16
## 6144 KI Kiribati 1506.0717 2016 2022-09-16
## 6145 KI Kiribati 1535.1628 2015 2022-09-16
## 6146 KI Kiribati 1416.9879 2014 2022-09-16
## 6147 KI Kiribati 1452.6135 2013 2022-09-16
## 6148 KI Kiribati 1414.6117 2012 2022-09-16
## 6149 KI Kiribati 1366.3681 2011 2022-09-16
## 6150 KI Kiribati 1366.2480 2010 2022-09-16
## 6151 KI Kiribati 1409.1347 2009 2022-09-16
## 6152 KI Kiribati 1428.5993 2008 2022-09-16
## 6153 KI Kiribati 1492.8082 2007 2022-09-16
## 6154 KI Kiribati 1496.9987 2006 2022-09-16
## 6155 KI Kiribati 1530.5409 2005 2022-09-16
## 6156 KI Kiribati 1487.6743 2004 2022-09-16
## 6157 KI Kiribati 1540.5393 2003 2022-09-16
## 6158 KI Kiribati 1536.7393 2002 2022-09-16
## 6159 KI Kiribati 1505.9113 2001 2022-09-16
## 6160 KI Kiribati 1554.4447 2000 2022-09-16
## 6161 KI Kiribati 1488.3280 1999 2022-09-16
## 6162 KI Kiribati 1537.7344 1998 2022-09-16
## 6163 KI Kiribati 1467.7598 1997 2022-09-16
## 6164 KI Kiribati 1467.1914 1996 2022-09-16
## 6165 KI Kiribati 1464.7925 1995 2022-09-16
## 6166 KI Kiribati 1484.8152 1994 2022-09-16
## 6167 KI Kiribati 1478.0991 1993 2022-09-16
## 6168 KI Kiribati 1483.8583 1992 2022-09-16
## 6169 KI Kiribati 1492.4131 1991 2022-09-16
## 6170 KI Kiribati 1519.1715 1990 2022-09-16
## 6171 KI Kiribati 1565.9167 1989 2022-09-16
## 6172 KI Kiribati 1661.7097 1988 2022-09-16
## 6173 KI Kiribati 1563.7866 1987 2022-09-16
## 6174 KI Kiribati 1767.3313 1986 2022-09-16
## 6175 KI Kiribati 1824.2510 1985 2022-09-16
## 6176 KI Kiribati 1998.7974 1984 2022-09-16
## 6177 KI Kiribati 1937.7054 1983 2022-09-16
## 6178 KI Kiribati 1980.5690 1982 2022-09-16
## 6179 KI Kiribati 1878.0567 1981 2022-09-16
## 6180 KI Kiribati 1968.6319 1980 2022-09-16
## 6181 KI Kiribati 2391.2115 1979 2022-09-16
## 6182 KI Kiribati 2744.7145 1978 2022-09-16
## 6183 KI Kiribati 2756.8008 1977 2022-09-16
## 6184 KI Kiribati 2933.3680 1976 2022-09-16
## 6185 KI Kiribati 4064.3192 1975 2022-09-16
## 6186 KI Kiribati 3913.5107 1974 2022-09-16
## 6187 KI Kiribati 2732.3731 1973 2022-09-16
## 6188 KI Kiribati 2293.3710 1972 2022-09-16
## 6189 KI Kiribati 2077.5405 1971 2022-09-16
## 6190 KI Kiribati 2161.0309 1970 2022-09-16
## 6191 KI Kiribati NA 1969 2022-09-16
## 6192 KI Kiribati NA 1968 2022-09-16
## 6193 KI Kiribati NA 1967 2022-09-16
## 6194 KI Kiribati NA 1966 2022-09-16
## 6195 KI Kiribati NA 1965 2022-09-16
## 6196 KI Kiribati NA 1964 2022-09-16
## 6197 KI Kiribati NA 1963 2022-09-16
## 6198 KI Kiribati NA 1962 2022-09-16
## 6199 KI Kiribati NA 1961 2022-09-16
## 6200 KI Kiribati NA 1960 2022-09-16
## 6201 KM Comoros 1184.8265 2006 2022-09-16
## 6202 KM Comoros 1186.4482 2002 2022-09-16
## 6203 KM Comoros 1182.2081 2005 2022-09-16
## 6204 KM Comoros 1177.2964 2004 2022-09-16
## 6205 KM Comoros 1182.8843 2003 2022-09-16
## 6206 KM Comoros 1166.0182 2007 2022-09-16
## 6207 KM Comoros 1245.4062 1993 2022-09-16
## 6208 KM Comoros 1244.5638 1992 2022-09-16
## 6209 KM Comoros 1180.7723 1991 2022-09-16
## 6210 KM Comoros 1285.3384 1990 2022-09-16
## 6211 KM Comoros 1259.6720 1989 2022-09-16
## 6212 KM Comoros 1187.8264 2001 2022-09-16
## 6213 KM Comoros 1189.7190 2000 2022-09-16
## 6214 KM Comoros 1100.6977 1999 2022-09-16
## 6215 KM Comoros 1108.1425 1998 2022-09-16
## 6216 KM Comoros 1123.3771 1997 2022-09-16
## 6217 KM Comoros 1109.3164 1996 2022-09-16
## 6218 KM Comoros 1155.1110 1995 2022-09-16
## 6219 KM Comoros 1146.4887 1994 2022-09-16
## 6220 KM Comoros 1288.1395 1980 2022-09-16
## 6221 KM Comoros NA 1979 2022-09-16
## 6222 KM Comoros NA 1978 2022-09-16
## 6223 KM Comoros NA 1977 2022-09-16
## 6224 KM Comoros NA 1976 2022-09-16
## 6225 KM Comoros NA 1975 2022-09-16
## 6226 KM Comoros NA 1974 2022-09-16
## 6227 KM Comoros NA 1973 2022-09-16
## 6228 KM Comoros NA 1972 2022-09-16
## 6229 KM Comoros NA 1971 2022-09-16
## 6230 KM Comoros NA 1970 2022-09-16
## 6231 KM Comoros NA 1969 2022-09-16
## 6232 KM Comoros NA 1968 2022-09-16
## 6233 KM Comoros NA 1967 2022-09-16
## 6234 KM Comoros NA 1966 2022-09-16
## 6235 KM Comoros NA 1965 2022-09-16
## 6236 KM Comoros NA 1964 2022-09-16
## 6237 KM Comoros NA 1963 2022-09-16
## 6238 KM Comoros NA 1962 2022-09-16
## 6239 KM Comoros NA 1961 2022-09-16
## 6240 KM Comoros NA 1960 2022-09-16
## 6241 KM Comoros 1362.0276 1986 2022-09-16
## 6242 KM Comoros 1376.2949 1985 2022-09-16
## 6243 KM Comoros 1384.1077 1984 2022-09-16
## 6244 KM Comoros 1366.5159 1983 2022-09-16
## 6245 KM Comoros 1340.1220 1982 2022-09-16
## 6246 KM Comoros 1296.7028 1981 2022-09-16
## 6247 KM Comoros 1255.2382 2021 2022-09-16
## 6248 KM Comoros 1253.0445 2020 2022-09-16
## 6249 KM Comoros 1284.3523 2019 2022-09-16
## 6250 KM Comoros 1290.2869 2018 2022-09-16
## 6251 KM Comoros 1273.1344 2017 2022-09-16
## 6252 KM Comoros 1340.1978 1988 2022-09-16
## 6253 KM Comoros 1344.3388 1987 2022-09-16
## 6254 KM Comoros 1257.6825 2014 2022-09-16
## 6255 KM Comoros 1261.4331 2013 2022-09-16
## 6256 KM Comoros 1236.9389 2012 2022-09-16
## 6257 KM Comoros 1228.2846 2011 2022-09-16
## 6258 KM Comoros 1208.2845 2010 2022-09-16
## 6259 KM Comoros 1192.7394 2009 2022-09-16
## 6260 KM Comoros 1183.4668 2008 2022-09-16
## 6261 KM Comoros 1254.5372 2016 2022-09-16
## 6262 KM Comoros 1242.5856 2015 2022-09-16
## 6263 KN St. Kitts and Nevis 17112.2076 2021 2022-09-16
## 6264 KN St. Kitts and Nevis 17404.4136 2020 2022-09-16
## 6265 KN St. Kitts and Nevis 20472.3844 2019 2022-09-16
## 6266 KN St. Kitts and Nevis 19681.4914 2018 2022-09-16
## 6267 KN St. Kitts and Nevis 19317.7874 2017 2022-09-16
## 6268 KN St. Kitts and Nevis 19288.0577 2016 2022-09-16
## 6269 KN St. Kitts and Nevis 18717.4288 2015 2022-09-16
## 6270 KN St. Kitts and Nevis 18740.9030 2014 2022-09-16
## 6271 KN St. Kitts and Nevis 17574.3069 2013 2022-09-16
## 6272 KN St. Kitts and Nevis 16774.6987 2012 2022-09-16
## 6273 KN St. Kitts and Nevis 17011.5776 2011 2022-09-16
## 6274 KN St. Kitts and Nevis 16888.1393 2010 2022-09-16
## 6275 KN St. Kitts and Nevis 17023.8704 2009 2022-09-16
## 6276 KN St. Kitts and Nevis 17773.2447 2008 2022-09-16
## 6277 KN St. Kitts and Nevis 16123.0952 2007 2022-09-16
## 6278 KN St. Kitts and Nevis 16174.4661 2006 2022-09-16
## 6279 KN St. Kitts and Nevis 15841.4530 2005 2022-09-16
## 6280 KN St. Kitts and Nevis 14601.2463 2004 2022-09-16
## 6281 KN St. Kitts and Nevis 14216.3111 2003 2022-09-16
## 6282 KN St. Kitts and Nevis 14988.7432 2002 2022-09-16
## 6283 KN St. Kitts and Nevis 14974.1469 2001 2022-09-16
## 6284 KN St. Kitts and Nevis 14394.2467 2000 2022-09-16
## 6285 KN St. Kitts and Nevis 13218.8247 1999 2022-09-16
## 6286 KN St. Kitts and Nevis 12924.0919 1998 2022-09-16
## 6287 KN St. Kitts and Nevis 13098.8251 1997 2022-09-16
## 6288 KN St. Kitts and Nevis 12373.2190 1996 2022-09-16
## 6289 KN St. Kitts and Nevis 11799.9228 1995 2022-09-16
## 6290 KN St. Kitts and Nevis 11320.6557 1994 2022-09-16
## 6291 KN St. Kitts and Nevis 10875.3310 1993 2022-09-16
## 6292 KN St. Kitts and Nevis 10295.3185 1992 2022-09-16
## 6293 KN St. Kitts and Nevis 9949.6082 1991 2022-09-16
## 6294 KN St. Kitts and Nevis 10169.1341 1990 2022-09-16
## 6295 KN St. Kitts and Nevis 9673.6386 1989 2022-09-16
## 6296 KN St. Kitts and Nevis 9108.1104 1988 2022-09-16
## 6297 KN St. Kitts and Nevis 8255.9242 1987 2022-09-16
## 6298 KN St. Kitts and Nevis 7666.5592 1986 2022-09-16
## 6299 KN St. Kitts and Nevis 6850.4835 1985 2022-09-16
## 6300 KN St. Kitts and Nevis 6262.4418 1984 2022-09-16
## 6301 KN St. Kitts and Nevis 5714.6579 1983 2022-09-16
## 6302 KN St. Kitts and Nevis 5613.8030 1982 2022-09-16
## 6303 KN St. Kitts and Nevis 5553.3321 1981 2022-09-16
## 6304 KN St. Kitts and Nevis 5438.6081 1980 2022-09-16
## 6305 KN St. Kitts and Nevis 4986.3390 1979 2022-09-16
## 6306 KN St. Kitts and Nevis 4607.6283 1978 2022-09-16
## 6307 KN St. Kitts and Nevis 4409.9346 1977 2022-09-16
## 6308 KN St. Kitts and Nevis NA 1976 2022-09-16
## 6309 KN St. Kitts and Nevis NA 1975 2022-09-16
## 6310 KN St. Kitts and Nevis NA 1974 2022-09-16
## 6311 KN St. Kitts and Nevis NA 1973 2022-09-16
## 6312 KN St. Kitts and Nevis NA 1972 2022-09-16
## 6313 KN St. Kitts and Nevis NA 1971 2022-09-16
## 6314 KN St. Kitts and Nevis NA 1970 2022-09-16
## 6315 KN St. Kitts and Nevis NA 1969 2022-09-16
## 6316 KN St. Kitts and Nevis NA 1968 2022-09-16
## 6317 KN St. Kitts and Nevis NA 1967 2022-09-16
## 6318 KN St. Kitts and Nevis NA 1966 2022-09-16
## 6319 KN St. Kitts and Nevis NA 1965 2022-09-16
## 6320 KN St. Kitts and Nevis NA 1964 2022-09-16
## 6321 KN St. Kitts and Nevis NA 1963 2022-09-16
## 6322 KN St. Kitts and Nevis NA 1962 2022-09-16
## 6323 KN St. Kitts and Nevis NA 1961 2022-09-16
## 6324 KN St. Kitts and Nevis NA 1960 2022-09-16
## 6325 KP Korea, Dem. People's Rep. NA 2021 2022-09-16
## 6326 KP Korea, Dem. People's Rep. NA 2020 2022-09-16
## 6327 KP Korea, Dem. People's Rep. NA 2019 2022-09-16
## 6328 KP Korea, Dem. People's Rep. NA 2018 2022-09-16
## 6329 KP Korea, Dem. People's Rep. NA 2017 2022-09-16
## 6330 KP Korea, Dem. People's Rep. NA 2016 2022-09-16
## 6331 KP Korea, Dem. People's Rep. NA 2015 2022-09-16
## 6332 KP Korea, Dem. People's Rep. NA 2014 2022-09-16
## 6333 KP Korea, Dem. People's Rep. NA 2013 2022-09-16
## 6334 KP Korea, Dem. People's Rep. NA 2012 2022-09-16
## 6335 KP Korea, Dem. People's Rep. NA 2011 2022-09-16
## 6336 KP Korea, Dem. People's Rep. NA 2010 2022-09-16
## 6337 KP Korea, Dem. People's Rep. NA 2009 2022-09-16
## 6338 KP Korea, Dem. People's Rep. NA 2008 2022-09-16
## 6339 KP Korea, Dem. People's Rep. NA 2007 2022-09-16
## 6340 KP Korea, Dem. People's Rep. NA 2006 2022-09-16
## 6341 KP Korea, Dem. People's Rep. NA 2005 2022-09-16
## 6342 KP Korea, Dem. People's Rep. NA 2004 2022-09-16
## 6343 KP Korea, Dem. People's Rep. NA 2003 2022-09-16
## 6344 KP Korea, Dem. People's Rep. NA 2002 2022-09-16
## 6345 KP Korea, Dem. People's Rep. NA 2001 2022-09-16
## 6346 KP Korea, Dem. People's Rep. NA 2000 2022-09-16
## 6347 KP Korea, Dem. People's Rep. NA 1999 2022-09-16
## 6348 KP Korea, Dem. People's Rep. NA 1998 2022-09-16
## 6349 KP Korea, Dem. People's Rep. NA 1997 2022-09-16
## 6350 KP Korea, Dem. People's Rep. NA 1996 2022-09-16
## 6351 KP Korea, Dem. People's Rep. NA 1995 2022-09-16
## 6352 KP Korea, Dem. People's Rep. NA 1994 2022-09-16
## 6353 KP Korea, Dem. People's Rep. NA 1993 2022-09-16
## 6354 KP Korea, Dem. People's Rep. NA 1992 2022-09-16
## 6355 KP Korea, Dem. People's Rep. NA 1991 2022-09-16
## 6356 KP Korea, Dem. People's Rep. NA 1990 2022-09-16
## 6357 KP Korea, Dem. People's Rep. NA 1989 2022-09-16
## 6358 KP Korea, Dem. People's Rep. NA 1988 2022-09-16
## 6359 KP Korea, Dem. People's Rep. NA 1987 2022-09-16
## 6360 KP Korea, Dem. People's Rep. NA 1986 2022-09-16
## 6361 KP Korea, Dem. People's Rep. NA 1985 2022-09-16
## 6362 KP Korea, Dem. People's Rep. NA 1984 2022-09-16
## 6363 KP Korea, Dem. People's Rep. NA 1983 2022-09-16
## 6364 KP Korea, Dem. People's Rep. NA 1982 2022-09-16
## 6365 KP Korea, Dem. People's Rep. NA 1981 2022-09-16
## 6366 KP Korea, Dem. People's Rep. NA 1980 2022-09-16
## 6367 KP Korea, Dem. People's Rep. NA 1979 2022-09-16
## 6368 KP Korea, Dem. People's Rep. NA 1978 2022-09-16
## 6369 KP Korea, Dem. People's Rep. NA 1977 2022-09-16
## 6370 KP Korea, Dem. People's Rep. NA 1976 2022-09-16
## 6371 KP Korea, Dem. People's Rep. NA 1975 2022-09-16
## 6372 KP Korea, Dem. People's Rep. NA 1974 2022-09-16
## 6373 KP Korea, Dem. People's Rep. NA 1973 2022-09-16
## 6374 KP Korea, Dem. People's Rep. NA 1972 2022-09-16
## 6375 KP Korea, Dem. People's Rep. NA 1971 2022-09-16
## 6376 KP Korea, Dem. People's Rep. NA 1970 2022-09-16
## 6377 KP Korea, Dem. People's Rep. NA 1969 2022-09-16
## 6378 KP Korea, Dem. People's Rep. NA 1968 2022-09-16
## 6379 KP Korea, Dem. People's Rep. NA 1967 2022-09-16
## 6380 KP Korea, Dem. People's Rep. NA 1966 2022-09-16
## 6381 KP Korea, Dem. People's Rep. NA 1965 2022-09-16
## 6382 KP Korea, Dem. People's Rep. NA 1964 2022-09-16
## 6383 KP Korea, Dem. People's Rep. NA 1963 2022-09-16
## 6384 KP Korea, Dem. People's Rep. NA 1962 2022-09-16
## 6385 KP Korea, Dem. People's Rep. NA 1961 2022-09-16
## 6386 KP Korea, Dem. People's Rep. NA 1960 2022-09-16
## 6387 KR Korea, Rep. 32644.6714 2021 2022-09-16
## 6388 KR Korea, Rep. 31327.4094 2020 2022-09-16
## 6389 KR Korea, Rep. 31640.2146 2019 2022-09-16
## 6390 KR Korea, Rep. 31053.6379 2018 2022-09-16
## 6391 KR Korea, Rep. 30307.3952 2017 2022-09-16
## 6392 KR Korea, Rep. 29461.7840 2016 2022-09-16
## 6393 KR Korea, Rep. 28732.2311 2015 2022-09-16
## 6394 KR Korea, Rep. 28094.9177 2014 2022-09-16
## 6395 KR Korea, Rep. 27394.6503 2013 2022-09-16
## 6396 KR Korea, Rep. 26675.4402 2012 2022-09-16
## 6397 KR Korea, Rep. 26186.8975 2011 2022-09-16
## 6398 KR Korea, Rep. 25451.0042 2010 2022-09-16
## 6399 KR Korea, Rep. 23948.4722 2009 2022-09-16
## 6400 KR Korea, Rep. 23882.7305 2008 2022-09-16
## 6401 KR Korea, Rep. 23360.9057 2007 2022-09-16
## 6402 KR Korea, Rep. 22192.1851 2006 2022-09-16
## 6403 KR Korea, Rep. 21193.3575 2005 2022-09-16
## 6404 KR Korea, Rep. 20361.0693 2004 2022-09-16
## 6405 KR Korea, Rep. 19431.9711 2003 2022-09-16
## 6406 KR Korea, Rep. 18936.9517 2002 2022-09-16
## 6407 KR Korea, Rep. 17680.8455 2001 2022-09-16
## 6408 KR Korea, Rep. 16992.4791 2000 2022-09-16
## 6409 KR Korea, Rep. 15711.5640 1999 2022-09-16
## 6410 KR Korea, Rep. 14195.8131 1998 2022-09-16
## 6411 KR Korea, Rep. 15071.7564 1997 2022-09-16
## 6412 KR Korea, Rep. 14329.5393 1996 2022-09-16
## 6413 KR Korea, Rep. 13408.6814 1995 2022-09-16
## 6414 KR Korea, Rep. 12356.2783 1994 2022-09-16
## 6415 KR Korea, Rep. 11422.5147 1993 2022-09-16
## 6416 KR Korea, Rep. 10796.6047 1992 2022-09-16
## 6417 KR Korea, Rep. 10272.6207 1991 2022-09-16
## 6418 KR Korea, Rep. 9365.3950 1990 2022-09-16
## 6419 KR Korea, Rep. 8607.8658 1989 2022-09-16
## 6420 KR Korea, Rep. 8119.1680 1988 2022-09-16
## 6421 KR Korea, Rep. 7321.3928 1987 2022-09-16
## 6422 KR Korea, Rep. 6559.2907 1986 2022-09-16
## 6423 KR Korea, Rep. 5950.8004 1985 2022-09-16
## 6424 KR Korea, Rep. 5572.8326 1984 2022-09-16
## 6425 KR Korea, Rep. 5103.5230 1983 2022-09-16
## 6426 KR Korea, Rep. 4568.2591 1982 2022-09-16
## 6427 KR Korea, Rep. 4282.3434 1981 2022-09-16
## 6428 KR Korea, Rep. 4055.7908 1980 2022-09-16
## 6429 KR Korea, Rep. 4188.4223 1979 2022-09-16
## 6430 KR Korea, Rep. 3913.1239 1978 2022-09-16
## 6431 KR Korea, Rep. 3580.8192 1977 2022-09-16
## 6432 KR Korea, Rep. 3237.6830 1976 2022-09-16
## 6433 KR Korea, Rep. 2905.6238 1975 2022-09-16
## 6434 KR Korea, Rep. 2740.0886 1974 2022-09-16
## 6435 KR Korea, Rep. 2545.3162 1973 2022-09-16
## 6436 KR Korea, Rep. 2254.7980 1972 2022-09-16
## 6437 KR Korea, Rep. 2142.9007 1971 2022-09-16
## 6438 KR Korea, Rep. 1977.0710 1970 2022-09-16
## 6439 KR Korea, Rep. 1836.1459 1969 2022-09-16
## 6440 KR Korea, Rep. 1639.4530 1968 2022-09-16
## 6441 KR Korea, Rep. 1482.7265 1967 2022-09-16
## 6442 KR Korea, Rep. 1391.4202 1966 2022-09-16
## 6443 KR Korea, Rep. 1274.0415 1965 2022-09-16
## 6444 KR Korea, Rep. 1217.7263 1964 2022-09-16
## 6445 KR Korea, Rep. 1141.8207 1963 2022-09-16
## 6446 KR Korea, Rep. 1076.9208 1962 2022-09-16
## 6447 KR Korea, Rep. 1066.6105 1961 2022-09-16
## 6448 KR Korea, Rep. 1027.4685 1960 2022-09-16
## 6449 KW Kuwait NA 2021 2022-09-16
## 6450 KW Kuwait 24429.2205 2020 2022-09-16
## 6451 KW Kuwait 27207.1318 2019 2022-09-16
## 6452 KW Kuwait 27819.4480 2018 2022-09-16
## 6453 KW Kuwait 27702.1879 2017 2022-09-16
## 6454 KW Kuwait 29801.2380 2016 2022-09-16
## 6455 KW Kuwait 29869.5528 2015 2022-09-16
## 6456 KW Kuwait 30857.1604 2014 2022-09-16
## 6457 KW Kuwait 32136.1332 2013 2022-09-16
## 6458 KW Kuwait 33455.2390 2012 2022-09-16
## 6459 KW Kuwait 33166.9196 2011 2022-09-16
## 6460 KW Kuwait 32035.3785 2010 2022-09-16
## 6461 KW Kuwait 34800.3088 2009 2022-09-16
## 6462 KW Kuwait 39777.2869 2008 2022-09-16
## 6463 KW Kuwait 41170.6708 2007 2022-09-16
## 6464 KW Kuwait 40976.6769 2006 2022-09-16
## 6465 KW Kuwait 39849.5969 2005 2022-09-16
## 6466 KW Kuwait 37168.5540 2004 2022-09-16
## 6467 KW Kuwait 34322.2468 2003 2022-09-16
## 6468 KW Kuwait 29590.9721 2002 2022-09-16
## 6469 KW Kuwait 29185.6140 2001 2022-09-16
## 6470 KW Kuwait 29951.5666 2000 2022-09-16
## 6471 KW Kuwait 29978.8255 1999 2022-09-16
## 6472 KW Kuwait 32534.0128 1998 2022-09-16
## 6473 KW Kuwait 33602.6468 1997 2022-09-16
## 6474 KW Kuwait 34472.6275 1996 2022-09-16
## 6475 KW Kuwait 34712.3110 1995 2022-09-16
## 6476 KW Kuwait NA 1994 2022-09-16
## 6477 KW Kuwait NA 1993 2022-09-16
## 6478 KW Kuwait NA 1992 2022-09-16
## 6479 KW Kuwait NA 1991 2022-09-16
## 6480 KW Kuwait NA 1990 2022-09-16
## 6481 KW Kuwait NA 1989 2022-09-16
## 6482 KW Kuwait NA 1988 2022-09-16
## 6483 KW Kuwait NA 1987 2022-09-16
## 6484 KW Kuwait NA 1986 2022-09-16
## 6485 KW Kuwait NA 1985 2022-09-16
## 6486 KW Kuwait NA 1984 2022-09-16
## 6487 KW Kuwait NA 1983 2022-09-16
## 6488 KW Kuwait NA 1982 2022-09-16
## 6489 KW Kuwait NA 1981 2022-09-16
## 6490 KW Kuwait NA 1980 2022-09-16
## 6491 KW Kuwait NA 1979 2022-09-16
## 6492 KW Kuwait NA 1978 2022-09-16
## 6493 KW Kuwait NA 1977 2022-09-16
## 6494 KW Kuwait NA 1976 2022-09-16
## 6495 KW Kuwait NA 1975 2022-09-16
## 6496 KW Kuwait NA 1974 2022-09-16
## 6497 KW Kuwait NA 1973 2022-09-16
## 6498 KW Kuwait NA 1972 2022-09-16
## 6499 KW Kuwait NA 1971 2022-09-16
## 6500 KW Kuwait NA 1970 2022-09-16
## 6501 KW Kuwait NA 1969 2022-09-16
## 6502 KW Kuwait NA 1968 2022-09-16
## 6503 KW Kuwait NA 1967 2022-09-16
## 6504 KW Kuwait NA 1966 2022-09-16
## 6505 KW Kuwait NA 1965 2022-09-16
## 6506 KW Kuwait NA 1964 2022-09-16
## 6507 KW Kuwait NA 1963 2022-09-16
## 6508 KW Kuwait NA 1962 2022-09-16
## 6509 KW Kuwait NA 1961 2022-09-16
## 6510 KW Kuwait NA 1960 2022-09-16
## 6511 KY Cayman Islands 79133.8002 2017 2022-09-16
## 6512 KY Cayman Islands 76284.1943 2015 2022-09-16
## 6513 KY Cayman Islands 75246.8262 2014 2022-09-16
## 6514 KY Cayman Islands 74420.1192 2013 2022-09-16
## 6515 KY Cayman Islands 77694.6107 2016 2022-09-16
## 6516 KY Cayman Islands 91434.5367 2007 2022-09-16
## 6517 KY Cayman Islands 91341.2941 2006 2022-09-16
## 6518 KY Cayman Islands NA 2005 2022-09-16
## 6519 KY Cayman Islands NA 2004 2022-09-16
## 6520 KY Cayman Islands NA 2003 2022-09-16
## 6521 KY Cayman Islands NA 2002 2022-09-16
## 6522 KY Cayman Islands NA 2001 2022-09-16
## 6523 KY Cayman Islands NA 2000 2022-09-16
## 6524 KY Cayman Islands 74688.8864 2012 2022-09-16
## 6525 KY Cayman Islands 75165.9870 2011 2022-09-16
## 6526 KY Cayman Islands 75877.1675 2010 2022-09-16
## 6527 KY Cayman Islands 79899.9647 2009 2022-09-16
## 6528 KY Cayman Islands 88476.1416 2008 2022-09-16
## 6529 KY Cayman Islands NA 2021 2022-09-16
## 6530 KY Cayman Islands 77959.1105 2020 2022-09-16
## 6531 KY Cayman Islands 83639.8336 2019 2022-09-16
## 6532 KY Cayman Islands 81494.8887 2018 2022-09-16
## 6533 KY Cayman Islands NA 1978 2022-09-16
## 6534 KY Cayman Islands NA 1977 2022-09-16
## 6535 KY Cayman Islands NA 1976 2022-09-16
## 6536 KY Cayman Islands NA 1975 2022-09-16
## 6537 KY Cayman Islands NA 1974 2022-09-16
## 6538 KY Cayman Islands NA 1973 2022-09-16
## 6539 KY Cayman Islands NA 1972 2022-09-16
## 6540 KY Cayman Islands NA 1971 2022-09-16
## 6541 KY Cayman Islands NA 1970 2022-09-16
## 6542 KY Cayman Islands NA 1969 2022-09-16
## 6543 KY Cayman Islands NA 1968 2022-09-16
## 6544 KY Cayman Islands NA 1967 2022-09-16
## 6545 KY Cayman Islands NA 1966 2022-09-16
## 6546 KY Cayman Islands NA 1965 2022-09-16
## 6547 KY Cayman Islands NA 1964 2022-09-16
## 6548 KY Cayman Islands NA 1963 2022-09-16
## 6549 KY Cayman Islands NA 1962 2022-09-16
## 6550 KY Cayman Islands NA 1961 2022-09-16
## 6551 KY Cayman Islands NA 1960 2022-09-16
## 6552 KY Cayman Islands NA 1999 2022-09-16
## 6553 KY Cayman Islands NA 1998 2022-09-16
## 6554 KY Cayman Islands NA 1997 2022-09-16
## 6555 KY Cayman Islands NA 1996 2022-09-16
## 6556 KY Cayman Islands NA 1995 2022-09-16
## 6557 KY Cayman Islands NA 1994 2022-09-16
## 6558 KY Cayman Islands NA 1993 2022-09-16
## 6559 KY Cayman Islands NA 1992 2022-09-16
## 6560 KY Cayman Islands NA 1991 2022-09-16
## 6561 KY Cayman Islands NA 1990 2022-09-16
## 6562 KY Cayman Islands NA 1989 2022-09-16
## 6563 KY Cayman Islands NA 1988 2022-09-16
## 6564 KY Cayman Islands NA 1987 2022-09-16
## 6565 KY Cayman Islands NA 1986 2022-09-16
## 6566 KY Cayman Islands NA 1985 2022-09-16
## 6567 KY Cayman Islands NA 1984 2022-09-16
## 6568 KY Cayman Islands NA 1983 2022-09-16
## 6569 KY Cayman Islands NA 1982 2022-09-16
## 6570 KY Cayman Islands NA 1981 2022-09-16
## 6571 KY Cayman Islands NA 1980 2022-09-16
## 6572 KY Cayman Islands NA 1979 2022-09-16
## 6573 KZ Kazakhstan 11264.9126 2021 2022-09-16
## 6574 KZ Kazakhstan 10974.2463 2020 2022-09-16
## 6575 KZ Kazakhstan 11402.7601 2019 2022-09-16
## 6576 KZ Kazakhstan 11053.3621 2018 2022-09-16
## 6577 KZ Kazakhstan 10758.5209 2017 2022-09-16
## 6578 KZ Kazakhstan 10476.3476 2016 2022-09-16
## 6579 KZ Kazakhstan 10510.7719 2015 2022-09-16
## 6580 KZ Kazakhstan 10539.0447 2014 2022-09-16
## 6581 KZ Kazakhstan 10264.2981 2013 2022-09-16
## 6582 KZ Kazakhstan 9823.6939 2012 2022-09-16
## 6583 KZ Kazakhstan 9506.7341 2011 2022-09-16
## 6584 KZ Kazakhstan 8979.3323 2010 2022-09-16
## 6585 KZ Kazakhstan 8487.5448 2009 2022-09-16
## 6586 KZ Kazakhstan 8554.8236 2008 2022-09-16
## 6587 KZ Kazakhstan 8438.1046 2007 2022-09-16
## 6588 KZ Kazakhstan 7837.6291 2006 2022-09-16
## 6589 KZ Kazakhstan 7155.3437 2005 2022-09-16
## 6590 KZ Kazakhstan 6580.8850 2004 2022-09-16
## 6591 KZ Kazakhstan 6046.3280 2003 2022-09-16
## 6592 KZ Kazakhstan 5550.5056 2002 2022-09-16
## 6593 KZ Kazakhstan 5055.3139 2001 2022-09-16
## 6594 KZ Kazakhstan 4446.4525 2000 2022-09-16
## 6595 KZ Kazakhstan 4037.4538 1999 2022-09-16
## 6596 KZ Kazakhstan 3893.9387 1998 2022-09-16
## 6597 KZ Kazakhstan 3901.3390 1997 2022-09-16
## 6598 KZ Kazakhstan 3776.0839 1996 2022-09-16
## 6599 KZ Kazakhstan 3700.7545 1995 2022-09-16
## 6600 KZ Kazakhstan 3949.0467 1994 2022-09-16
## 6601 KZ Kazakhstan 4453.5648 1993 2022-09-16
## 6602 KZ Kazakhstan 4887.3758 1992 2022-09-16
## 6603 KZ Kazakhstan 5156.9461 1991 2022-09-16
## 6604 KZ Kazakhstan 5831.0804 1990 2022-09-16
## 6605 KZ Kazakhstan NA 1989 2022-09-16
## 6606 KZ Kazakhstan NA 1988 2022-09-16
## 6607 KZ Kazakhstan NA 1987 2022-09-16
## 6608 KZ Kazakhstan NA 1986 2022-09-16
## 6609 KZ Kazakhstan NA 1985 2022-09-16
## 6610 KZ Kazakhstan NA 1984 2022-09-16
## 6611 KZ Kazakhstan NA 1983 2022-09-16
## 6612 KZ Kazakhstan NA 1982 2022-09-16
## 6613 KZ Kazakhstan NA 1981 2022-09-16
## 6614 KZ Kazakhstan NA 1980 2022-09-16
## 6615 KZ Kazakhstan NA 1979 2022-09-16
## 6616 KZ Kazakhstan NA 1978 2022-09-16
## 6617 KZ Kazakhstan NA 1977 2022-09-16
## 6618 KZ Kazakhstan NA 1976 2022-09-16
## 6619 KZ Kazakhstan NA 1975 2022-09-16
## 6620 KZ Kazakhstan NA 1974 2022-09-16
## 6621 KZ Kazakhstan NA 1973 2022-09-16
## 6622 KZ Kazakhstan NA 1972 2022-09-16
## 6623 KZ Kazakhstan NA 1971 2022-09-16
## 6624 KZ Kazakhstan NA 1970 2022-09-16
## 6625 KZ Kazakhstan NA 1969 2022-09-16
## 6626 KZ Kazakhstan NA 1968 2022-09-16
## 6627 KZ Kazakhstan NA 1967 2022-09-16
## 6628 KZ Kazakhstan NA 1966 2022-09-16
## 6629 KZ Kazakhstan NA 1965 2022-09-16
## 6630 KZ Kazakhstan NA 1964 2022-09-16
## 6631 KZ Kazakhstan NA 1963 2022-09-16
## 6632 KZ Kazakhstan NA 1962 2022-09-16
## 6633 KZ Kazakhstan NA 1961 2022-09-16
## 6634 KZ Kazakhstan NA 1960 2022-09-16
## 6635 LA Lao PDR 2582.1699 2021 2022-09-16
## 6636 LA Lao PDR 2554.4255 2020 2022-09-16
## 6637 LA Lao PDR 2579.2537 2019 2022-09-16
## 6638 LA Lao PDR 2483.1616 2018 2022-09-16
## 6639 LA Lao PDR 2373.5974 2017 2022-09-16
## 6640 LA Lao PDR 2255.3119 2016 2022-09-16
## 6641 LA Lao PDR 2140.0443 2015 2022-09-16
## 6642 LA Lao PDR 2025.4722 2014 2022-09-16
## 6643 LA Lao PDR 1910.5311 2013 2022-09-16
## 6644 LA Lao PDR 1795.1376 2012 2022-09-16
## 6645 LA Lao PDR 1687.1474 2011 2022-09-16
## 6646 LA Lao PDR 1586.2029 2010 2022-09-16
## 6647 LA Lao PDR 1485.4766 2009 2022-09-16
## 6648 LA Lao PDR 1405.1235 2008 2022-09-16
## 6649 LA Lao PDR 1325.4416 2007 2022-09-16
## 6650 LA Lao PDR 1252.6939 2006 2022-09-16
## 6651 LA Lao PDR 1172.2173 2005 2022-09-16
## 6652 LA Lao PDR 1111.7245 2004 2022-09-16
## 6653 LA Lao PDR 1061.3064 2003 2022-09-16
## 6654 LA Lao PDR 1015.7901 2002 2022-09-16
## 6655 LA Lao PDR 973.8598 2001 2022-09-16
## 6656 LA Lao PDR 935.7513 2000 2022-09-16
## 6657 LA Lao PDR 899.3912 1999 2022-09-16
## 6658 LA Lao PDR 852.9355 1998 2022-09-16
## 6659 LA Lao PDR 835.7031 1997 2022-09-16
## 6660 LA Lao PDR 797.6200 1996 2022-09-16
## 6661 LA Lao PDR 762.0556 1995 2022-09-16
## 6662 LA Lao PDR 728.6273 1994 2022-09-16
## 6663 LA Lao PDR 690.5618 1993 2022-09-16
## 6664 LA Lao PDR 669.3389 1992 2022-09-16
## 6665 LA Lao PDR 651.6210 1991 2022-09-16
## 6666 LA Lao PDR 642.4946 1990 2022-09-16
## 6667 LA Lao PDR 619.5281 1989 2022-09-16
## 6668 LA Lao PDR 558.4642 1988 2022-09-16
## 6669 LA Lao PDR 586.7442 1987 2022-09-16
## 6670 LA Lao PDR 612.6957 1986 2022-09-16
## 6671 LA Lao PDR 600.9989 1985 2022-09-16
## 6672 LA Lao PDR 588.1993 1984 2022-09-16
## 6673 LA Lao PDR NA 1983 2022-09-16
## 6674 LA Lao PDR NA 1982 2022-09-16
## 6675 LA Lao PDR NA 1981 2022-09-16
## 6676 LA Lao PDR NA 1980 2022-09-16
## 6677 LA Lao PDR NA 1979 2022-09-16
## 6678 LA Lao PDR NA 1978 2022-09-16
## 6679 LA Lao PDR NA 1977 2022-09-16
## 6680 LA Lao PDR NA 1976 2022-09-16
## 6681 LA Lao PDR NA 1975 2022-09-16
## 6682 LA Lao PDR NA 1974 2022-09-16
## 6683 LA Lao PDR NA 1973 2022-09-16
## 6684 LA Lao PDR NA 1972 2022-09-16
## 6685 LA Lao PDR NA 1971 2022-09-16
## 6686 LA Lao PDR NA 1970 2022-09-16
## 6687 LA Lao PDR NA 1969 2022-09-16
## 6688 LA Lao PDR NA 1968 2022-09-16
## 6689 LA Lao PDR NA 1967 2022-09-16
## 6690 LA Lao PDR NA 1966 2022-09-16
## 6691 LA Lao PDR NA 1965 2022-09-16
## 6692 LA Lao PDR NA 1964 2022-09-16
## 6693 LA Lao PDR NA 1963 2022-09-16
## 6694 LA Lao PDR NA 1962 2022-09-16
## 6695 LA Lao PDR NA 1961 2022-09-16
## 6696 LA Lao PDR NA 1960 2022-09-16
## 6697 LB Lebanon 4576.6087 2021 2022-09-16
## 6698 LB Lebanon 5072.4558 2020 2022-09-16
## 6699 LB Lebanon 6815.9090 2019 2022-09-16
## 6700 LB Lebanon 7318.2875 2018 2022-09-16
## 6701 LB Lebanon 7502.6545 2017 2022-09-16
## 6702 LB Lebanon 7551.8904 2016 2022-09-16
## 6703 LB Lebanon 7643.0087 2015 2022-09-16
## 6704 LB Lebanon 7937.9015 2014 2022-09-16
## 6705 LB Lebanon 8201.3854 2013 2022-09-16
## 6706 LB Lebanon 8434.4966 2012 2022-09-16
## 6707 LB Lebanon 8754.1066 2011 2022-09-16
## 6708 LB Lebanon 9115.0595 2010 2022-09-16
## 6709 LB Lebanon 8687.4333 2009 2022-09-16
## 6710 LB Lebanon 7960.8919 2008 2022-09-16
## 6711 LB Lebanon 7294.9578 2007 2022-09-16
## 6712 LB Lebanon 6684.2414 2006 2022-09-16
## 6713 LB Lebanon 6667.6988 2005 2022-09-16
## 6714 LB Lebanon 6677.1639 2004 2022-09-16
## 6715 LB Lebanon 6517.2480 2003 2022-09-16
## 6716 LB Lebanon 6624.7462 2002 2022-09-16
## 6717 LB Lebanon 6712.3591 2001 2022-09-16
## 6718 LB Lebanon 6713.4948 2000 2022-09-16
## 6719 LB Lebanon 6792.5459 1999 2022-09-16
## 6720 LB Lebanon 6928.7268 1998 2022-09-16
## 6721 LB Lebanon 6747.8255 1997 2022-09-16
## 6722 LB Lebanon 6765.7101 1996 2022-09-16
## 6723 LB Lebanon 6221.3528 1995 2022-09-16
## 6724 LB Lebanon 6059.1439 1994 2022-09-16
## 6725 LB Lebanon 5876.3344 1993 2022-09-16
## 6726 LB Lebanon 5598.3751 1992 2022-09-16
## 6727 LB Lebanon 5062.1552 1991 2022-09-16
## 6728 LB Lebanon 3530.6504 1990 2022-09-16
## 6729 LB Lebanon 2868.6845 1989 2022-09-16
## 6730 LB Lebanon 5062.3093 1988 2022-09-16
## 6731 LB Lebanon NA 1987 2022-09-16
## 6732 LB Lebanon NA 1986 2022-09-16
## 6733 LB Lebanon NA 1985 2022-09-16
## 6734 LB Lebanon NA 1984 2022-09-16
## 6735 LB Lebanon NA 1983 2022-09-16
## 6736 LB Lebanon NA 1982 2022-09-16
## 6737 LB Lebanon NA 1981 2022-09-16
## 6738 LB Lebanon NA 1980 2022-09-16
## 6739 LB Lebanon NA 1979 2022-09-16
## 6740 LB Lebanon NA 1978 2022-09-16
## 6741 LB Lebanon NA 1977 2022-09-16
## 6742 LB Lebanon NA 1976 2022-09-16
## 6743 LB Lebanon NA 1975 2022-09-16
## 6744 LB Lebanon NA 1974 2022-09-16
## 6745 LB Lebanon NA 1973 2022-09-16
## 6746 LB Lebanon NA 1972 2022-09-16
## 6747 LB Lebanon NA 1971 2022-09-16
## 6748 LB Lebanon NA 1970 2022-09-16
## 6749 LB Lebanon NA 1969 2022-09-16
## 6750 LB Lebanon NA 1968 2022-09-16
## 6751 LB Lebanon NA 1967 2022-09-16
## 6752 LB Lebanon NA 1966 2022-09-16
## 6753 LB Lebanon NA 1965 2022-09-16
## 6754 LB Lebanon NA 1964 2022-09-16
## 6755 LB Lebanon NA 1963 2022-09-16
## 6756 LB Lebanon NA 1962 2022-09-16
## 6757 LB Lebanon NA 1961 2022-09-16
## 6758 LB Lebanon NA 1960 2022-09-16
## 6759 LC St. Lucia 9183.6709 2021 2022-09-16
## 6760 LC St. Lucia 8651.3493 2020 2022-09-16
## 6761 LC St. Lucia 10914.5027 2019 2022-09-16
## 6762 LC St. Lucia 10975.8265 2018 2022-09-16
## 6763 LC St. Lucia 10718.8600 2017 2022-09-16
## 6764 LC St. Lucia 10409.5373 2016 2022-09-16
## 6765 LC St. Lucia 10093.6180 2015 2022-09-16
## 6766 LC St. Lucia 10280.1226 2014 2022-09-16
## 6767 LC St. Lucia 10148.0989 2013 2022-09-16
## 6768 LC St. Lucia 10531.2885 2012 2022-09-16
## 6769 LC St. Lucia 10619.4653 2011 2022-09-16
## 6770 LC St. Lucia 10151.0465 2010 2022-09-16
## 6771 LC St. Lucia 10099.2300 2009 2022-09-16
## 6772 LC St. Lucia 10528.4702 2008 2022-09-16
## 6773 LC St. Lucia 10173.5996 2007 2022-09-16
## 6774 LC St. Lucia 10141.4431 2006 2022-09-16
## 6775 LC St. Lucia 9664.9377 2005 2022-09-16
## 6776 LC St. Lucia 9799.9326 2004 2022-09-16
## 6777 LC St. Lucia 9209.4559 2003 2022-09-16
## 6778 LC St. Lucia 8895.8353 2002 2022-09-16
## 6779 LC St. Lucia 8926.5950 2001 2022-09-16
## 6780 LC St. Lucia 9326.8713 2000 2022-09-16
## 6781 LC St. Lucia 9427.5269 1999 2022-09-16
## 6782 LC St. Lucia 9300.2158 1998 2022-09-16
## 6783 LC St. Lucia 8872.0699 1997 2022-09-16
## 6784 LC St. Lucia 9059.1181 1996 2022-09-16
## 6785 LC St. Lucia 8919.6966 1995 2022-09-16
## 6786 LC St. Lucia 8874.6603 1994 2022-09-16
## 6787 LC St. Lucia 8837.2375 1993 2022-09-16
## 6788 LC St. Lucia 8887.8908 1992 2022-09-16
## 6789 LC St. Lucia 8336.4304 1991 2022-09-16
## 6790 LC St. Lucia 8424.4954 1990 2022-09-16
## 6791 LC St. Lucia 7792.2636 1989 2022-09-16
## 6792 LC St. Lucia 7280.0173 1988 2022-09-16
## 6793 LC St. Lucia 6513.5105 1987 2022-09-16
## 6794 LC St. Lucia 6385.6705 1986 2022-09-16
## 6795 LC St. Lucia 5679.1395 1985 2022-09-16
## 6796 LC St. Lucia 5326.7660 1984 2022-09-16
## 6797 LC St. Lucia 5035.8488 1983 2022-09-16
## 6798 LC St. Lucia 4860.4402 1982 2022-09-16
## 6799 LC St. Lucia 4822.9755 1981 2022-09-16
## 6800 LC St. Lucia 4598.5722 1980 2022-09-16
## 6801 LC St. Lucia 4771.0294 1979 2022-09-16
## 6802 LC St. Lucia 4667.0069 1978 2022-09-16
## 6803 LC St. Lucia 4295.0502 1977 2022-09-16
## 6804 LC St. Lucia NA 1976 2022-09-16
## 6805 LC St. Lucia NA 1975 2022-09-16
## 6806 LC St. Lucia NA 1974 2022-09-16
## 6807 LC St. Lucia NA 1973 2022-09-16
## 6808 LC St. Lucia NA 1972 2022-09-16
## 6809 LC St. Lucia NA 1971 2022-09-16
## 6810 LC St. Lucia NA 1970 2022-09-16
## 6811 LC St. Lucia NA 1969 2022-09-16
## 6812 LC St. Lucia NA 1968 2022-09-16
## 6813 LC St. Lucia NA 1967 2022-09-16
## 6814 LC St. Lucia NA 1966 2022-09-16
## 6815 LC St. Lucia NA 1965 2022-09-16
## 6816 LC St. Lucia NA 1964 2022-09-16
## 6817 LC St. Lucia NA 1963 2022-09-16
## 6818 LC St. Lucia NA 1962 2022-09-16
## 6819 LC St. Lucia NA 1961 2022-09-16
## 6820 LC St. Lucia NA 1960 2022-09-16
## 6821 LI Liechtenstein NA 2021 2022-09-16
## 6822 LI Liechtenstein NA 2020 2022-09-16
## 6823 LI Liechtenstein NA 2019 2022-09-16
## 6824 LI Liechtenstein NA 2018 2022-09-16
## 6825 LI Liechtenstein NA 2017 2022-09-16
## 6826 LI Liechtenstein NA 2016 2022-09-16
## 6827 LI Liechtenstein 167313.2663 2015 2022-09-16
## 6828 LI Liechtenstein NA 2014 2022-09-16
## 6829 LI Liechtenstein NA 2013 2022-09-16
## 6830 LI Liechtenstein NA 2012 2022-09-16
## 6831 LI Liechtenstein NA 2011 2022-09-16
## 6832 LI Liechtenstein NA 2010 2022-09-16
## 6833 LI Liechtenstein NA 2009 2022-09-16
## 6834 LI Liechtenstein NA 2008 2022-09-16
## 6835 LI Liechtenstein NA 2007 2022-09-16
## 6836 LI Liechtenstein NA 2006 2022-09-16
## 6837 LI Liechtenstein NA 2005 2022-09-16
## 6838 LI Liechtenstein NA 2004 2022-09-16
## 6839 LI Liechtenstein NA 2003 2022-09-16
## 6840 LI Liechtenstein NA 2002 2022-09-16
## 6841 LI Liechtenstein NA 2001 2022-09-16
## 6842 LI Liechtenstein NA 2000 2022-09-16
## 6843 LI Liechtenstein NA 1999 2022-09-16
## 6844 LI Liechtenstein NA 1998 2022-09-16
## 6845 LI Liechtenstein NA 1997 2022-09-16
## 6846 LI Liechtenstein NA 1996 2022-09-16
## 6847 LI Liechtenstein NA 1995 2022-09-16
## 6848 LI Liechtenstein NA 1994 2022-09-16
## 6849 LI Liechtenstein NA 1993 2022-09-16
## 6850 LI Liechtenstein NA 1992 2022-09-16
## 6851 LI Liechtenstein NA 1991 2022-09-16
## 6852 LI Liechtenstein NA 1990 2022-09-16
## 6853 LI Liechtenstein NA 1989 2022-09-16
## 6854 LI Liechtenstein NA 1988 2022-09-16
## 6855 LI Liechtenstein NA 1987 2022-09-16
## 6856 LI Liechtenstein NA 1986 2022-09-16
## 6857 LI Liechtenstein NA 1985 2022-09-16
## 6858 LI Liechtenstein NA 1984 2022-09-16
## 6859 LI Liechtenstein NA 1983 2022-09-16
## 6860 LI Liechtenstein NA 1982 2022-09-16
## 6861 LI Liechtenstein NA 1981 2022-09-16
## 6862 LI Liechtenstein NA 1980 2022-09-16
## 6863 LI Liechtenstein NA 1979 2022-09-16
## 6864 LI Liechtenstein NA 1978 2022-09-16
## 6865 LI Liechtenstein NA 1977 2022-09-16
## 6866 LI Liechtenstein NA 1976 2022-09-16
## 6867 LI Liechtenstein NA 1975 2022-09-16
## 6868 LI Liechtenstein NA 1974 2022-09-16
## 6869 LI Liechtenstein NA 1973 2022-09-16
## 6870 LI Liechtenstein NA 1972 2022-09-16
## 6871 LI Liechtenstein NA 1971 2022-09-16
## 6872 LI Liechtenstein NA 1970 2022-09-16
## 6873 LI Liechtenstein NA 1969 2022-09-16
## 6874 LI Liechtenstein NA 1968 2022-09-16
## 6875 LI Liechtenstein NA 1967 2022-09-16
## 6876 LI Liechtenstein NA 1966 2022-09-16
## 6877 LI Liechtenstein NA 1965 2022-09-16
## 6878 LI Liechtenstein NA 1964 2022-09-16
## 6879 LI Liechtenstein NA 1963 2022-09-16
## 6880 LI Liechtenstein NA 1962 2022-09-16
## 6881 LI Liechtenstein NA 1961 2022-09-16
## 6882 LI Liechtenstein NA 1960 2022-09-16
## 6883 LK Sri Lanka 4156.9681 2021 2022-09-16
## 6884 LK Sri Lanka 4053.7262 2020 2022-09-16
## 6885 LK Sri Lanka 4228.1492 2019 2022-09-16
## 6886 LK Sri Lanka 4157.2839 2018 2022-09-16
## 6887 LK Sri Lanka 4067.9931 2017 2022-09-16
## 6888 LK Sri Lanka 3972.1026 2016 2022-09-16
## 6889 LK Sri Lanka 3843.7807 2015 2022-09-16
## 6890 LK Sri Lanka 3694.3004 2014 2022-09-16
## 6891 LK Sri Lanka 3552.6986 2013 2022-09-16
## 6892 LK Sri Lanka 3462.9367 2012 2022-09-16
## 6893 LK Sri Lanka 3176.9203 2011 2022-09-16
## 6894 LK Sri Lanka 2950.3907 2010 2022-09-16
## 6895 LK Sri Lanka 2750.2019 2009 2022-09-16
## 6896 LK Sri Lanka 2674.7463 2008 2022-09-16
## 6897 LK Sri Lanka 2542.5936 2007 2022-09-16
## 6898 LK Sri Lanka 2398.4324 2006 2022-09-16
## 6899 LK Sri Lanka 2244.8213 2005 2022-09-16
## 6900 LK Sri Lanka 2130.1390 2004 2022-09-16
## 6901 LK Sri Lanka 2037.2820 2003 2022-09-16
## 6902 LK Sri Lanka 1939.3462 2002 2022-09-16
## 6903 LK Sri Lanka 1880.2589 2001 2022-09-16
## 6904 LK Sri Lanka 1923.4135 2000 2022-09-16
## 6905 LK Sri Lanka 1825.6545 1999 2022-09-16
## 6906 LK Sri Lanka 1759.6846 1998 2022-09-16
## 6907 LK Sri Lanka 1689.2432 1997 2022-09-16
## 6908 LK Sri Lanka 1596.5092 1996 2022-09-16
## 6909 LK Sri Lanka 1548.5492 1995 2022-09-16
## 6910 LK Sri Lanka 1479.8596 1994 2022-09-16
## 6911 LK Sri Lanka 1414.6465 1993 2022-09-16
## 6912 LK Sri Lanka 1337.3621 1992 2022-09-16
## 6913 LK Sri Lanka 1295.6884 1991 2022-09-16
## 6914 LK Sri Lanka 1253.7193 1990 2022-09-16
## 6915 LK Sri Lanka 1193.3935 1989 2022-09-16
## 6916 LK Sri Lanka 1182.3684 1988 2022-09-16
## 6917 LK Sri Lanka 1170.0755 1987 2022-09-16
## 6918 LK Sri Lanka 1166.7067 1986 2022-09-16
## 6919 LK Sri Lanka 1134.0858 1985 2022-09-16
## 6920 LK Sri Lanka 1095.5139 1984 2022-09-16
## 6921 LK Sri Lanka 1057.2017 1983 2022-09-16
## 6922 LK Sri Lanka 1023.1839 1982 2022-09-16
## 6923 LK Sri Lanka 997.1861 1981 2022-09-16
## 6924 LK Sri Lanka 958.2852 1980 2022-09-16
## 6925 LK Sri Lanka 920.4772 1979 2022-09-16
## 6926 LK Sri Lanka 880.2699 1978 2022-09-16
## 6927 LK Sri Lanka 848.3521 1977 2022-09-16
## 6928 LK Sri Lanka 822.1925 1976 2022-09-16
## 6929 LK Sri Lanka 810.5660 1975 2022-09-16
## 6930 LK Sri Lanka 778.0989 1974 2022-09-16
## 6931 LK Sri Lanka 763.4122 1973 2022-09-16
## 6932 LK Sri Lanka 726.7867 1972 2022-09-16
## 6933 LK Sri Lanka 744.3462 1971 2022-09-16
## 6934 LK Sri Lanka 750.1673 1970 2022-09-16
## 6935 LK Sri Lanka 738.3941 1969 2022-09-16
## 6936 LK Sri Lanka 701.4215 1968 2022-09-16
## 6937 LK Sri Lanka 678.8833 1967 2022-09-16
## 6938 LK Sri Lanka 653.3376 1966 2022-09-16
## 6939 LK Sri Lanka 637.1934 1965 2022-09-16
## 6940 LK Sri Lanka 636.3681 1964 2022-09-16
## 6941 LK Sri Lanka 627.0334 1963 2022-09-16
## 6942 LK Sri Lanka 626.1352 1962 2022-09-16
## 6943 LK Sri Lanka 617.4554 1961 2022-09-16
## 6944 LK Sri Lanka NA 1960 2022-09-16
## 6945 LR Liberia 625.4920 2021 2022-09-16
## 6946 LR Liberia 616.0054 2020 2022-09-16
## 6947 LR Liberia 650.4134 2019 2022-09-16
## 6948 LR Liberia 683.2513 2018 2022-09-16
## 6949 LR Liberia 692.2030 2017 2022-09-16
## 6950 LR Liberia 692.6189 2016 2022-09-16
## 6951 LR Liberia 721.5811 2015 2022-09-16
## 6952 LR Liberia 740.3760 2014 2022-09-16
## 6953 LR Liberia 754.4585 2013 2022-09-16
## 6954 LR Liberia 713.0673 2012 2022-09-16
## 6955 LR Liberia 679.7146 2011 2022-09-16
## 6956 LR Liberia 648.5527 2010 2022-09-16
## 6957 LR Liberia 633.6107 2009 2022-09-16
## 6958 LR Liberia 626.1106 2008 2022-09-16
## 6959 LR Liberia 608.9904 2007 2022-09-16
## 6960 LR Liberia 578.1373 2006 2022-09-16
## 6961 LR Liberia 553.5676 2005 2022-09-16
## 6962 LR Liberia 539.6262 2004 2022-09-16
## 6963 LR Liberia 535.8640 2003 2022-09-16
## 6964 LR Liberia 780.3815 2002 2022-09-16
## 6965 LR Liberia 770.1062 2001 2022-09-16
## 6966 LR Liberia 775.9638 2000 2022-09-16
## 6967 LR Liberia NA 1999 2022-09-16
## 6968 LR Liberia NA 1998 2022-09-16
## 6969 LR Liberia NA 1997 2022-09-16
## 6970 LR Liberia NA 1996 2022-09-16
## 6971 LR Liberia NA 1995 2022-09-16
## 6972 LR Liberia NA 1994 2022-09-16
## 6973 LR Liberia NA 1993 2022-09-16
## 6974 LR Liberia NA 1992 2022-09-16
## 6975 LR Liberia NA 1991 2022-09-16
## 6976 LR Liberia NA 1990 2022-09-16
## 6977 LR Liberia NA 1989 2022-09-16
## 6978 LR Liberia NA 1988 2022-09-16
## 6979 LR Liberia NA 1987 2022-09-16
## 6980 LR Liberia NA 1986 2022-09-16
## 6981 LR Liberia NA 1985 2022-09-16
## 6982 LR Liberia NA 1984 2022-09-16
## 6983 LR Liberia NA 1983 2022-09-16
## 6984 LR Liberia NA 1982 2022-09-16
## 6985 LR Liberia NA 1981 2022-09-16
## 6986 LR Liberia NA 1980 2022-09-16
## 6987 LR Liberia NA 1979 2022-09-16
## 6988 LR Liberia NA 1978 2022-09-16
## 6989 LR Liberia NA 1977 2022-09-16
## 6990 LR Liberia NA 1976 2022-09-16
## 6991 LR Liberia NA 1975 2022-09-16
## 6992 LR Liberia NA 1974 2022-09-16
## 6993 LR Liberia NA 1973 2022-09-16
## 6994 LR Liberia NA 1972 2022-09-16
## 6995 LR Liberia NA 1971 2022-09-16
## 6996 LR Liberia NA 1970 2022-09-16
## 6997 LR Liberia NA 1969 2022-09-16
## 6998 LR Liberia NA 1968 2022-09-16
## 6999 LR Liberia NA 1967 2022-09-16
## 7000 LR Liberia NA 1966 2022-09-16
## 7001 LR Liberia NA 1965 2022-09-16
## 7002 LR Liberia NA 1964 2022-09-16
## 7003 LR Liberia NA 1963 2022-09-16
## 7004 LR Liberia NA 1962 2022-09-16
## 7005 LR Liberia NA 1961 2022-09-16
## 7006 LR Liberia NA 1960 2022-09-16
## 7007 LS Lesotho 1035.8002 2021 2022-09-16
## 7008 LS Lesotho 1033.4321 2020 2022-09-16
## 7009 LS Lesotho 1126.8438 2019 2022-09-16
## 7010 LS Lesotho 1109.2559 2018 2022-09-16
## 7011 LS Lesotho 1132.0093 2017 2022-09-16
## 7012 LS Lesotho 1178.0185 2016 2022-09-16
## 7013 LS Lesotho 1146.0647 2015 2022-09-16
## 7014 LS Lesotho 1119.7717 2014 2022-09-16
## 7015 LS Lesotho 1109.0371 2013 2022-09-16
## 7016 LS Lesotho 1096.8285 2012 2022-09-16
## 7017 LS Lesotho 1037.2485 2011 2022-09-16
## 7018 LS Lesotho 995.5814 2010 2022-09-16
## 7019 LS Lesotho 948.3595 2009 2022-09-16
## 7020 LS Lesotho 961.8700 2008 2022-09-16
## 7021 LS Lesotho 911.6284 2007 2022-09-16
## 7022 LS Lesotho 873.6626 2006 2022-09-16
## 7023 LS Lesotho 835.6098 2005 2022-09-16
## 7024 LS Lesotho 803.6559 2004 2022-09-16
## 7025 LS Lesotho 785.4254 2003 2022-09-16
## 7026 LS Lesotho 746.9263 2002 2022-09-16
## 7027 LS Lesotho 739.4073 2001 2022-09-16
## 7028 LS Lesotho 715.0085 2000 2022-09-16
## 7029 LS Lesotho 692.7872 1999 2022-09-16
## 7030 LS Lesotho 697.1707 1998 2022-09-16
## 7031 LS Lesotho 696.8945 1997 2022-09-16
## 7032 LS Lesotho 683.7348 1996 2022-09-16
## 7033 LS Lesotho 659.6680 1995 2022-09-16
## 7034 LS Lesotho 651.4401 1994 2022-09-16
## 7035 LS Lesotho 627.8675 1993 2022-09-16
## 7036 LS Lesotho 620.1755 1992 2022-09-16
## 7037 LS Lesotho 593.0668 1991 2022-09-16
## 7038 LS Lesotho 567.0600 1990 2022-09-16
## 7039 LS Lesotho 546.6666 1989 2022-09-16
## 7040 LS Lesotho 527.9907 1988 2022-09-16
## 7041 LS Lesotho 496.7073 1987 2022-09-16
## 7042 LS Lesotho 504.0681 1986 2022-09-16
## 7043 LS Lesotho 492.7280 1985 2022-09-16
## 7044 LS Lesotho 491.9423 1984 2022-09-16
## 7045 LS Lesotho 478.0007 1983 2022-09-16
## 7046 LS Lesotho 481.0650 1982 2022-09-16
## 7047 LS Lesotho 473.0904 1981 2022-09-16
## 7048 LS Lesotho 482.9900 1980 2022-09-16
## 7049 LS Lesotho 510.9509 1979 2022-09-16
## 7050 LS Lesotho 511.2825 1978 2022-09-16
## 7051 LS Lesotho 445.0333 1977 2022-09-16
## 7052 LS Lesotho 376.0703 1976 2022-09-16
## 7053 LS Lesotho 348.1986 1975 2022-09-16
## 7054 LS Lesotho 413.3445 1974 2022-09-16
## 7055 LS Lesotho 381.8202 1973 2022-09-16
## 7056 LS Lesotho 309.2918 1972 2022-09-16
## 7057 LS Lesotho 317.1285 1971 2022-09-16
## 7058 LS Lesotho 308.6465 1970 2022-09-16
## 7059 LS Lesotho 308.9827 1969 2022-09-16
## 7060 LS Lesotho 311.1495 1968 2022-09-16
## 7061 LS Lesotho 319.2424 1967 2022-09-16
## 7062 LS Lesotho 294.0933 1966 2022-09-16
## 7063 LS Lesotho 301.5311 1965 2022-09-16
## 7064 LS Lesotho 301.2313 1964 2022-09-16
## 7065 LS Lesotho 283.8283 1963 2022-09-16
## 7066 LS Lesotho 261.5889 1962 2022-09-16
## 7067 LS Lesotho 231.1330 1961 2022-09-16
## 7068 LS Lesotho 231.1370 1960 2022-09-16
## 7069 LT Lithuania 18072.2884 2021 2022-09-16
## 7070 LT Lithuania 17213.8143 2020 2022-09-16
## 7071 LT Lithuania 17241.2553 2019 2022-09-16
## 7072 LT Lithuania 16443.5853 2018 2022-09-16
## 7073 LT Lithuania 15661.9963 2017 2022-09-16
## 7074 LT Lithuania 14810.2518 2016 2022-09-16
## 7075 LT Lithuania 14263.9646 2015 2022-09-16
## 7076 LT Lithuania 13850.0001 2014 2022-09-16
## 7077 LT Lithuania 13262.3345 2013 2022-09-16
## 7078 LT Lithuania 12678.6927 2012 2022-09-16
## 7079 LT Lithuania 12046.7214 2011 2022-09-16
## 7080 LT Lithuania 11106.9502 2010 2022-09-16
## 7081 LT Lithuania 10699.7895 2009 2022-09-16
## 7082 LT Lithuania 12425.3981 2008 2022-09-16
## 7083 LT Lithuania 11984.9233 2007 2022-09-16
## 7084 LT Lithuania 10659.4002 2006 2022-09-16
## 7085 LT Lithuania 9766.4876 2005 2022-09-16
## 7086 LT Lithuania 8919.0817 2004 2022-09-16
## 7087 LT Lithuania 8275.8034 2003 2022-09-16
## 7088 LT Lithuania 7424.3948 2002 2022-09-16
## 7089 LT Lithuania 6899.2368 2001 2022-09-16
## 7090 LT Lithuania 6423.4207 2000 2022-09-16
## 7091 LT Lithuania 6151.0830 1999 2022-09-16
## 7092 LT Lithuania 6178.1238 1998 2022-09-16
## 7093 LT Lithuania 5706.8953 1997 2022-09-16
## 7094 LT Lithuania 5230.2602 1996 2022-09-16
## 7095 LT Lithuania 4936.0202 1995 2022-09-16
## 7096 LT Lithuania NA 1994 2022-09-16
## 7097 LT Lithuania NA 1993 2022-09-16
## 7098 LT Lithuania NA 1992 2022-09-16
## 7099 LT Lithuania NA 1991 2022-09-16
## 7100 LT Lithuania NA 1990 2022-09-16
## 7101 LT Lithuania NA 1989 2022-09-16
## 7102 LT Lithuania NA 1988 2022-09-16
## 7103 LT Lithuania NA 1987 2022-09-16
## 7104 LT Lithuania NA 1986 2022-09-16
## 7105 LT Lithuania NA 1985 2022-09-16
## 7106 LT Lithuania NA 1984 2022-09-16
## 7107 LT Lithuania NA 1983 2022-09-16
## 7108 LT Lithuania NA 1982 2022-09-16
## 7109 LT Lithuania NA 1981 2022-09-16
## 7110 LT Lithuania NA 1980 2022-09-16
## 7111 LT Lithuania NA 1979 2022-09-16
## 7112 LT Lithuania NA 1978 2022-09-16
## 7113 LT Lithuania NA 1977 2022-09-16
## 7114 LT Lithuania NA 1976 2022-09-16
## 7115 LT Lithuania NA 1975 2022-09-16
## 7116 LT Lithuania NA 1974 2022-09-16
## 7117 LT Lithuania NA 1973 2022-09-16
## 7118 LT Lithuania NA 1972 2022-09-16
## 7119 LT Lithuania NA 1971 2022-09-16
## 7120 LT Lithuania NA 1970 2022-09-16
## 7121 LT Lithuania NA 1969 2022-09-16
## 7122 LT Lithuania NA 1968 2022-09-16
## 7123 LT Lithuania NA 1967 2022-09-16
## 7124 LT Lithuania NA 1966 2022-09-16
## 7125 LT Lithuania NA 1965 2022-09-16
## 7126 LT Lithuania NA 1964 2022-09-16
## 7127 LT Lithuania NA 1963 2022-09-16
## 7128 LT Lithuania NA 1962 2022-09-16
## 7129 LT Lithuania NA 1961 2022-09-16
## 7130 LT Lithuania NA 1960 2022-09-16
## 7131 LU Luxembourg 110584.3305 2021 2022-09-16
## 7132 LU Luxembourg 104879.2562 2020 2022-09-16
## 7133 LU Luxembourg 108570.0277 2019 2022-09-16
## 7134 LU Luxembourg 107201.8399 2018 2022-09-16
## 7135 LU Luxembourg 107142.1276 2017 2022-09-16
## 7136 LU Luxembourg 108351.4522 2016 2022-09-16
## 7137 LU Luxembourg 105462.0126 2015 2022-09-16
## 7138 LU Luxembourg 105583.9370 2014 2022-09-16
## 7139 LU Luxembourg 105338.9561 2013 2022-09-16
## 7140 LU Luxembourg 104487.7442 2012 2022-09-16
## 7141 LU Luxembourg 105290.2490 2011 2022-09-16
## 7142 LU Luxembourg 106544.0572 2010 2022-09-16
## 7143 LU Luxembourg 104574.3499 2009 2022-09-16
## 7144 LU Luxembourg 110094.7923 2008 2022-09-16
## 7145 LU Luxembourg 112417.8785 2007 2022-09-16
## 7146 LU Luxembourg 105614.1799 2006 2022-09-16
## 7147 LU Luxembourg 101222.0457 2005 2022-09-16
## 7148 LU Luxembourg 100292.5685 2004 2022-09-16
## 7149 LU Luxembourg 97597.9969 2003 2022-09-16
## 7150 LU Luxembourg 96269.5794 2002 2022-09-16
## 7151 LU Luxembourg 94243.7073 2001 2022-09-16
## 7152 LU Luxembourg 92527.7118 2000 2022-09-16
## 7153 LU Luxembourg 87695.3396 1999 2022-09-16
## 7154 LU Luxembourg 82170.2399 1998 2022-09-16
## 7155 LU Luxembourg 77993.0585 1997 2022-09-16
## 7156 LU Luxembourg 74916.5068 1996 2022-09-16
## 7157 LU Luxembourg 74896.0966 1995 2022-09-16
## 7158 LU Luxembourg 74883.1419 1994 2022-09-16
## 7159 LU Luxembourg 73116.1947 1993 2022-09-16
## 7160 LU Luxembourg 71116.9401 1992 2022-09-16
## 7161 LU Luxembourg 70779.9729 1991 2022-09-16
## 7162 LU Luxembourg 66027.0758 1990 2022-09-16
## 7163 LU Luxembourg 63481.5847 1989 2022-09-16
## 7164 LU Luxembourg 58381.7543 1988 2022-09-16
## 7165 LU Luxembourg 54218.2754 1987 2022-09-16
## 7166 LU Luxembourg 52496.6662 1986 2022-09-16
## 7167 LU Luxembourg 47945.8484 1985 2022-09-16
## 7168 LU Luxembourg 46733.9236 1984 2022-09-16
## 7169 LU Luxembourg 44056.2515 1983 2022-09-16
## 7170 LU Luxembourg 42788.9486 1982 2022-09-16
## 7171 LU Luxembourg 42345.0452 1981 2022-09-16
## 7172 LU Luxembourg 42705.3385 1980 2022-09-16
## 7173 LU Luxembourg 42500.2549 1979 2022-09-16
## 7174 LU Luxembourg 41623.6010 1978 2022-09-16
## 7175 LU Luxembourg 40065.6914 1977 2022-09-16
## 7176 LU Luxembourg 39515.0353 1976 2022-09-16
## 7177 LU Luxembourg 38729.5605 1975 2022-09-16
## 7178 LU Luxembourg 41908.9753 1974 2022-09-16
## 7179 LU Luxembourg 40742.7919 1973 2022-09-16
## 7180 LU Luxembourg 38033.7402 1972 2022-09-16
## 7181 LU Luxembourg 36114.9765 1971 2022-09-16
## 7182 LU Luxembourg 35513.8010 1970 2022-09-16
## 7183 LU Luxembourg 32125.4868 1969 2022-09-16
## 7184 LU Luxembourg 29355.7128 1968 2022-09-16
## 7185 LU Luxembourg 28248.7452 1967 2022-09-16
## 7186 LU Luxembourg 28280.5167 1966 2022-09-16
## 7187 LU Luxembourg 28173.2666 1965 2022-09-16
## 7188 LU Luxembourg 28706.5896 1964 2022-09-16
## 7189 LU Luxembourg 26912.9550 1963 2022-09-16
## 7190 LU Luxembourg 26289.9029 1962 2022-09-16
## 7191 LU Luxembourg 26257.1662 1961 2022-09-16
## 7192 LU Luxembourg 25520.1824 1960 2022-09-16
## 7193 LV Latvia 16406.2260 2021 2022-09-16
## 7194 LV Latvia 15559.5946 2020 2022-09-16
## 7195 LV Latvia 16056.0352 2019 2022-09-16
## 7196 LV Latvia 15558.2761 2018 2022-09-16
## 7197 LV Latvia 14845.2772 2017 2022-09-16
## 7198 LV Latvia 14242.4328 2016 2022-09-16
## 7199 LV Latvia 13786.4568 2015 2022-09-16
## 7200 LV Latvia 13162.6841 2014 2022-09-16
## 7201 LV Latvia 12796.1677 2013 2022-09-16
## 7202 LV Latvia 12410.3080 2012 2022-09-16
## 7203 LV Latvia 11451.4514 2011 2022-09-16
## 7204 LV Latvia 10963.6787 2010 2022-09-16
## 7205 LV Latvia 11240.4012 2009 2022-09-16
## 7206 LV Latvia 12893.4363 2008 2022-09-16
## 7207 LV Latvia 13186.2473 2007 2022-09-16
## 7208 LV Latvia 11896.2208 2006 2022-09-16
## 7209 LV Latvia 10527.9127 2005 2022-09-16
## 7210 LV Latvia 9406.8031 2004 2022-09-16
## 7211 LV Latvia 8593.0311 2003 2022-09-16
## 7212 LV Latvia 7849.2826 2002 2022-09-16
## 7213 LV Latvia 7245.1448 2001 2022-09-16
## 7214 LV Latvia 6726.5049 2000 2022-09-16
## 7215 LV Latvia 6304.1693 1999 2022-09-16
## 7216 LV Latvia 6085.3411 1998 2022-09-16
## 7217 LV Latvia 5669.0442 1997 2022-09-16
## 7218 LV Latvia 5157.0905 1996 2022-09-16
## 7219 LV Latvia 4970.6857 1995 2022-09-16
## 7220 LV Latvia NA 1994 2022-09-16
## 7221 LV Latvia NA 1993 2022-09-16
## 7222 LV Latvia NA 1992 2022-09-16
## 7223 LV Latvia NA 1991 2022-09-16
## 7224 LV Latvia NA 1990 2022-09-16
## 7225 LV Latvia NA 1989 2022-09-16
## 7226 LV Latvia NA 1988 2022-09-16
## 7227 LV Latvia NA 1987 2022-09-16
## 7228 LV Latvia NA 1986 2022-09-16
## 7229 LV Latvia NA 1985 2022-09-16
## 7230 LV Latvia NA 1984 2022-09-16
## 7231 LV Latvia NA 1983 2022-09-16
## 7232 LV Latvia NA 1982 2022-09-16
## 7233 LV Latvia NA 1981 2022-09-16
## 7234 LV Latvia NA 1980 2022-09-16
## 7235 LV Latvia NA 1979 2022-09-16
## 7236 LV Latvia NA 1978 2022-09-16
## 7237 LV Latvia NA 1977 2022-09-16
## 7238 LV Latvia NA 1976 2022-09-16
## 7239 LV Latvia NA 1975 2022-09-16
## 7240 LV Latvia NA 1974 2022-09-16
## 7241 LV Latvia NA 1973 2022-09-16
## 7242 LV Latvia NA 1972 2022-09-16
## 7243 LV Latvia NA 1971 2022-09-16
## 7244 LV Latvia NA 1970 2022-09-16
## 7245 LV Latvia NA 1969 2022-09-16
## 7246 LV Latvia NA 1968 2022-09-16
## 7247 LV Latvia NA 1967 2022-09-16
## 7248 LV Latvia NA 1966 2022-09-16
## 7249 LV Latvia NA 1965 2022-09-16
## 7250 LV Latvia NA 1964 2022-09-16
## 7251 LV Latvia NA 1963 2022-09-16
## 7252 LV Latvia NA 1962 2022-09-16
## 7253 LV Latvia NA 1961 2022-09-16
## 7254 LV Latvia NA 1960 2022-09-16
## 7255 LY Libya 8753.3870 2021 2022-09-16
## 7256 LY Libya 6747.6389 2020 2022-09-16
## 7257 LY Libya 8993.0861 2019 2022-09-16
## 7258 LY Libya 10276.8043 2018 2022-09-16
## 7259 LY Libya 9662.2822 2017 2022-09-16
## 7260 LY Libya 7392.2238 2016 2022-09-16
## 7261 LY Libya 7590.4430 2015 2022-09-16
## 7262 LY Libya 7722.6604 2014 2022-09-16
## 7263 LY Libya 10101.1986 2013 2022-09-16
## 7264 LY Libya 12386.0326 2012 2022-09-16
## 7265 LY Libya 6670.3463 2011 2022-09-16
## 7266 LY Libya 13539.4929 2010 2022-09-16
## 7267 LY Libya 13025.2420 2009 2022-09-16
## 7268 LY Libya 13793.9697 2008 2022-09-16
## 7269 LY Libya 14010.4978 2007 2022-09-16
## 7270 LY Libya 13385.7920 2006 2022-09-16
## 7271 LY Libya 12760.0621 2005 2022-09-16
## 7272 LY Libya 11582.7579 2004 2022-09-16
## 7273 LY Libya 11264.8450 2003 2022-09-16
## 7274 LY Libya 10128.6672 2002 2022-09-16
## 7275 LY Libya 10391.7791 2001 2022-09-16
## 7276 LY Libya 10746.7778 2000 2022-09-16
## 7277 LY Libya 10526.4538 1999 2022-09-16
## 7278 LY Libya NA 1998 2022-09-16
## 7279 LY Libya NA 1997 2022-09-16
## 7280 LY Libya NA 1996 2022-09-16
## 7281 LY Libya NA 1995 2022-09-16
## 7282 LY Libya NA 1994 2022-09-16
## 7283 LY Libya NA 1993 2022-09-16
## 7284 LY Libya NA 1992 2022-09-16
## 7285 LY Libya NA 1991 2022-09-16
## 7286 LY Libya NA 1990 2022-09-16
## 7287 LY Libya NA 1989 2022-09-16
## 7288 LY Libya NA 1988 2022-09-16
## 7289 LY Libya NA 1987 2022-09-16
## 7290 LY Libya NA 1986 2022-09-16
## 7291 LY Libya NA 1985 2022-09-16
## 7292 LY Libya NA 1984 2022-09-16
## 7293 LY Libya NA 1983 2022-09-16
## 7294 LY Libya NA 1982 2022-09-16
## 7295 LY Libya NA 1981 2022-09-16
## 7296 LY Libya NA 1980 2022-09-16
## 7297 LY Libya NA 1979 2022-09-16
## 7298 LY Libya NA 1978 2022-09-16
## 7299 LY Libya NA 1977 2022-09-16
## 7300 LY Libya NA 1976 2022-09-16
## 7301 LY Libya NA 1975 2022-09-16
## 7302 LY Libya NA 1974 2022-09-16
## 7303 LY Libya NA 1973 2022-09-16
## 7304 LY Libya NA 1972 2022-09-16
## 7305 LY Libya NA 1971 2022-09-16
## 7306 LY Libya NA 1970 2022-09-16
## 7307 LY Libya NA 1969 2022-09-16
## 7308 LY Libya NA 1968 2022-09-16
## 7309 LY Libya NA 1967 2022-09-16
## 7310 LY Libya NA 1966 2022-09-16
## 7311 LY Libya NA 1965 2022-09-16
## 7312 LY Libya NA 1964 2022-09-16
## 7313 LY Libya NA 1963 2022-09-16
## 7314 LY Libya NA 1962 2022-09-16
## 7315 LY Libya NA 1961 2022-09-16
## 7316 LY Libya NA 1960 2022-09-16
## 7317 MA Morocco 2990.8079 2021 2022-09-16
## 7318 MA Morocco 2818.7717 2020 2022-09-16
## 7319 MA Morocco 3044.9062 2019 2022-09-16
## 7320 MA Morocco 3004.6323 2018 2022-09-16
## 7321 MA Morocco 2950.2122 2017 2022-09-16
## 7322 MA Morocco 2867.0159 2016 2022-09-16
## 7323 MA Morocco 2875.2581 2015 2022-09-16
## 7324 MA Morocco 2788.7209 2014 2022-09-16
## 7325 MA Morocco 2754.8491 2013 2022-09-16
## 7326 MA Morocco 2673.0457 2012 2022-09-16
## 7327 MA Morocco 2631.4541 2011 2022-09-16
## 7328 MA Morocco 2534.2590 2010 2022-09-16
## 7329 MA Morocco 2472.7932 2009 2022-09-16
## 7330 MA Morocco 2401.6018 2008 2022-09-16
## 7331 MA Morocco 2294.5142 2007 2022-09-16
## 7332 MA Morocco 2242.3970 2006 2022-09-16
## 7333 MA Morocco 2109.0623 2005 2022-09-16
## 7334 MA Morocco 2065.9993 2004 2022-09-16
## 7335 MA Morocco 1994.8154 2003 2022-09-16
## 7336 MA Morocco 1905.0720 2002 2022-09-16
## 7337 MA Morocco 1869.6669 2001 2022-09-16
## 7338 MA Morocco 1763.4008 2000 2022-09-16
## 7339 MA Morocco 1751.7129 1999 2022-09-16
## 7340 MA Morocco 1754.8540 1998 2022-09-16
## 7341 MA Morocco 1657.7773 1997 2022-09-16
## 7342 MA Morocco 1707.1971 1996 2022-09-16
## 7343 MA Morocco 1541.3970 1995 2022-09-16
## 7344 MA Morocco 1654.8721 1994 2022-09-16
## 7345 MA Morocco 1521.2167 1993 2022-09-16
## 7346 MA Morocco 1559.2325 1992 2022-09-16
## 7347 MA Morocco 1621.2856 1991 2022-09-16
## 7348 MA Morocco 1539.9675 1990 2022-09-16
## 7349 MA Morocco 1516.9860 1989 2022-09-16
## 7350 MA Morocco 1503.1130 1988 2022-09-16
## 7351 MA Morocco 1369.9081 1987 2022-09-16
## 7352 MA Morocco 1402.4783 1986 2022-09-16
## 7353 MA Morocco 1311.0658 1985 2022-09-16
## 7354 MA Morocco 1264.7358 1984 2022-09-16
## 7355 MA Morocco 1216.5342 1983 2022-09-16
## 7356 MA Morocco 1229.1628 1982 2022-09-16
## 7357 MA Morocco 1156.0591 1981 2022-09-16
## 7358 MA Morocco 1205.7748 1980 2022-09-16
## 7359 MA Morocco 1192.2429 1979 2022-09-16
## 7360 MA Morocco 1165.8539 1978 2022-09-16
## 7361 MA Morocco 1168.2811 1977 2022-09-16
## 7362 MA Morocco 1127.8535 1976 2022-09-16
## 7363 MA Morocco 1041.3403 1975 2022-09-16
## 7364 MA Morocco 989.6376 1974 2022-09-16
## 7365 MA Morocco 957.1430 1973 2022-09-16
## 7366 MA Morocco 943.4558 1972 2022-09-16
## 7367 MA Morocco 940.2456 1971 2022-09-16
## 7368 MA Morocco 909.5479 1970 2022-09-16
## 7369 MA Morocco 887.9555 1969 2022-09-16
## 7370 MA Morocco 838.3213 1968 2022-09-16
## 7371 MA Morocco 781.1280 1967 2022-09-16
## 7372 MA Morocco 727.6240 1966 2022-09-16
## 7373 MA Morocco NA 1965 2022-09-16
## 7374 MA Morocco NA 1964 2022-09-16
## 7375 MA Morocco NA 1963 2022-09-16
## 7376 MA Morocco NA 1962 2022-09-16
## 7377 MA Morocco NA 1961 2022-09-16
## 7378 MA Morocco NA 1960 2022-09-16
## 7379 MC Monaco NA 2021 2022-09-16
## 7380 MC Monaco 159221.6168 2020 2022-09-16
## 7381 MC Monaco 181709.3436 2019 2022-09-16
## 7382 MC Monaco 171223.9805 2018 2022-09-16
## 7383 MC Monaco 162819.3849 2017 2022-09-16
## 7384 MC Monaco 170153.5378 2016 2022-09-16
## 7385 MC Monaco 165989.5051 2015 2022-09-16
## 7386 MC Monaco 160000.3677 2014 2022-09-16
## 7387 MC Monaco 150972.2203 2013 2022-09-16
## 7388 MC Monaco 139442.7181 2012 2022-09-16
## 7389 MC Monaco 139708.4569 2011 2022-09-16
## 7390 MC Monaco 132094.0117 2010 2022-09-16
## 7391 MC Monaco 130794.9050 2009 2022-09-16
## 7392 MC Monaco 148993.1027 2008 2022-09-16
## 7393 MC Monaco 149446.5950 2007 2022-09-16
## 7394 MC Monaco 131881.8464 2006 2022-09-16
## 7395 MC Monaco 125925.4655 2005 2022-09-16
## 7396 MC Monaco 124848.4362 2004 2022-09-16
## 7397 MC Monaco 123143.4287 2003 2022-09-16
## 7398 MC Monaco 123081.2064 2002 2022-09-16
## 7399 MC Monaco 123068.6602 2001 2022-09-16
## 7400 MC Monaco 121655.1589 2000 2022-09-16
## 7401 MC Monaco 118224.5559 1999 2022-09-16
## 7402 MC Monaco 115470.0006 1998 2022-09-16
## 7403 MC Monaco 112582.1232 1997 2022-09-16
## 7404 MC Monaco 111066.9079 1996 2022-09-16
## 7405 MC Monaco 110811.9083 1995 2022-09-16
## 7406 MC Monaco 109566.2657 1994 2022-09-16
## 7407 MC Monaco 108226.0630 1993 2022-09-16
## 7408 MC Monaco 110270.4729 1992 2022-09-16
## 7409 MC Monaco 109628.2426 1991 2022-09-16
## 7410 MC Monaco 109249.2580 1990 2022-09-16
## 7411 MC Monaco 106885.9858 1989 2022-09-16
## 7412 MC Monaco 102883.8031 1988 2022-09-16
## 7413 MC Monaco 98616.9848 1987 2022-09-16
## 7414 MC Monaco 96577.2920 1986 2022-09-16
## 7415 MC Monaco 94965.1278 1985 2022-09-16
## 7416 MC Monaco 94434.0513 1984 2022-09-16
## 7417 MC Monaco 94443.9383 1983 2022-09-16
## 7418 MC Monaco 94875.5510 1982 2022-09-16
## 7419 MC Monaco 94228.7217 1981 2022-09-16
## 7420 MC Monaco 94798.4665 1980 2022-09-16
## 7421 MC Monaco 94502.4079 1979 2022-09-16
## 7422 MC Monaco 92329.5650 1978 2022-09-16
## 7423 MC Monaco 89778.1614 1977 2022-09-16
## 7424 MC Monaco 87675.8817 1976 2022-09-16
## 7425 MC Monaco 85037.5526 1975 2022-09-16
## 7426 MC Monaco 87166.2879 1974 2022-09-16
## 7427 MC Monaco 84743.6129 1973 2022-09-16
## 7428 MC Monaco 80840.9159 1972 2022-09-16
## 7429 MC Monaco 78318.2611 1971 2022-09-16
## 7430 MC Monaco 75168.6790 1970 2022-09-16
## 7431 MC Monaco NA 1969 2022-09-16
## 7432 MC Monaco NA 1968 2022-09-16
## 7433 MC Monaco NA 1967 2022-09-16
## 7434 MC Monaco NA 1966 2022-09-16
## 7435 MC Monaco NA 1965 2022-09-16
## 7436 MC Monaco NA 1964 2022-09-16
## 7437 MC Monaco NA 1963 2022-09-16
## 7438 MC Monaco NA 1962 2022-09-16
## 7439 MC Monaco NA 1961 2022-09-16
## 7440 MC Monaco NA 1960 2022-09-16
## 7441 MD Moldova 3753.8930 2021 2022-09-16
## 7442 MD Moldova 3235.9458 2020 2022-09-16
## 7443 MD Moldova 3435.4820 2019 2022-09-16
## 7444 MD Moldova 3260.5317 2018 2022-09-16
## 7445 MD Moldova 3072.8010 2017 2022-09-16
## 7446 MD Moldova 2885.8780 2016 2022-09-16
## 7447 MD Moldova 2732.4607 2015 2022-09-16
## 7448 MD Moldova 2720.2184 2014 2022-09-16
## 7449 MD Moldova 2589.1147 2013 2022-09-16
## 7450 MD Moldova 2373.7430 2012 2022-09-16
## 7451 MD Moldova 2387.5117 2011 2022-09-16
## 7452 MD Moldova 2254.9358 2010 2022-09-16
## 7453 MD Moldova 2103.3474 2009 2022-09-16
## 7454 MD Moldova 2234.7808 2008 2022-09-16
## 7455 MD Moldova 2069.1377 2007 2022-09-16
## 7456 MD Moldova 2004.2220 2006 2022-09-16
## 7457 MD Moldova 1907.1176 2005 2022-09-16
## 7458 MD Moldova 1769.7515 2004 2022-09-16
## 7459 MD Moldova 1643.7408 2003 2022-09-16
## 7460 MD Moldova 1537.6349 2002 2022-09-16
## 7461 MD Moldova 1423.0780 2001 2022-09-16
## 7462 MD Moldova 1338.2650 2000 2022-09-16
## 7463 MD Moldova 1307.9778 1999 2022-09-16
## 7464 MD Moldova 1351.4457 1998 2022-09-16
## 7465 MD Moldova 1445.4653 1997 2022-09-16
## 7466 MD Moldova 1416.7936 1996 2022-09-16
## 7467 MD Moldova 1502.2474 1995 2022-09-16
## 7468 MD Moldova NA 1994 2022-09-16
## 7469 MD Moldova NA 1993 2022-09-16
## 7470 MD Moldova NA 1992 2022-09-16
## 7471 MD Moldova NA 1991 2022-09-16
## 7472 MD Moldova NA 1990 2022-09-16
## 7473 MD Moldova NA 1989 2022-09-16
## 7474 MD Moldova NA 1988 2022-09-16
## 7475 MD Moldova NA 1987 2022-09-16
## 7476 MD Moldova NA 1986 2022-09-16
## 7477 MD Moldova NA 1985 2022-09-16
## 7478 MD Moldova NA 1984 2022-09-16
## 7479 MD Moldova NA 1983 2022-09-16
## 7480 MD Moldova NA 1982 2022-09-16
## 7481 MD Moldova NA 1981 2022-09-16
## 7482 MD Moldova NA 1980 2022-09-16
## 7483 MD Moldova NA 1979 2022-09-16
## 7484 MD Moldova NA 1978 2022-09-16
## 7485 MD Moldova NA 1977 2022-09-16
## 7486 MD Moldova NA 1976 2022-09-16
## 7487 MD Moldova NA 1975 2022-09-16
## 7488 MD Moldova NA 1974 2022-09-16
## 7489 MD Moldova NA 1973 2022-09-16
## 7490 MD Moldova NA 1972 2022-09-16
## 7491 MD Moldova NA 1971 2022-09-16
## 7492 MD Moldova NA 1970 2022-09-16
## 7493 MD Moldova NA 1969 2022-09-16
## 7494 MD Moldova NA 1968 2022-09-16
## 7495 MD Moldova NA 1967 2022-09-16
## 7496 MD Moldova NA 1966 2022-09-16
## 7497 MD Moldova NA 1965 2022-09-16
## 7498 MD Moldova NA 1964 2022-09-16
## 7499 MD Moldova NA 1963 2022-09-16
## 7500 MD Moldova NA 1962 2022-09-16
## 7501 MD Moldova NA 1961 2022-09-16
## 7502 MD Moldova NA 1960 2022-09-16
## 7503 ME Montenegro 7339.0820 2021 2022-09-16
## 7504 ME Montenegro 6515.5337 2020 2022-09-16
## 7505 ME Montenegro 7684.1804 2019 2022-09-16
## 7506 ME Montenegro 7381.8042 2018 2022-09-16
## 7507 ME Montenegro 7023.4305 2017 2022-09-16
## 7508 ME Montenegro 6707.8473 2016 2022-09-16
## 7509 ME Montenegro 6517.1896 2015 2022-09-16
## 7510 ME Montenegro 6307.0156 2014 2022-09-16
## 7511 ME Montenegro 6202.5038 2013 2022-09-16
## 7512 ME Montenegro 5995.7716 2012 2022-09-16
## 7513 ME Montenegro 6168.8455 2011 2022-09-16
## 7514 ME Montenegro 5982.1965 2010 2022-09-16
## 7515 ME Montenegro 5833.6568 2009 2022-09-16
## 7516 ME Montenegro 6205.8183 2008 2022-09-16
## 7517 ME Montenegro 5798.0622 2007 2022-09-16
## 7518 ME Montenegro 5435.8837 2006 2022-09-16
## 7519 ME Montenegro 5013.1935 2005 2022-09-16
## 7520 ME Montenegro 4819.1456 2004 2022-09-16
## 7521 ME Montenegro 4623.0739 2003 2022-09-16
## 7522 ME Montenegro 4529.1212 2002 2022-09-16
## 7523 ME Montenegro 4462.3478 2001 2022-09-16
## 7524 ME Montenegro 4431.5984 2000 2022-09-16
## 7525 ME Montenegro 4290.8948 1999 2022-09-16
## 7526 ME Montenegro 4723.1412 1998 2022-09-16
## 7527 ME Montenegro 4488.7925 1997 2022-09-16
## 7528 ME Montenegro NA 1996 2022-09-16
## 7529 ME Montenegro NA 1995 2022-09-16
## 7530 ME Montenegro NA 1994 2022-09-16
## 7531 ME Montenegro NA 1993 2022-09-16
## 7532 ME Montenegro NA 1992 2022-09-16
## 7533 ME Montenegro NA 1991 2022-09-16
## 7534 ME Montenegro NA 1990 2022-09-16
## 7535 ME Montenegro NA 1989 2022-09-16
## 7536 ME Montenegro NA 1988 2022-09-16
## 7537 ME Montenegro NA 1987 2022-09-16
## 7538 ME Montenegro NA 1986 2022-09-16
## 7539 ME Montenegro NA 1985 2022-09-16
## 7540 ME Montenegro NA 1984 2022-09-16
## 7541 ME Montenegro NA 1983 2022-09-16
## 7542 ME Montenegro NA 1982 2022-09-16
## 7543 ME Montenegro NA 1981 2022-09-16
## 7544 ME Montenegro NA 1980 2022-09-16
## 7545 ME Montenegro NA 1979 2022-09-16
## 7546 ME Montenegro NA 1978 2022-09-16
## 7547 ME Montenegro NA 1977 2022-09-16
## 7548 ME Montenegro NA 1976 2022-09-16
## 7549 ME Montenegro NA 1975 2022-09-16
## 7550 ME Montenegro NA 1974 2022-09-16
## 7551 ME Montenegro NA 1973 2022-09-16
## 7552 ME Montenegro NA 1972 2022-09-16
## 7553 ME Montenegro NA 1971 2022-09-16
## 7554 ME Montenegro NA 1970 2022-09-16
## 7555 ME Montenegro NA 1969 2022-09-16
## 7556 ME Montenegro NA 1968 2022-09-16
## 7557 ME Montenegro NA 1967 2022-09-16
## 7558 ME Montenegro NA 1966 2022-09-16
## 7559 ME Montenegro NA 1965 2022-09-16
## 7560 ME Montenegro NA 1964 2022-09-16
## 7561 ME Montenegro NA 1963 2022-09-16
## 7562 ME Montenegro NA 1962 2022-09-16
## 7563 ME Montenegro NA 1961 2022-09-16
## 7564 ME Montenegro NA 1960 2022-09-16
## 7565 MF St. Martin (French part) NA 2021 2022-09-16
## 7566 MF St. Martin (French part) NA 2020 2022-09-16
## 7567 MF St. Martin (French part) NA 2019 2022-09-16
## 7568 MF St. Martin (French part) NA 2018 2022-09-16
## 7569 MF St. Martin (French part) NA 2017 2022-09-16
## 7570 MF St. Martin (French part) NA 2016 2022-09-16
## 7571 MF St. Martin (French part) NA 2015 2022-09-16
## 7572 MF St. Martin (French part) NA 2014 2022-09-16
## 7573 MF St. Martin (French part) NA 2013 2022-09-16
## 7574 MF St. Martin (French part) NA 2012 2022-09-16
## 7575 MF St. Martin (French part) NA 2011 2022-09-16
## 7576 MF St. Martin (French part) NA 2010 2022-09-16
## 7577 MF St. Martin (French part) NA 2009 2022-09-16
## 7578 MF St. Martin (French part) NA 2008 2022-09-16
## 7579 MF St. Martin (French part) NA 2007 2022-09-16
## 7580 MF St. Martin (French part) NA 2006 2022-09-16
## 7581 MF St. Martin (French part) NA 2005 2022-09-16
## 7582 MF St. Martin (French part) NA 2004 2022-09-16
## 7583 MF St. Martin (French part) NA 2003 2022-09-16
## 7584 MF St. Martin (French part) NA 2002 2022-09-16
## 7585 MF St. Martin (French part) NA 2001 2022-09-16
## 7586 MF St. Martin (French part) NA 2000 2022-09-16
## 7587 MF St. Martin (French part) NA 1999 2022-09-16
## 7588 MF St. Martin (French part) NA 1998 2022-09-16
## 7589 MF St. Martin (French part) NA 1997 2022-09-16
## 7590 MF St. Martin (French part) NA 1996 2022-09-16
## 7591 MF St. Martin (French part) NA 1995 2022-09-16
## 7592 MF St. Martin (French part) NA 1994 2022-09-16
## 7593 MF St. Martin (French part) NA 1993 2022-09-16
## 7594 MF St. Martin (French part) NA 1992 2022-09-16
## 7595 MF St. Martin (French part) NA 1991 2022-09-16
## 7596 MF St. Martin (French part) NA 1990 2022-09-16
## 7597 MF St. Martin (French part) NA 1989 2022-09-16
## 7598 MF St. Martin (French part) NA 1988 2022-09-16
## 7599 MF St. Martin (French part) NA 1987 2022-09-16
## 7600 MF St. Martin (French part) NA 1986 2022-09-16
## 7601 MF St. Martin (French part) NA 1985 2022-09-16
## 7602 MF St. Martin (French part) NA 1984 2022-09-16
## 7603 MF St. Martin (French part) NA 1983 2022-09-16
## 7604 MF St. Martin (French part) NA 1982 2022-09-16
## 7605 MF St. Martin (French part) NA 1981 2022-09-16
## 7606 MF St. Martin (French part) NA 1980 2022-09-16
## 7607 MF St. Martin (French part) NA 1979 2022-09-16
## 7608 MF St. Martin (French part) NA 1978 2022-09-16
## 7609 MF St. Martin (French part) NA 1977 2022-09-16
## 7610 MF St. Martin (French part) NA 1976 2022-09-16
## 7611 MF St. Martin (French part) NA 1975 2022-09-16
## 7612 MF St. Martin (French part) NA 1974 2022-09-16
## 7613 MF St. Martin (French part) NA 1973 2022-09-16
## 7614 MF St. Martin (French part) NA 1972 2022-09-16
## 7615 MF St. Martin (French part) NA 1971 2022-09-16
## 7616 MF St. Martin (French part) NA 1970 2022-09-16
## 7617 MF St. Martin (French part) NA 1969 2022-09-16
## 7618 MF St. Martin (French part) NA 1968 2022-09-16
## 7619 MF St. Martin (French part) NA 1967 2022-09-16
## 7620 MF St. Martin (French part) NA 1966 2022-09-16
## 7621 MF St. Martin (French part) NA 1965 2022-09-16
## 7622 MF St. Martin (French part) NA 1964 2022-09-16
## 7623 MF St. Martin (French part) NA 1963 2022-09-16
## 7624 MF St. Martin (French part) NA 1962 2022-09-16
## 7625 MF St. Martin (French part) NA 1961 2022-09-16
## 7626 MF St. Martin (French part) NA 1960 2022-09-16
## 7627 MG Madagascar 449.6783 2021 2022-09-16
## 7628 MG Madagascar 442.1696 2020 2022-09-16
## 7629 MG Madagascar 488.9137 2019 2022-09-16
## 7630 MG Madagascar 480.9153 2018 2022-09-16
## 7631 MG Madagascar 478.6107 2017 2022-09-16
## 7632 MG Madagascar 473.0052 2016 2022-09-16
## 7633 MG Madagascar 467.2354 2015 2022-09-16
## 7634 MG Madagascar 465.4163 2014 2022-09-16
## 7635 MG Madagascar 462.7078 2013 2022-09-16
## 7636 MG Madagascar 464.7432 2012 2022-09-16
## 7637 MG Madagascar 463.6627 2011 2022-09-16
## 7638 MG Madagascar 469.2405 2010 2022-09-16
## 7639 MG Madagascar 479.5600 2009 2022-09-16
## 7640 MG Madagascar 513.7331 2008 2022-09-16
## 7641 MG Madagascar 495.3631 2007 2022-09-16
## 7642 MG Madagascar 482.3349 2006 2022-09-16
## 7643 MG Madagascar 471.1949 2005 2022-09-16
## 7644 MG Madagascar 463.2880 2004 2022-09-16
## 7645 MG Madagascar 453.4934 2003 2022-09-16
## 7646 MG Madagascar 425.7393 2002 2022-09-16
## 7647 MG Madagascar 501.1185 2001 2022-09-16
## 7648 MG Madagascar 487.6601 2000 2022-09-16
## 7649 MG Madagascar 481.6471 1999 2022-09-16
## 7650 MG Madagascar 474.7456 1998 2022-09-16
## 7651 MG Madagascar 471.5269 1997 2022-09-16
## 7652 MG Madagascar 469.2919 1996 2022-09-16
## 7653 MG Madagascar 473.9627 1995 2022-09-16
## 7654 MG Madagascar 480.7238 1994 2022-09-16
## 7655 MG Madagascar 495.7642 1993 2022-09-16
## 7656 MG Madagascar 500.3357 1992 2022-09-16
## 7657 MG Madagascar 509.3413 1991 2022-09-16
## 7658 MG Madagascar 559.7549 1990 2022-09-16
## 7659 MG Madagascar 558.6667 1989 2022-09-16
## 7660 MG Madagascar 552.2933 1988 2022-09-16
## 7661 MG Madagascar 549.3780 1987 2022-09-16
## 7662 MG Madagascar 558.5052 1986 2022-09-16
## 7663 MG Madagascar 563.4779 1985 2022-09-16
## 7664 MG Madagascar 573.1325 1984 2022-09-16
## 7665 MG Madagascar 579.6092 1983 2022-09-16
## 7666 MG Madagascar 591.2445 1982 2022-09-16
## 7667 MG Madagascar 620.3505 1981 2022-09-16
## 7668 MG Madagascar 707.8534 1980 2022-09-16
## 7669 MG Madagascar 721.6109 1979 2022-09-16
## 7670 MG Madagascar 675.9901 1978 2022-09-16
## 7671 MG Madagascar 714.6251 1977 2022-09-16
## 7672 MG Madagascar 718.3019 1976 2022-09-16
## 7673 MG Madagascar 762.3665 1975 2022-09-16
## 7674 MG Madagascar 774.4400 1974 2022-09-16
## 7675 MG Madagascar 780.7958 1973 2022-09-16
## 7676 MG Madagascar 824.4149 1972 2022-09-16
## 7677 MG Madagascar 858.3669 1971 2022-09-16
## 7678 MG Madagascar 848.7142 1970 2022-09-16
## 7679 MG Madagascar 828.1365 1969 2022-09-16
## 7680 MG Madagascar 819.8702 1968 2022-09-16
## 7681 MG Madagascar 787.7985 1967 2022-09-16
## 7682 MG Madagascar 766.0688 1966 2022-09-16
## 7683 MG Madagascar 770.0068 1965 2022-09-16
## 7684 MG Madagascar 793.3131 1964 2022-09-16
## 7685 MG Madagascar 782.3876 1963 2022-09-16
## 7686 MG Madagascar 809.4720 1962 2022-09-16
## 7687 MG Madagascar 811.0335 1961 2022-09-16
## 7688 MG Madagascar 814.1078 1960 2022-09-16
## 7689 MH Marshall Islands 3396.7476 2021 2022-09-16
## 7690 MH Marshall Islands 3508.7982 2020 2022-09-16
## 7691 MH Marshall Islands 3612.6023 2019 2022-09-16
## 7692 MH Marshall Islands 3409.4929 2018 2022-09-16
## iso3c region capital longitude latitude
## 1 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 2 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 3 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 4 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 5 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 6 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 7 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 8 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 9 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 10 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 11 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 12 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 13 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 14 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 15 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 16 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 17 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 18 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 19 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 20 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 21 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 22 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 23 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 24 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 25 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 26 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 27 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 28 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 29 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 30 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 31 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 32 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 33 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 34 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 35 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 36 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 37 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 38 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 39 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 40 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 41 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 42 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 43 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 44 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 45 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 46 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 47 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 48 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 49 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 50 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 51 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 52 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 53 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 54 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 55 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 56 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 57 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 58 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 59 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 60 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 61 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 62 AND Europe & Central Asia Andorra la Vella 1.5218 42.5075
## 63 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 64 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 65 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 66 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 67 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 68 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 69 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 70 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 71 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 72 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 73 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 74 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 75 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 76 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 77 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 78 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 79 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 80 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 81 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 82 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 83 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 84 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 85 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 86 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 87 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 88 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 89 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 90 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 91 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 92 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 93 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 94 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 95 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 96 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 97 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 98 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 99 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 100 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 101 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 102 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 103 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 104 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 105 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 106 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 107 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 108 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 109 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 110 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 111 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 112 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 113 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 114 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 115 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 116 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 117 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 118 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 119 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 120 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 121 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 122 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 123 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 124 ARE Middle East & North Africa Abu Dhabi 54.3705 24.4764
## 125 AFG South Asia Kabul 69.1761 34.5228
## 126 AFG South Asia Kabul 69.1761 34.5228
## 127 AFG South Asia Kabul 69.1761 34.5228
## 128 AFG South Asia Kabul 69.1761 34.5228
## 129 AFG South Asia Kabul 69.1761 34.5228
## 130 AFG South Asia Kabul 69.1761 34.5228
## 131 AFG South Asia Kabul 69.1761 34.5228
## 132 AFG South Asia Kabul 69.1761 34.5228
## 133 AFG South Asia Kabul 69.1761 34.5228
## 134 AFG South Asia Kabul 69.1761 34.5228
## 135 AFG South Asia Kabul 69.1761 34.5228
## 136 AFG South Asia Kabul 69.1761 34.5228
## 137 AFG South Asia Kabul 69.1761 34.5228
## 138 AFG South Asia Kabul 69.1761 34.5228
## 139 AFG South Asia Kabul 69.1761 34.5228
## 140 AFG South Asia Kabul 69.1761 34.5228
## 141 AFG South Asia Kabul 69.1761 34.5228
## 142 AFG South Asia Kabul 69.1761 34.5228
## 143 AFG South Asia Kabul 69.1761 34.5228
## 144 AFG South Asia Kabul 69.1761 34.5228
## 145 AFG South Asia Kabul 69.1761 34.5228
## 146 AFG South Asia Kabul 69.1761 34.5228
## 147 AFG South Asia Kabul 69.1761 34.5228
## 148 AFG South Asia Kabul 69.1761 34.5228
## 149 AFG South Asia Kabul 69.1761 34.5228
## 150 AFG South Asia Kabul 69.1761 34.5228
## 151 AFG South Asia Kabul 69.1761 34.5228
## 152 AFG South Asia Kabul 69.1761 34.5228
## 153 AFG South Asia Kabul 69.1761 34.5228
## 154 AFG South Asia Kabul 69.1761 34.5228
## 155 AFG South Asia Kabul 69.1761 34.5228
## 156 AFG South Asia Kabul 69.1761 34.5228
## 157 AFG South Asia Kabul 69.1761 34.5228
## 158 AFG South Asia Kabul 69.1761 34.5228
## 159 AFG South Asia Kabul 69.1761 34.5228
## 160 AFG South Asia Kabul 69.1761 34.5228
## 161 AFG South Asia Kabul 69.1761 34.5228
## 162 AFG South Asia Kabul 69.1761 34.5228
## 163 AFG South Asia Kabul 69.1761 34.5228
## 164 AFG South Asia Kabul 69.1761 34.5228
## 165 AFG South Asia Kabul 69.1761 34.5228
## 166 AFG South Asia Kabul 69.1761 34.5228
## 167 AFG South Asia Kabul 69.1761 34.5228
## 168 AFG South Asia Kabul 69.1761 34.5228
## 169 AFG South Asia Kabul 69.1761 34.5228
## 170 AFG South Asia Kabul 69.1761 34.5228
## 171 AFG South Asia Kabul 69.1761 34.5228
## 172 AFG South Asia Kabul 69.1761 34.5228
## 173 AFG South Asia Kabul 69.1761 34.5228
## 174 AFG South Asia Kabul 69.1761 34.5228
## 175 AFG South Asia Kabul 69.1761 34.5228
## 176 AFG South Asia Kabul 69.1761 34.5228
## 177 AFG South Asia Kabul 69.1761 34.5228
## 178 AFG South Asia Kabul 69.1761 34.5228
## 179 AFG South Asia Kabul 69.1761 34.5228
## 180 AFG South Asia Kabul 69.1761 34.5228
## 181 AFG South Asia Kabul 69.1761 34.5228
## 182 AFG South Asia Kabul 69.1761 34.5228
## 183 AFG South Asia Kabul 69.1761 34.5228
## 184 AFG South Asia Kabul 69.1761 34.5228
## 185 AFG South Asia Kabul 69.1761 34.5228
## 186 AFG South Asia Kabul 69.1761 34.5228
## 187 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 188 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 189 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 190 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 191 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 192 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 193 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 194 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 195 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 196 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 197 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 198 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 199 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 200 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 201 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 202 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 203 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 204 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 205 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 206 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 207 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 208 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 209 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 210 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 211 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 212 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 213 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 214 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 215 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 216 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 217 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 218 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 219 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 220 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 221 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 222 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 223 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 224 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 225 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 226 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 227 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 228 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 229 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 230 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 231 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 232 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 233 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 234 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 235 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 236 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 237 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 238 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 239 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 240 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 241 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 242 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 243 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 244 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 245 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 246 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 247 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 248 ATG Latin America & Caribbean Saint John's -61.8456 17.1175
## 249 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 250 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 251 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 252 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 253 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 254 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 255 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 256 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 257 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 258 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 259 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 260 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 261 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 262 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 263 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 264 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 265 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 266 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 267 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 268 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 269 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 270 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 271 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 272 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 273 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 274 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 275 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 276 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 277 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 278 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 279 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 280 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 281 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 282 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 283 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 284 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 285 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 286 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 287 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 288 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 289 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 290 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 291 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 292 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 293 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 294 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 295 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 296 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 297 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 298 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 299 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 300 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 301 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 302 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 303 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 304 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 305 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 306 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 307 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 308 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 309 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 310 ALB Europe & Central Asia Tirane 19.8172 41.3317
## 311 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 312 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 313 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 314 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 315 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 316 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 317 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 318 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 319 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 320 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 321 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 322 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 323 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 324 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 325 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 326 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 327 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 328 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 329 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 330 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 331 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 332 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 333 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 334 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 335 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 336 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 337 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 338 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 339 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 340 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 341 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 342 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 343 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 344 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 345 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 346 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 347 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 348 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 349 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 350 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 351 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 352 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 353 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 354 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 355 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 356 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 357 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 358 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 359 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 360 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 361 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 362 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 363 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 364 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 365 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 366 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 367 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 368 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 369 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 370 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 371 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 372 ARM Europe & Central Asia Yerevan 44.509 40.1596
## 373 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 374 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 375 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 376 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 377 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 378 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 379 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 380 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 381 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 382 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 383 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 384 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 385 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 386 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 387 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 388 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 389 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 390 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 391 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 392 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 393 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 394 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 395 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 396 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 397 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 398 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 399 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 400 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 401 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 402 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 403 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 404 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 405 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 406 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 407 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 408 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 409 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 410 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 411 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 412 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 413 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 414 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 415 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 416 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 417 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 418 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 419 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 420 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 421 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 422 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 423 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 424 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 425 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 426 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 427 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 428 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 429 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 430 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 431 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 432 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 433 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 434 AGO Sub-Saharan Africa Luanda 13.242 -8.81155
## 435 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 436 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 437 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 438 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 439 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 440 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 441 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 442 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 443 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 444 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 445 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 446 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 447 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 448 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 449 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 450 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 451 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 452 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 453 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 454 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 455 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 456 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 457 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 458 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 459 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 460 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 461 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 462 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 463 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 464 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 465 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 466 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 467 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 468 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 469 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 470 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 471 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 472 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 473 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 474 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 475 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 476 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 477 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 478 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 479 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 480 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 481 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 482 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 483 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 484 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 485 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 486 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 487 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 488 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 489 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 490 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 491 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 492 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 493 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 494 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 495 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 496 ARG Latin America & Caribbean Buenos Aires -58.4173 -34.6118
## 497 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 498 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 499 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 500 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 501 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 502 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 503 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 504 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 505 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 506 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 507 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 508 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 509 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 510 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 511 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 512 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 513 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 514 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 515 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 516 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 517 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 518 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 519 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 520 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 521 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 522 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 523 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 524 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 525 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 526 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 527 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 528 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 529 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 530 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 531 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 532 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 533 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 534 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 535 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 536 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 537 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 538 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 539 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 540 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 541 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 542 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 543 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 544 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 545 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 546 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 547 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 548 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 549 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 550 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 551 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 552 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 553 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 554 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 555 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 556 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 557 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 558 ASM East Asia & Pacific Pago Pago -170.691 -14.2846
## 559 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 560 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 561 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 562 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 563 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 564 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 565 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 566 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 567 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 568 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 569 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 570 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 571 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 572 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 573 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 574 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 575 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 576 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 577 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 578 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 579 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 580 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 581 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 582 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 583 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 584 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 585 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 586 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 587 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 588 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 589 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 590 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 591 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 592 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 593 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 594 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 595 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 596 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 597 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 598 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 599 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 600 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 601 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 602 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 603 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 604 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 605 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 606 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 607 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 608 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 609 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 610 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 611 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 612 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 613 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 614 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 615 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 616 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 617 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 618 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 619 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 620 AUT Europe & Central Asia Vienna 16.3798 48.2201
## 621 AUS East Asia & Pacific Canberra 149.129 -35.282
## 622 AUS East Asia & Pacific Canberra 149.129 -35.282
## 623 AUS East Asia & Pacific Canberra 149.129 -35.282
## 624 AUS East Asia & Pacific Canberra 149.129 -35.282
## 625 AUS East Asia & Pacific Canberra 149.129 -35.282
## 626 AUS East Asia & Pacific Canberra 149.129 -35.282
## 627 AUS East Asia & Pacific Canberra 149.129 -35.282
## 628 AUS East Asia & Pacific Canberra 149.129 -35.282
## 629 AUS East Asia & Pacific Canberra 149.129 -35.282
## 630 AUS East Asia & Pacific Canberra 149.129 -35.282
## 631 AUS East Asia & Pacific Canberra 149.129 -35.282
## 632 AUS East Asia & Pacific Canberra 149.129 -35.282
## 633 AUS East Asia & Pacific Canberra 149.129 -35.282
## 634 AUS East Asia & Pacific Canberra 149.129 -35.282
## 635 AUS East Asia & Pacific Canberra 149.129 -35.282
## 636 AUS East Asia & Pacific Canberra 149.129 -35.282
## 637 AUS East Asia & Pacific Canberra 149.129 -35.282
## 638 AUS East Asia & Pacific Canberra 149.129 -35.282
## 639 AUS East Asia & Pacific Canberra 149.129 -35.282
## 640 AUS East Asia & Pacific Canberra 149.129 -35.282
## 641 AUS East Asia & Pacific Canberra 149.129 -35.282
## 642 AUS East Asia & Pacific Canberra 149.129 -35.282
## 643 AUS East Asia & Pacific Canberra 149.129 -35.282
## 644 AUS East Asia & Pacific Canberra 149.129 -35.282
## 645 AUS East Asia & Pacific Canberra 149.129 -35.282
## 646 AUS East Asia & Pacific Canberra 149.129 -35.282
## 647 AUS East Asia & Pacific Canberra 149.129 -35.282
## 648 AUS East Asia & Pacific Canberra 149.129 -35.282
## 649 AUS East Asia & Pacific Canberra 149.129 -35.282
## 650 AUS East Asia & Pacific Canberra 149.129 -35.282
## 651 AUS East Asia & Pacific Canberra 149.129 -35.282
## 652 AUS East Asia & Pacific Canberra 149.129 -35.282
## 653 AUS East Asia & Pacific Canberra 149.129 -35.282
## 654 AUS East Asia & Pacific Canberra 149.129 -35.282
## 655 AUS East Asia & Pacific Canberra 149.129 -35.282
## 656 AUS East Asia & Pacific Canberra 149.129 -35.282
## 657 AUS East Asia & Pacific Canberra 149.129 -35.282
## 658 AUS East Asia & Pacific Canberra 149.129 -35.282
## 659 AUS East Asia & Pacific Canberra 149.129 -35.282
## 660 AUS East Asia & Pacific Canberra 149.129 -35.282
## 661 AUS East Asia & Pacific Canberra 149.129 -35.282
## 662 AUS East Asia & Pacific Canberra 149.129 -35.282
## 663 AUS East Asia & Pacific Canberra 149.129 -35.282
## 664 AUS East Asia & Pacific Canberra 149.129 -35.282
## 665 AUS East Asia & Pacific Canberra 149.129 -35.282
## 666 AUS East Asia & Pacific Canberra 149.129 -35.282
## 667 AUS East Asia & Pacific Canberra 149.129 -35.282
## 668 AUS East Asia & Pacific Canberra 149.129 -35.282
## 669 AUS East Asia & Pacific Canberra 149.129 -35.282
## 670 AUS East Asia & Pacific Canberra 149.129 -35.282
## 671 AUS East Asia & Pacific Canberra 149.129 -35.282
## 672 AUS East Asia & Pacific Canberra 149.129 -35.282
## 673 AUS East Asia & Pacific Canberra 149.129 -35.282
## 674 AUS East Asia & Pacific Canberra 149.129 -35.282
## 675 AUS East Asia & Pacific Canberra 149.129 -35.282
## 676 AUS East Asia & Pacific Canberra 149.129 -35.282
## 677 AUS East Asia & Pacific Canberra 149.129 -35.282
## 678 AUS East Asia & Pacific Canberra 149.129 -35.282
## 679 AUS East Asia & Pacific Canberra 149.129 -35.282
## 680 AUS East Asia & Pacific Canberra 149.129 -35.282
## 681 AUS East Asia & Pacific Canberra 149.129 -35.282
## 682 AUS East Asia & Pacific Canberra 149.129 -35.282
## 683 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 684 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 685 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 686 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 687 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 688 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 689 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 690 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 691 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 692 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 693 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 694 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 695 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 696 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 697 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 698 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 699 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 700 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 701 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 702 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 703 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 704 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 705 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 706 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 707 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 708 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 709 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 710 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 711 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 712 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 713 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 714 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 715 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 716 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 717 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 718 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 719 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 720 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 721 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 722 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 723 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 724 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 725 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 726 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 727 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 728 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 729 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 730 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 731 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 732 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 733 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 734 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 735 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 736 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 737 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 738 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 739 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 740 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 741 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 742 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 743 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 744 ABW Latin America & Caribbean Oranjestad -70.0167 12.5167
## 745 AZE Europe & Central Asia Baku 49.8932 40.3834
## 746 AZE Europe & Central Asia Baku 49.8932 40.3834
## 747 AZE Europe & Central Asia Baku 49.8932 40.3834
## 748 AZE Europe & Central Asia Baku 49.8932 40.3834
## 749 AZE Europe & Central Asia Baku 49.8932 40.3834
## 750 AZE Europe & Central Asia Baku 49.8932 40.3834
## 751 AZE Europe & Central Asia Baku 49.8932 40.3834
## 752 AZE Europe & Central Asia Baku 49.8932 40.3834
## 753 AZE Europe & Central Asia Baku 49.8932 40.3834
## 754 AZE Europe & Central Asia Baku 49.8932 40.3834
## 755 AZE Europe & Central Asia Baku 49.8932 40.3834
## 756 AZE Europe & Central Asia Baku 49.8932 40.3834
## 757 AZE Europe & Central Asia Baku 49.8932 40.3834
## 758 AZE Europe & Central Asia Baku 49.8932 40.3834
## 759 AZE Europe & Central Asia Baku 49.8932 40.3834
## 760 AZE Europe & Central Asia Baku 49.8932 40.3834
## 761 AZE Europe & Central Asia Baku 49.8932 40.3834
## 762 AZE Europe & Central Asia Baku 49.8932 40.3834
## 763 AZE Europe & Central Asia Baku 49.8932 40.3834
## 764 AZE Europe & Central Asia Baku 49.8932 40.3834
## 765 AZE Europe & Central Asia Baku 49.8932 40.3834
## 766 AZE Europe & Central Asia Baku 49.8932 40.3834
## 767 AZE Europe & Central Asia Baku 49.8932 40.3834
## 768 AZE Europe & Central Asia Baku 49.8932 40.3834
## 769 AZE Europe & Central Asia Baku 49.8932 40.3834
## 770 AZE Europe & Central Asia Baku 49.8932 40.3834
## 771 AZE Europe & Central Asia Baku 49.8932 40.3834
## 772 AZE Europe & Central Asia Baku 49.8932 40.3834
## 773 AZE Europe & Central Asia Baku 49.8932 40.3834
## 774 AZE Europe & Central Asia Baku 49.8932 40.3834
## 775 AZE Europe & Central Asia Baku 49.8932 40.3834
## 776 AZE Europe & Central Asia Baku 49.8932 40.3834
## 777 AZE Europe & Central Asia Baku 49.8932 40.3834
## 778 AZE Europe & Central Asia Baku 49.8932 40.3834
## 779 AZE Europe & Central Asia Baku 49.8932 40.3834
## 780 AZE Europe & Central Asia Baku 49.8932 40.3834
## 781 AZE Europe & Central Asia Baku 49.8932 40.3834
## 782 AZE Europe & Central Asia Baku 49.8932 40.3834
## 783 AZE Europe & Central Asia Baku 49.8932 40.3834
## 784 AZE Europe & Central Asia Baku 49.8932 40.3834
## 785 AZE Europe & Central Asia Baku 49.8932 40.3834
## 786 AZE Europe & Central Asia Baku 49.8932 40.3834
## 787 AZE Europe & Central Asia Baku 49.8932 40.3834
## 788 AZE Europe & Central Asia Baku 49.8932 40.3834
## 789 AZE Europe & Central Asia Baku 49.8932 40.3834
## 790 AZE Europe & Central Asia Baku 49.8932 40.3834
## 791 AZE Europe & Central Asia Baku 49.8932 40.3834
## 792 AZE Europe & Central Asia Baku 49.8932 40.3834
## 793 AZE Europe & Central Asia Baku 49.8932 40.3834
## 794 AZE Europe & Central Asia Baku 49.8932 40.3834
## 795 AZE Europe & Central Asia Baku 49.8932 40.3834
## 796 AZE Europe & Central Asia Baku 49.8932 40.3834
## 797 AZE Europe & Central Asia Baku 49.8932 40.3834
## 798 AZE Europe & Central Asia Baku 49.8932 40.3834
## 799 AZE Europe & Central Asia Baku 49.8932 40.3834
## 800 AZE Europe & Central Asia Baku 49.8932 40.3834
## 801 AZE Europe & Central Asia Baku 49.8932 40.3834
## 802 AZE Europe & Central Asia Baku 49.8932 40.3834
## 803 AZE Europe & Central Asia Baku 49.8932 40.3834
## 804 AZE Europe & Central Asia Baku 49.8932 40.3834
## 805 AZE Europe & Central Asia Baku 49.8932 40.3834
## 806 AZE Europe & Central Asia Baku 49.8932 40.3834
## 807 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 808 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 809 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 810 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 811 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 812 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 813 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 814 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 815 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 816 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 817 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 818 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 819 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 820 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 821 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 822 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 823 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 824 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 825 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 826 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 827 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 828 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 829 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 830 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 831 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 832 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 833 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 834 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 835 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 836 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 837 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 838 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 839 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 840 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 841 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 842 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 843 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 844 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 845 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 846 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 847 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 848 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 849 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 850 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 851 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 852 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 853 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 854 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 855 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 856 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 857 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 858 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 859 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 860 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 861 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 862 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 863 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 864 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 865 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 866 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 867 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 868 BIH Europe & Central Asia Sarajevo 18.4214 43.8607
## 869 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 870 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 871 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 872 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 873 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 874 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 875 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 876 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 877 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 878 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 879 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 880 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 881 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 882 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 883 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 884 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 885 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 886 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 887 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 888 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 889 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 890 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 891 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 892 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 893 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 894 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 895 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 896 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 897 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 898 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 899 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 900 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 901 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 902 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 903 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 904 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 905 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 906 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 907 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 908 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 909 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 910 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 911 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 912 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 913 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 914 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 915 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 916 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 917 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 918 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 919 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 920 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 921 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 922 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 923 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 924 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 925 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 926 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 927 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 928 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 929 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 930 BRB Latin America & Caribbean Bridgetown -59.6105 13.0935
## 931 BGD South Asia Dhaka 90.4113 23.7055
## 932 BGD South Asia Dhaka 90.4113 23.7055
## 933 BGD South Asia Dhaka 90.4113 23.7055
## 934 BGD South Asia Dhaka 90.4113 23.7055
## 935 BGD South Asia Dhaka 90.4113 23.7055
## 936 BGD South Asia Dhaka 90.4113 23.7055
## 937 BGD South Asia Dhaka 90.4113 23.7055
## 938 BGD South Asia Dhaka 90.4113 23.7055
## 939 BGD South Asia Dhaka 90.4113 23.7055
## 940 BGD South Asia Dhaka 90.4113 23.7055
## 941 BGD South Asia Dhaka 90.4113 23.7055
## 942 BGD South Asia Dhaka 90.4113 23.7055
## 943 BGD South Asia Dhaka 90.4113 23.7055
## 944 BGD South Asia Dhaka 90.4113 23.7055
## 945 BGD South Asia Dhaka 90.4113 23.7055
## 946 BGD South Asia Dhaka 90.4113 23.7055
## 947 BGD South Asia Dhaka 90.4113 23.7055
## 948 BGD South Asia Dhaka 90.4113 23.7055
## 949 BGD South Asia Dhaka 90.4113 23.7055
## 950 BGD South Asia Dhaka 90.4113 23.7055
## 951 BGD South Asia Dhaka 90.4113 23.7055
## 952 BGD South Asia Dhaka 90.4113 23.7055
## 953 BGD South Asia Dhaka 90.4113 23.7055
## 954 BGD South Asia Dhaka 90.4113 23.7055
## 955 BGD South Asia Dhaka 90.4113 23.7055
## 956 BGD South Asia Dhaka 90.4113 23.7055
## 957 BGD South Asia Dhaka 90.4113 23.7055
## 958 BGD South Asia Dhaka 90.4113 23.7055
## 959 BGD South Asia Dhaka 90.4113 23.7055
## 960 BGD South Asia Dhaka 90.4113 23.7055
## 961 BGD South Asia Dhaka 90.4113 23.7055
## 962 BGD South Asia Dhaka 90.4113 23.7055
## 963 BGD South Asia Dhaka 90.4113 23.7055
## 964 BGD South Asia Dhaka 90.4113 23.7055
## 965 BGD South Asia Dhaka 90.4113 23.7055
## 966 BGD South Asia Dhaka 90.4113 23.7055
## 967 BGD South Asia Dhaka 90.4113 23.7055
## 968 BGD South Asia Dhaka 90.4113 23.7055
## 969 BGD South Asia Dhaka 90.4113 23.7055
## 970 BGD South Asia Dhaka 90.4113 23.7055
## 971 BGD South Asia Dhaka 90.4113 23.7055
## 972 BGD South Asia Dhaka 90.4113 23.7055
## 973 BGD South Asia Dhaka 90.4113 23.7055
## 974 BGD South Asia Dhaka 90.4113 23.7055
## 975 BGD South Asia Dhaka 90.4113 23.7055
## 976 BGD South Asia Dhaka 90.4113 23.7055
## 977 BGD South Asia Dhaka 90.4113 23.7055
## 978 BGD South Asia Dhaka 90.4113 23.7055
## 979 BGD South Asia Dhaka 90.4113 23.7055
## 980 BGD South Asia Dhaka 90.4113 23.7055
## 981 BGD South Asia Dhaka 90.4113 23.7055
## 982 BGD South Asia Dhaka 90.4113 23.7055
## 983 BGD South Asia Dhaka 90.4113 23.7055
## 984 BGD South Asia Dhaka 90.4113 23.7055
## 985 BGD South Asia Dhaka 90.4113 23.7055
## 986 BGD South Asia Dhaka 90.4113 23.7055
## 987 BGD South Asia Dhaka 90.4113 23.7055
## 988 BGD South Asia Dhaka 90.4113 23.7055
## 989 BGD South Asia Dhaka 90.4113 23.7055
## 990 BGD South Asia Dhaka 90.4113 23.7055
## 991 BGD South Asia Dhaka 90.4113 23.7055
## 992 BGD South Asia Dhaka 90.4113 23.7055
## 993 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 994 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 995 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 996 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 997 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 998 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 999 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1000 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1001 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1002 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1003 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1004 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1005 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1006 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1007 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1008 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1009 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1010 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1011 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1012 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1013 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1014 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1015 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1016 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1017 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1018 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1019 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1020 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1021 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1022 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1023 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1024 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1025 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1026 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1027 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1028 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1029 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1030 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1031 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1032 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1033 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1034 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1035 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1036 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1037 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1038 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1039 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1040 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1041 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1042 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1043 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1044 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1045 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1046 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1047 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1048 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1049 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1050 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1051 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1052 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1053 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1054 BEL Europe & Central Asia Brussels 4.36761 50.8371
## 1055 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1056 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1057 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1058 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1059 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1060 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1061 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1062 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1063 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1064 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1065 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1066 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1067 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1068 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1069 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1070 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1071 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1072 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1073 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1074 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1075 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1076 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1077 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1078 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1079 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1080 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1081 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1082 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1083 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1084 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1085 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1086 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1087 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1088 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1089 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1090 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1091 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1092 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1093 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1094 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1095 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1096 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1097 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1098 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1099 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1100 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1101 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1102 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1103 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1104 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1105 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1106 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1107 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1108 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1109 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1110 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1111 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1112 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1113 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1114 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1115 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1116 BFA Sub-Saharan Africa Ouagadougou -1.53395 12.3605
## 1117 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1118 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1119 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1120 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1121 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1122 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1123 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1124 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1125 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1126 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1127 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1128 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1129 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1130 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1131 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1132 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1133 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1134 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1135 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1136 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1137 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1138 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1139 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1140 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1141 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1142 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1143 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1144 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1145 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1146 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1147 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1148 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1149 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1150 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1151 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1152 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1153 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1154 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1155 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1156 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1157 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1158 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1159 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1160 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1161 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1162 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1163 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1164 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1165 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1166 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1167 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1168 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1169 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1170 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1171 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1172 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1173 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1174 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1175 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1176 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1177 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1178 BGR Europe & Central Asia Sofia 23.3238 42.7105
## 1179 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1180 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1181 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1182 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1183 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1184 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1185 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1186 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1187 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1188 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1189 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1190 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1191 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1192 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1193 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1194 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1195 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1196 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1197 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1198 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1199 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1200 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1201 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1202 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1203 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1204 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1205 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1206 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1207 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1208 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1209 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1210 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1211 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1212 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1213 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1214 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1215 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1216 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1217 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1218 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1219 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1220 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1221 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1222 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1223 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1224 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1225 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1226 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1227 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1228 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1229 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1230 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1231 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1232 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1233 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1234 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1235 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1236 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1237 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1238 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1239 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1240 BHR Middle East & North Africa Manama 50.5354 26.1921
## 1241 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1242 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1243 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1244 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1245 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1246 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1247 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1248 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1249 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1250 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1251 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1252 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1253 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1254 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1255 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1256 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1257 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1258 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1259 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1260 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1261 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1262 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1263 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1264 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1265 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1266 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1267 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1268 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1269 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1270 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1271 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1272 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1273 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1274 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1275 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1276 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1277 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1278 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1279 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1280 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1281 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1282 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1283 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1284 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1285 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1286 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1287 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1288 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1289 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1290 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1291 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1292 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1293 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1294 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1295 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1296 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1297 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1298 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1299 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1300 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1301 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1302 BDI Sub-Saharan Africa Bujumbura 29.3639 -3.3784
## 1303 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1304 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1305 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1306 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1307 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1308 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1309 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1310 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1311 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1312 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1313 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1314 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1315 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1316 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1317 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1318 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1319 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1320 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1321 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1322 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1323 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1324 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1325 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1326 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1327 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1328 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1329 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1330 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1331 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1332 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1333 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1334 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1335 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1336 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1337 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1338 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1339 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1340 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1341 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1342 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1343 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1344 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1345 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1346 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1347 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1348 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1349 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1350 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1351 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1352 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1353 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1354 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1355 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1356 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1357 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1358 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1359 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1360 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1361 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1362 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1363 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1364 BEN Sub-Saharan Africa Porto-Novo 2.6323 6.4779
## 1365 BMU North America Hamilton -64.706 32.3293
## 1366 BMU North America Hamilton -64.706 32.3293
## 1367 BMU North America Hamilton -64.706 32.3293
## 1368 BMU North America Hamilton -64.706 32.3293
## 1369 BMU North America Hamilton -64.706 32.3293
## 1370 BMU North America Hamilton -64.706 32.3293
## 1371 BMU North America Hamilton -64.706 32.3293
## 1372 BMU North America Hamilton -64.706 32.3293
## 1373 BMU North America Hamilton -64.706 32.3293
## 1374 BMU North America Hamilton -64.706 32.3293
## 1375 BMU North America Hamilton -64.706 32.3293
## 1376 BMU North America Hamilton -64.706 32.3293
## 1377 BMU North America Hamilton -64.706 32.3293
## 1378 BMU North America Hamilton -64.706 32.3293
## 1379 BMU North America Hamilton -64.706 32.3293
## 1380 BMU North America Hamilton -64.706 32.3293
## 1381 BMU North America Hamilton -64.706 32.3293
## 1382 BMU North America Hamilton -64.706 32.3293
## 1383 BMU North America Hamilton -64.706 32.3293
## 1384 BMU North America Hamilton -64.706 32.3293
## 1385 BMU North America Hamilton -64.706 32.3293
## 1386 BMU North America Hamilton -64.706 32.3293
## 1387 BMU North America Hamilton -64.706 32.3293
## 1388 BMU North America Hamilton -64.706 32.3293
## 1389 BMU North America Hamilton -64.706 32.3293
## 1390 BMU North America Hamilton -64.706 32.3293
## 1391 BMU North America Hamilton -64.706 32.3293
## 1392 BMU North America Hamilton -64.706 32.3293
## 1393 BMU North America Hamilton -64.706 32.3293
## 1394 BMU North America Hamilton -64.706 32.3293
## 1395 BMU North America Hamilton -64.706 32.3293
## 1396 BMU North America Hamilton -64.706 32.3293
## 1397 BMU North America Hamilton -64.706 32.3293
## 1398 BMU North America Hamilton -64.706 32.3293
## 1399 BMU North America Hamilton -64.706 32.3293
## 1400 BMU North America Hamilton -64.706 32.3293
## 1401 BMU North America Hamilton -64.706 32.3293
## 1402 BMU North America Hamilton -64.706 32.3293
## 1403 BMU North America Hamilton -64.706 32.3293
## 1404 BMU North America Hamilton -64.706 32.3293
## 1405 BMU North America Hamilton -64.706 32.3293
## 1406 BMU North America Hamilton -64.706 32.3293
## 1407 BMU North America Hamilton -64.706 32.3293
## 1408 BMU North America Hamilton -64.706 32.3293
## 1409 BMU North America Hamilton -64.706 32.3293
## 1410 BMU North America Hamilton -64.706 32.3293
## 1411 BMU North America Hamilton -64.706 32.3293
## 1412 BMU North America Hamilton -64.706 32.3293
## 1413 BMU North America Hamilton -64.706 32.3293
## 1414 BMU North America Hamilton -64.706 32.3293
## 1415 BMU North America Hamilton -64.706 32.3293
## 1416 BMU North America Hamilton -64.706 32.3293
## 1417 BMU North America Hamilton -64.706 32.3293
## 1418 BMU North America Hamilton -64.706 32.3293
## 1419 BMU North America Hamilton -64.706 32.3293
## 1420 BMU North America Hamilton -64.706 32.3293
## 1421 BMU North America Hamilton -64.706 32.3293
## 1422 BMU North America Hamilton -64.706 32.3293
## 1423 BMU North America Hamilton -64.706 32.3293
## 1424 BMU North America Hamilton -64.706 32.3293
## 1425 BMU North America Hamilton -64.706 32.3293
## 1426 BMU North America Hamilton -64.706 32.3293
## 1427 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1428 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1429 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1430 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1431 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1432 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1433 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1434 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1435 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1436 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1437 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1438 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1439 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1440 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1441 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1442 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1443 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1444 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1445 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1446 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1447 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1448 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1449 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1450 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1451 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1452 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1453 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1454 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1455 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1456 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1457 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1458 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1459 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1460 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1461 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1462 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1463 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1464 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1465 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1466 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1467 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1468 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1469 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1470 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1471 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1472 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1473 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1474 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1475 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1476 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1477 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1478 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1479 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1480 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1481 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1482 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1483 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1484 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1485 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1486 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1487 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1488 BRN East Asia & Pacific Bandar Seri Begawan 114.946 4.94199
## 1489 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1490 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1491 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1492 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1493 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1494 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1495 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1496 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1497 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1498 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1499 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1500 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1501 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1502 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1503 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1504 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1505 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1506 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1507 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1508 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1509 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1510 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1511 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1512 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1513 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1514 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1515 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1516 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1517 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1518 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1519 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1520 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1521 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1522 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1523 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1524 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1525 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1526 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1527 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1528 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1529 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1530 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1531 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1532 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1533 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1534 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1535 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1536 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1537 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1538 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1539 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1540 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1541 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1542 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1543 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1544 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1545 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1546 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1547 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1548 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1549 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1550 BOL Latin America & Caribbean La Paz -66.1936 -13.9908
## 1551 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1552 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1553 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1554 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1555 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1556 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1557 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1558 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1559 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1560 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1561 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1562 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1563 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1564 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1565 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1566 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1567 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1568 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1569 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1570 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1571 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1572 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1573 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1574 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1575 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1576 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1577 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1578 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1579 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1580 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1581 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1582 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1583 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1584 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1585 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1586 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1587 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1588 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1589 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1590 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1591 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1592 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1593 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1594 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1595 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1596 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1597 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1598 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1599 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1600 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1601 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1602 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1603 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1604 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1605 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1606 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1607 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1608 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1609 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1610 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1611 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1612 BRA Latin America & Caribbean Brasilia -47.9292 -15.7801
## 1613 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1614 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1615 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1616 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1617 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1618 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1619 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1620 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1621 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1622 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1623 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1624 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1625 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1626 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1627 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1628 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1629 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1630 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1631 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1632 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1633 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1634 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1635 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1636 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1637 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1638 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1639 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1640 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1641 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1642 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1643 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1644 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1645 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1646 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1647 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1648 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1649 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1650 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1651 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1652 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1653 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1654 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1655 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1656 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1657 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1658 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1659 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1660 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1661 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1662 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1663 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1664 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1665 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1666 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1667 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1668 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1669 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1670 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1671 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1672 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1673 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1674 BHS Latin America & Caribbean Nassau -77.339 25.0661
## 1675 BTN South Asia Thimphu 89.6177 27.5768
## 1676 BTN South Asia Thimphu 89.6177 27.5768
## 1677 BTN South Asia Thimphu 89.6177 27.5768
## 1678 BTN South Asia Thimphu 89.6177 27.5768
## 1679 BTN South Asia Thimphu 89.6177 27.5768
## 1680 BTN South Asia Thimphu 89.6177 27.5768
## 1681 BTN South Asia Thimphu 89.6177 27.5768
## 1682 BTN South Asia Thimphu 89.6177 27.5768
## 1683 BTN South Asia Thimphu 89.6177 27.5768
## 1684 BTN South Asia Thimphu 89.6177 27.5768
## 1685 BTN South Asia Thimphu 89.6177 27.5768
## 1686 BTN South Asia Thimphu 89.6177 27.5768
## 1687 BTN South Asia Thimphu 89.6177 27.5768
## 1688 BTN South Asia Thimphu 89.6177 27.5768
## 1689 BTN South Asia Thimphu 89.6177 27.5768
## 1690 BTN South Asia Thimphu 89.6177 27.5768
## 1691 BTN South Asia Thimphu 89.6177 27.5768
## 1692 BTN South Asia Thimphu 89.6177 27.5768
## 1693 BTN South Asia Thimphu 89.6177 27.5768
## 1694 BTN South Asia Thimphu 89.6177 27.5768
## 1695 BTN South Asia Thimphu 89.6177 27.5768
## 1696 BTN South Asia Thimphu 89.6177 27.5768
## 1697 BTN South Asia Thimphu 89.6177 27.5768
## 1698 BTN South Asia Thimphu 89.6177 27.5768
## 1699 BTN South Asia Thimphu 89.6177 27.5768
## 1700 BTN South Asia Thimphu 89.6177 27.5768
## 1701 BTN South Asia Thimphu 89.6177 27.5768
## 1702 BTN South Asia Thimphu 89.6177 27.5768
## 1703 BTN South Asia Thimphu 89.6177 27.5768
## 1704 BTN South Asia Thimphu 89.6177 27.5768
## 1705 BTN South Asia Thimphu 89.6177 27.5768
## 1706 BTN South Asia Thimphu 89.6177 27.5768
## 1707 BTN South Asia Thimphu 89.6177 27.5768
## 1708 BTN South Asia Thimphu 89.6177 27.5768
## 1709 BTN South Asia Thimphu 89.6177 27.5768
## 1710 BTN South Asia Thimphu 89.6177 27.5768
## 1711 BTN South Asia Thimphu 89.6177 27.5768
## 1712 BTN South Asia Thimphu 89.6177 27.5768
## 1713 BTN South Asia Thimphu 89.6177 27.5768
## 1714 BTN South Asia Thimphu 89.6177 27.5768
## 1715 BTN South Asia Thimphu 89.6177 27.5768
## 1716 BTN South Asia Thimphu 89.6177 27.5768
## 1717 BTN South Asia Thimphu 89.6177 27.5768
## 1718 BTN South Asia Thimphu 89.6177 27.5768
## 1719 BTN South Asia Thimphu 89.6177 27.5768
## 1720 BTN South Asia Thimphu 89.6177 27.5768
## 1721 BTN South Asia Thimphu 89.6177 27.5768
## 1722 BTN South Asia Thimphu 89.6177 27.5768
## 1723 BTN South Asia Thimphu 89.6177 27.5768
## 1724 BTN South Asia Thimphu 89.6177 27.5768
## 1725 BTN South Asia Thimphu 89.6177 27.5768
## 1726 BTN South Asia Thimphu 89.6177 27.5768
## 1727 BTN South Asia Thimphu 89.6177 27.5768
## 1728 BTN South Asia Thimphu 89.6177 27.5768
## 1729 BTN South Asia Thimphu 89.6177 27.5768
## 1730 BTN South Asia Thimphu 89.6177 27.5768
## 1731 BTN South Asia Thimphu 89.6177 27.5768
## 1732 BTN South Asia Thimphu 89.6177 27.5768
## 1733 BTN South Asia Thimphu 89.6177 27.5768
## 1734 BTN South Asia Thimphu 89.6177 27.5768
## 1735 BTN South Asia Thimphu 89.6177 27.5768
## 1736 BTN South Asia Thimphu 89.6177 27.5768
## 1737 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1738 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1739 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1740 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1741 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1742 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1743 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1744 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1745 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1746 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1747 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1748 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1749 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1750 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1751 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1752 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1753 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1754 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1755 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1756 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1757 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1758 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1759 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1760 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1761 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1762 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1763 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1764 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1765 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1766 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1767 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1768 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1769 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1770 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1771 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1772 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1773 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1774 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1775 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1776 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1777 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1778 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1779 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1780 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1781 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1782 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1783 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1784 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1785 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1786 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1787 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1788 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1789 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1790 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1791 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1792 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1793 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1794 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1795 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1796 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1797 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1798 BWA Sub-Saharan Africa Gaborone 25.9201 -24.6544
## 1799 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1800 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1801 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1802 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1803 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1804 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1805 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1806 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1807 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1808 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1809 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1810 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1811 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1812 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1813 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1814 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1815 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1816 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1817 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1818 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1819 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1820 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1821 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1822 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1823 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1824 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1825 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1826 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1827 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1828 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1829 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1830 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1831 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1832 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1833 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1834 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1835 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1836 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1837 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1838 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1839 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1840 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1841 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1842 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1843 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1844 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1845 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1846 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1847 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1848 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1849 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1850 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1851 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1852 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1853 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1854 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1855 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1856 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1857 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1858 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1859 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1860 BLR Europe & Central Asia Minsk 27.5766 53.9678
## 1861 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1862 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1863 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1864 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1865 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1866 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1867 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1868 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1869 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1870 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1871 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1872 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1873 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1874 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1875 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1876 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1877 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1878 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1879 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1880 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1881 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1882 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1883 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1884 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1885 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1886 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1887 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1888 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1889 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1890 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1891 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1892 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1893 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1894 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1895 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1896 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1897 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1898 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1899 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1900 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1901 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1902 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1903 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1904 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1905 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1906 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1907 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1908 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1909 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1910 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1911 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1912 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1913 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1914 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1915 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1916 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1917 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1918 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1919 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1920 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1921 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1922 BLZ Latin America & Caribbean Belmopan -88.7713 17.2534
## 1923 CAN North America Ottawa -75.6919 45.4215
## 1924 CAN North America Ottawa -75.6919 45.4215
## 1925 CAN North America Ottawa -75.6919 45.4215
## 1926 CAN North America Ottawa -75.6919 45.4215
## 1927 CAN North America Ottawa -75.6919 45.4215
## 1928 CAN North America Ottawa -75.6919 45.4215
## 1929 CAN North America Ottawa -75.6919 45.4215
## 1930 CAN North America Ottawa -75.6919 45.4215
## 1931 CAN North America Ottawa -75.6919 45.4215
## 1932 CAN North America Ottawa -75.6919 45.4215
## 1933 CAN North America Ottawa -75.6919 45.4215
## 1934 CAN North America Ottawa -75.6919 45.4215
## 1935 CAN North America Ottawa -75.6919 45.4215
## 1936 CAN North America Ottawa -75.6919 45.4215
## 1937 CAN North America Ottawa -75.6919 45.4215
## 1938 CAN North America Ottawa -75.6919 45.4215
## 1939 CAN North America Ottawa -75.6919 45.4215
## 1940 CAN North America Ottawa -75.6919 45.4215
## 1941 CAN North America Ottawa -75.6919 45.4215
## 1942 CAN North America Ottawa -75.6919 45.4215
## 1943 CAN North America Ottawa -75.6919 45.4215
## 1944 CAN North America Ottawa -75.6919 45.4215
## 1945 CAN North America Ottawa -75.6919 45.4215
## 1946 CAN North America Ottawa -75.6919 45.4215
## 1947 CAN North America Ottawa -75.6919 45.4215
## 1948 CAN North America Ottawa -75.6919 45.4215
## 1949 CAN North America Ottawa -75.6919 45.4215
## 1950 CAN North America Ottawa -75.6919 45.4215
## 1951 CAN North America Ottawa -75.6919 45.4215
## 1952 CAN North America Ottawa -75.6919 45.4215
## 1953 CAN North America Ottawa -75.6919 45.4215
## 1954 CAN North America Ottawa -75.6919 45.4215
## 1955 CAN North America Ottawa -75.6919 45.4215
## 1956 CAN North America Ottawa -75.6919 45.4215
## 1957 CAN North America Ottawa -75.6919 45.4215
## 1958 CAN North America Ottawa -75.6919 45.4215
## 1959 CAN North America Ottawa -75.6919 45.4215
## 1960 CAN North America Ottawa -75.6919 45.4215
## 1961 CAN North America Ottawa -75.6919 45.4215
## 1962 CAN North America Ottawa -75.6919 45.4215
## 1963 CAN North America Ottawa -75.6919 45.4215
## 1964 CAN North America Ottawa -75.6919 45.4215
## 1965 CAN North America Ottawa -75.6919 45.4215
## 1966 CAN North America Ottawa -75.6919 45.4215
## 1967 CAN North America Ottawa -75.6919 45.4215
## 1968 CAN North America Ottawa -75.6919 45.4215
## 1969 CAN North America Ottawa -75.6919 45.4215
## 1970 CAN North America Ottawa -75.6919 45.4215
## 1971 CAN North America Ottawa -75.6919 45.4215
## 1972 CAN North America Ottawa -75.6919 45.4215
## 1973 CAN North America Ottawa -75.6919 45.4215
## 1974 CAN North America Ottawa -75.6919 45.4215
## 1975 CAN North America Ottawa -75.6919 45.4215
## 1976 CAN North America Ottawa -75.6919 45.4215
## 1977 CAN North America Ottawa -75.6919 45.4215
## 1978 CAN North America Ottawa -75.6919 45.4215
## 1979 CAN North America Ottawa -75.6919 45.4215
## 1980 CAN North America Ottawa -75.6919 45.4215
## 1981 CAN North America Ottawa -75.6919 45.4215
## 1982 CAN North America Ottawa -75.6919 45.4215
## 1983 CAN North America Ottawa -75.6919 45.4215
## 1984 CAN North America Ottawa -75.6919 45.4215
## 1985 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1986 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1987 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1988 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1989 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1990 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1991 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1992 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1993 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1994 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1995 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1996 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1997 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1998 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 1999 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2000 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2001 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2002 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2003 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2004 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2005 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2006 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2007 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2008 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2009 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2010 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2011 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2012 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2013 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2014 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2015 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2016 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2017 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2018 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2019 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2020 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2021 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2022 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2023 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2024 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2025 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2026 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2027 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2028 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2029 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2030 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2031 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2032 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2033 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2034 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2035 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2036 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2037 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2038 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2039 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2040 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2041 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2042 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2043 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2044 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2045 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2046 COD Sub-Saharan Africa Kinshasa 15.3222 -4.325
## 2047 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2048 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2049 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2050 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2051 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2052 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2053 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2054 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2055 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2056 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2057 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2058 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2059 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2060 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2061 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2062 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2063 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2064 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2065 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2066 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2067 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2068 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2069 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2070 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2071 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2072 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2073 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2074 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2075 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2076 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2077 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2078 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2079 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2080 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2081 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2082 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2083 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2084 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2085 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2086 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2087 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2088 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2089 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2090 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2091 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2092 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2093 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2094 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2095 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2096 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2097 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2098 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2099 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2100 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2101 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2102 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2103 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2104 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2105 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2106 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2107 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2108 CAF Sub-Saharan Africa Bangui 21.6407 5.63056
## 2109 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2110 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2111 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2112 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2113 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2114 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2115 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2116 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2117 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2118 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2119 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2120 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2121 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2122 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2123 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2124 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2125 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2126 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2127 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2128 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2129 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2130 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2131 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2132 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2133 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2134 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2135 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2136 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2137 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2138 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2139 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2140 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2141 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2142 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2143 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2144 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2145 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2146 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2147 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2148 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2149 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2150 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2151 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2152 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2153 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2154 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2155 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2156 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2157 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2158 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2159 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2160 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2161 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2162 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2163 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2164 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2165 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2166 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2167 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2168 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2169 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2170 COG Sub-Saharan Africa Brazzaville 15.2662 -4.2767
## 2171 CHE Europe & Central Asia Bern 7.44821 46.948
## 2172 CHE Europe & Central Asia Bern 7.44821 46.948
## 2173 CHE Europe & Central Asia Bern 7.44821 46.948
## 2174 CHE Europe & Central Asia Bern 7.44821 46.948
## 2175 CHE Europe & Central Asia Bern 7.44821 46.948
## 2176 CHE Europe & Central Asia Bern 7.44821 46.948
## 2177 CHE Europe & Central Asia Bern 7.44821 46.948
## 2178 CHE Europe & Central Asia Bern 7.44821 46.948
## 2179 CHE Europe & Central Asia Bern 7.44821 46.948
## 2180 CHE Europe & Central Asia Bern 7.44821 46.948
## 2181 CHE Europe & Central Asia Bern 7.44821 46.948
## 2182 CHE Europe & Central Asia Bern 7.44821 46.948
## 2183 CHE Europe & Central Asia Bern 7.44821 46.948
## 2184 CHE Europe & Central Asia Bern 7.44821 46.948
## 2185 CHE Europe & Central Asia Bern 7.44821 46.948
## 2186 CHE Europe & Central Asia Bern 7.44821 46.948
## 2187 CHE Europe & Central Asia Bern 7.44821 46.948
## 2188 CHE Europe & Central Asia Bern 7.44821 46.948
## 2189 CHE Europe & Central Asia Bern 7.44821 46.948
## 2190 CHE Europe & Central Asia Bern 7.44821 46.948
## 2191 CHE Europe & Central Asia Bern 7.44821 46.948
## 2192 CHE Europe & Central Asia Bern 7.44821 46.948
## 2193 CHE Europe & Central Asia Bern 7.44821 46.948
## 2194 CHE Europe & Central Asia Bern 7.44821 46.948
## 2195 CHE Europe & Central Asia Bern 7.44821 46.948
## 2196 CHE Europe & Central Asia Bern 7.44821 46.948
## 2197 CHE Europe & Central Asia Bern 7.44821 46.948
## 2198 CHE Europe & Central Asia Bern 7.44821 46.948
## 2199 CHE Europe & Central Asia Bern 7.44821 46.948
## 2200 CHE Europe & Central Asia Bern 7.44821 46.948
## 2201 CHE Europe & Central Asia Bern 7.44821 46.948
## 2202 CHE Europe & Central Asia Bern 7.44821 46.948
## 2203 CHE Europe & Central Asia Bern 7.44821 46.948
## 2204 CHE Europe & Central Asia Bern 7.44821 46.948
## 2205 CHE Europe & Central Asia Bern 7.44821 46.948
## 2206 CHE Europe & Central Asia Bern 7.44821 46.948
## 2207 CHE Europe & Central Asia Bern 7.44821 46.948
## 2208 CHE Europe & Central Asia Bern 7.44821 46.948
## 2209 CHE Europe & Central Asia Bern 7.44821 46.948
## 2210 CHE Europe & Central Asia Bern 7.44821 46.948
## 2211 CHE Europe & Central Asia Bern 7.44821 46.948
## 2212 CHE Europe & Central Asia Bern 7.44821 46.948
## 2213 CHE Europe & Central Asia Bern 7.44821 46.948
## 2214 CHE Europe & Central Asia Bern 7.44821 46.948
## 2215 CHE Europe & Central Asia Bern 7.44821 46.948
## 2216 CHE Europe & Central Asia Bern 7.44821 46.948
## 2217 CHE Europe & Central Asia Bern 7.44821 46.948
## 2218 CHE Europe & Central Asia Bern 7.44821 46.948
## 2219 CHE Europe & Central Asia Bern 7.44821 46.948
## 2220 CHE Europe & Central Asia Bern 7.44821 46.948
## 2221 CHE Europe & Central Asia Bern 7.44821 46.948
## 2222 CHE Europe & Central Asia Bern 7.44821 46.948
## 2223 CHE Europe & Central Asia Bern 7.44821 46.948
## 2224 CHE Europe & Central Asia Bern 7.44821 46.948
## 2225 CHE Europe & Central Asia Bern 7.44821 46.948
## 2226 CHE Europe & Central Asia Bern 7.44821 46.948
## 2227 CHE Europe & Central Asia Bern 7.44821 46.948
## 2228 CHE Europe & Central Asia Bern 7.44821 46.948
## 2229 CHE Europe & Central Asia Bern 7.44821 46.948
## 2230 CHE Europe & Central Asia Bern 7.44821 46.948
## 2231 CHE Europe & Central Asia Bern 7.44821 46.948
## 2232 CHE Europe & Central Asia Bern 7.44821 46.948
## 2233 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2234 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2235 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2236 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2237 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2238 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2239 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2240 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2241 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2242 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2243 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2244 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2245 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2246 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2247 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2248 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2249 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2250 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2251 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2252 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2253 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2254 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2255 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2256 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2257 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2258 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2259 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2260 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2261 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2262 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2263 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2264 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2265 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2266 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2267 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2268 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2269 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2270 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2271 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2272 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2273 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2274 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2275 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2276 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2277 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2278 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2279 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2280 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2281 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2282 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2283 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2284 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2285 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2286 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2287 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2288 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2289 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2290 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2291 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2292 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2293 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2294 CIV Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2295 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2296 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2297 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2298 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2299 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2300 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2301 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2302 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2303 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2304 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2305 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2306 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2307 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2308 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2309 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2310 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2311 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2312 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2313 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2314 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2315 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2316 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2317 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2318 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2319 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2320 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2321 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2322 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2323 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2324 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2325 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2326 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2327 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2328 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2329 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2330 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2331 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2332 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2333 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2334 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2335 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2336 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2337 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2338 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2339 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2340 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2341 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2342 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2343 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2344 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2345 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2346 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2347 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2348 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2349 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2350 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2351 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2352 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2353 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2354 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2355 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2356 CHL Latin America & Caribbean Santiago -70.6475 -33.475
## 2357 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2358 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2359 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2360 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2361 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2362 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2363 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2364 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2365 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2366 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2367 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2368 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2369 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2370 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2371 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2372 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2373 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2374 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2375 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2376 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2377 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2378 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2379 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2380 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2381 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2382 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2383 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2384 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2385 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2386 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2387 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2388 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2389 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2390 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2391 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2392 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2393 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2394 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2395 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2396 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2397 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2398 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2399 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2400 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2401 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2402 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2403 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2404 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2405 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2406 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2407 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2408 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2409 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2410 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2411 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2412 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2413 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2414 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2415 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2416 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2417 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2418 CMR Sub-Saharan Africa Yaounde 11.5174 3.8721
## 2419 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2420 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2421 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2422 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2423 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2424 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2425 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2426 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2427 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2428 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2429 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2430 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2431 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2432 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2433 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2434 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2435 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2436 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2437 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2438 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2439 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2440 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2441 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2442 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2443 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2444 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2445 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2446 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2447 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2448 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2449 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2450 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2451 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2452 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2453 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2454 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2455 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2456 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2457 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2458 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2459 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2460 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2461 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2462 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2463 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2464 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2465 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2466 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2467 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2468 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2469 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2470 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2471 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2472 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2473 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2474 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2475 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2476 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2477 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2478 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2479 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2480 CHN East Asia & Pacific Beijing 116.286 40.0495
## 2481 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2482 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2483 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2484 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2485 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2486 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2487 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2488 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2489 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2490 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2491 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2492 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2493 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2494 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2495 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2496 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2497 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2498 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2499 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2500 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2501 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2502 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2503 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2504 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2505 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2506 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2507 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2508 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2509 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2510 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2511 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2512 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2513 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2514 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2515 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2516 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2517 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2518 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2519 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2520 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2521 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2522 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2523 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2524 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2525 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2526 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2527 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2528 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2529 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2530 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2531 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2532 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2533 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2534 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2535 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2536 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2537 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2538 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2539 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2540 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2541 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2542 COL Latin America & Caribbean Bogota -74.082 4.60987
## 2543 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2544 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2545 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2546 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2547 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2548 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2549 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2550 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2551 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2552 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2553 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2554 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2555 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2556 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2557 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2558 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2559 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2560 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2561 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2562 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2563 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2564 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2565 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2566 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2567 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2568 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2569 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2570 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2571 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2572 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2573 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2574 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2575 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2576 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2577 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2578 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2579 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2580 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2581 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2582 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2583 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2584 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2585 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2586 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2587 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2588 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2589 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2590 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2591 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2592 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2593 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2594 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2595 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2596 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2597 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2598 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2599 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2600 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2601 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2602 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2603 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2604 CRI Latin America & Caribbean San Jose -84.0089 9.63701
## 2605 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2606 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2607 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2608 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2609 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2610 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2611 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2612 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2613 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2614 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2615 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2616 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2617 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2618 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2619 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2620 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2621 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2622 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2623 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2624 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2625 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2626 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2627 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2628 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2629 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2630 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2631 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2632 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2633 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2634 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2635 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2636 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2637 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2638 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2639 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2640 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2641 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2642 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2643 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2644 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2645 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2646 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2647 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2648 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2649 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2650 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2651 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2652 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2653 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2654 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2655 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2656 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2657 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2658 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2659 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2660 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2661 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2662 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2663 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2664 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2665 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2666 CUB Latin America & Caribbean Havana -82.3667 23.1333
## 2667 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2668 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2669 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2670 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2671 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2672 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2673 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2674 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2675 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2676 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2677 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2678 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2679 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2680 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2681 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2682 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2683 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2684 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2685 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2686 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2687 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2688 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2689 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2690 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2691 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2692 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2693 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2694 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2695 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2696 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2697 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2698 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2699 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2700 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2701 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2702 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2703 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2704 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2705 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2706 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2707 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2708 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2709 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2710 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2711 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2712 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2713 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2714 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2715 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2716 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2717 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2718 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2719 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2720 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2721 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2722 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2723 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2724 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2725 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2726 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2727 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2728 CPV Sub-Saharan Africa Praia -23.5087 14.9218
## 2729 CUW Latin America & Caribbean Willemstad
## 2730 CUW Latin America & Caribbean Willemstad
## 2731 CUW Latin America & Caribbean Willemstad
## 2732 CUW Latin America & Caribbean Willemstad
## 2733 CUW Latin America & Caribbean Willemstad
## 2734 CUW Latin America & Caribbean Willemstad
## 2735 CUW Latin America & Caribbean Willemstad
## 2736 CUW Latin America & Caribbean Willemstad
## 2737 CUW Latin America & Caribbean Willemstad
## 2738 CUW Latin America & Caribbean Willemstad
## 2739 CUW Latin America & Caribbean Willemstad
## 2740 CUW Latin America & Caribbean Willemstad
## 2741 CUW Latin America & Caribbean Willemstad
## 2742 CUW Latin America & Caribbean Willemstad
## 2743 CUW Latin America & Caribbean Willemstad
## 2744 CUW Latin America & Caribbean Willemstad
## 2745 CUW Latin America & Caribbean Willemstad
## 2746 CUW Latin America & Caribbean Willemstad
## 2747 CUW Latin America & Caribbean Willemstad
## 2748 CUW Latin America & Caribbean Willemstad
## 2749 CUW Latin America & Caribbean Willemstad
## 2750 CUW Latin America & Caribbean Willemstad
## 2751 CUW Latin America & Caribbean Willemstad
## 2752 CUW Latin America & Caribbean Willemstad
## 2753 CUW Latin America & Caribbean Willemstad
## 2754 CUW Latin America & Caribbean Willemstad
## 2755 CUW Latin America & Caribbean Willemstad
## 2756 CUW Latin America & Caribbean Willemstad
## 2757 CUW Latin America & Caribbean Willemstad
## 2758 CUW Latin America & Caribbean Willemstad
## 2759 CUW Latin America & Caribbean Willemstad
## 2760 CUW Latin America & Caribbean Willemstad
## 2761 CUW Latin America & Caribbean Willemstad
## 2762 CUW Latin America & Caribbean Willemstad
## 2763 CUW Latin America & Caribbean Willemstad
## 2764 CUW Latin America & Caribbean Willemstad
## 2765 CUW Latin America & Caribbean Willemstad
## 2766 CUW Latin America & Caribbean Willemstad
## 2767 CUW Latin America & Caribbean Willemstad
## 2768 CUW Latin America & Caribbean Willemstad
## 2769 CUW Latin America & Caribbean Willemstad
## 2770 CUW Latin America & Caribbean Willemstad
## 2771 CUW Latin America & Caribbean Willemstad
## 2772 CUW Latin America & Caribbean Willemstad
## 2773 CUW Latin America & Caribbean Willemstad
## 2774 CUW Latin America & Caribbean Willemstad
## 2775 CUW Latin America & Caribbean Willemstad
## 2776 CUW Latin America & Caribbean Willemstad
## 2777 CUW Latin America & Caribbean Willemstad
## 2778 CUW Latin America & Caribbean Willemstad
## 2779 CUW Latin America & Caribbean Willemstad
## 2780 CUW Latin America & Caribbean Willemstad
## 2781 CUW Latin America & Caribbean Willemstad
## 2782 CUW Latin America & Caribbean Willemstad
## 2783 CUW Latin America & Caribbean Willemstad
## 2784 CUW Latin America & Caribbean Willemstad
## 2785 CUW Latin America & Caribbean Willemstad
## 2786 CUW Latin America & Caribbean Willemstad
## 2787 CUW Latin America & Caribbean Willemstad
## 2788 CUW Latin America & Caribbean Willemstad
## 2789 CUW Latin America & Caribbean Willemstad
## 2790 CUW Latin America & Caribbean Willemstad
## 2791 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2792 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2793 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2794 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2795 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2796 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2797 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2798 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2799 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2800 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2801 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2802 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2803 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2804 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2805 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2806 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2807 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2808 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2809 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2810 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2811 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2812 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2813 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2814 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2815 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2816 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2817 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2818 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2819 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2820 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2821 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2822 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2823 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2824 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2825 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2826 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2827 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2828 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2829 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2830 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2831 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2832 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2833 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2834 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2835 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2836 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2837 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2838 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2839 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2840 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2841 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2842 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2843 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2844 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2845 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2846 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2847 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2848 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2849 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2850 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2851 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2852 CYP Europe & Central Asia Nicosia 33.3736 35.1676
## 2853 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2854 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2855 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2856 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2857 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2858 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2859 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2860 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2861 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2862 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2863 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2864 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2865 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2866 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2867 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2868 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2869 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2870 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2871 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2872 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2873 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2874 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2875 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2876 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2877 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2878 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2879 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2880 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2881 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2882 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2883 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2884 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2885 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2886 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2887 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2888 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2889 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2890 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2891 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2892 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2893 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2894 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2895 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2896 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2897 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2898 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2899 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2900 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2901 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2902 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2903 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2904 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2905 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2906 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2907 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2908 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2909 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2910 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2911 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2912 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2913 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2914 DEU Europe & Central Asia Berlin 13.4115 52.5235
## 2915 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2916 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2917 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2918 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2919 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2920 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2921 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2922 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2923 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2924 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2925 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2926 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2927 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2928 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2929 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2930 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2931 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2932 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2933 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2934 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2935 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2936 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2937 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2938 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2939 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2940 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2941 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2942 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2943 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2944 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2945 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2946 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2947 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2948 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2949 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2950 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2951 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2952 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2953 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2954 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2955 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2956 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2957 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2958 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2959 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2960 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2961 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2962 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2963 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2964 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2965 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2966 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2967 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2968 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2969 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2970 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2971 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2972 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2973 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2974 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2975 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2976 DJI Middle East & North Africa Djibouti 43.1425 11.5806
## 2977 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2978 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2979 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2980 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2981 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2982 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2983 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2984 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2985 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2986 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2987 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2988 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2989 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2990 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2991 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2992 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2993 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2994 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2995 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2996 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2997 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2998 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 2999 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3000 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3001 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3002 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3003 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3004 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3005 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3006 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3007 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3008 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3009 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3010 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3011 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3012 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3013 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3014 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3015 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3016 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3017 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3018 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3019 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3020 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3021 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3022 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3023 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3024 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3025 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3026 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3027 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3028 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3029 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3030 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3031 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3032 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3033 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3034 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3035 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3036 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3037 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3038 DNK Europe & Central Asia Copenhagen 12.5681 55.6763
## 3039 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3040 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3041 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3042 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3043 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3044 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3045 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3046 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3047 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3048 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3049 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3050 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3051 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3052 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3053 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3054 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3055 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3056 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3057 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3058 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3059 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3060 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3061 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3062 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3063 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3064 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3065 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3066 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3067 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3068 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3069 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3070 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3071 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3072 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3073 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3074 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3075 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3076 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3077 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3078 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3079 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3080 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3081 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3082 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3083 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3084 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3085 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3086 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3087 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3088 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3089 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3090 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3091 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3092 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3093 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3094 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3095 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3096 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3097 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3098 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3099 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3100 DMA Latin America & Caribbean Roseau -61.39 15.2976
## 3101 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3102 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3103 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3104 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3105 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3106 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3107 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3108 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3109 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3110 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3111 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3112 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3113 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3114 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3115 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3116 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3117 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3118 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3119 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3120 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3121 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3122 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3123 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3124 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3125 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3126 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3127 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3128 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3129 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3130 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3131 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3132 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3133 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3134 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3135 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3136 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3137 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3138 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3139 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3140 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3141 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3142 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3143 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3144 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3145 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3146 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3147 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3148 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3149 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3150 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3151 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3152 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3153 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3154 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3155 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3156 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3157 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3158 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3159 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3160 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3161 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3162 DOM Latin America & Caribbean Santo Domingo -69.8908 18.479
## 3163 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3164 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3165 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3166 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3167 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3168 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3169 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3170 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3171 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3172 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3173 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3174 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3175 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3176 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3177 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3178 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3179 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3180 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3181 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3182 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3183 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3184 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3185 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3186 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3187 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3188 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3189 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3190 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3191 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3192 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3193 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3194 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3195 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3196 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3197 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3198 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3199 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3200 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3201 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3202 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3203 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3204 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3205 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3206 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3207 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3208 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3209 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3210 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3211 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3212 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3213 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3214 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3215 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3216 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3217 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3218 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3219 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3220 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3221 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3222 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3223 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3224 DZA Middle East & North Africa Algiers 3.05097 36.7397
## 3225 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3226 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3227 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3228 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3229 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3230 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3231 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3232 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3233 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3234 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3235 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3236 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3237 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3238 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3239 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3240 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3241 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3242 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3243 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3244 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3245 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3246 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3247 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3248 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3249 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3250 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3251 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3252 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3253 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3254 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3255 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3256 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3257 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3258 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3259 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3260 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3261 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3262 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3263 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3264 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3265 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3266 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3267 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3268 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3269 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3270 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3271 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3272 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3273 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3274 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3275 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3276 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3277 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3278 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3279 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3280 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3281 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3282 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3283 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3284 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3285 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3286 ECU Latin America & Caribbean Quito -78.5243 -0.229498
## 3287 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3288 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3289 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3290 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3291 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3292 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3293 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3294 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3295 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3296 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3297 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3298 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3299 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3300 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3301 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3302 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3303 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3304 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3305 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3306 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3307 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3308 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3309 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3310 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3311 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3312 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3313 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3314 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3315 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3316 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3317 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3318 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3319 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3320 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3321 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3322 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3323 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3324 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3325 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3326 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3327 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3328 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3329 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3330 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3331 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3332 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3333 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3334 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3335 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3336 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3337 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3338 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3339 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3340 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3341 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3342 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3343 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3344 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3345 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3346 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3347 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3348 EST Europe & Central Asia Tallinn 24.7586 59.4392
## 3349 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3350 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3351 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3352 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3353 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3354 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3355 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3356 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3357 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3358 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3359 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3360 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3361 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3362 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3363 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3364 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3365 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3366 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3367 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3368 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3369 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3370 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3371 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3372 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3373 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3374 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3375 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3376 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3377 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3378 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3379 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3380 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3381 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3382 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3383 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3384 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3385 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3386 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3387 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3388 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3389 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3390 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3391 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3392 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3393 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3394 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3395 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3396 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3397 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3398 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3399 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3400 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3401 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3402 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3403 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3404 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3405 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3406 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3407 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3408 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3409 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3410 EGY Middle East & North Africa Cairo 31.2461 30.0982
## 3411 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3412 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3413 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3414 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3415 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3416 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3417 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3418 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3419 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3420 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3421 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3422 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3423 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3424 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3425 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3426 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3427 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3428 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3429 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3430 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3431 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3432 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3433 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3434 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3435 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3436 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3437 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3438 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3439 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3440 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3441 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3442 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3443 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3444 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3445 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3446 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3447 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3448 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3449 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3450 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3451 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3452 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3453 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3454 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3455 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3456 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3457 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3458 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3459 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3460 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3461 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3462 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3463 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3464 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3465 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3466 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3467 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3468 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3469 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3470 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3471 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3472 ERI Sub-Saharan Africa Asmara 38.9183 15.3315
## 3473 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3474 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3475 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3476 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3477 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3478 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3479 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3480 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3481 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3482 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3483 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3484 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3485 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3486 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3487 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3488 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3489 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3490 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3491 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3492 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3493 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3494 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3495 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3496 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3497 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3498 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3499 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3500 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3501 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3502 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3503 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3504 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3505 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3506 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3507 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3508 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3509 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3510 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3511 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3512 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3513 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3514 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3515 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3516 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3517 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3518 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3519 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3520 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3521 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3522 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3523 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3524 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3525 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3526 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3527 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3528 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3529 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3530 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3531 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3532 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3533 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3534 ESP Europe & Central Asia Madrid -3.70327 40.4167
## 3535 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3536 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3537 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3538 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3539 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3540 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3541 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3542 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3543 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3544 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3545 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3546 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3547 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3548 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3549 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3550 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3551 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3552 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3553 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3554 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3555 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3556 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3557 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3558 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3559 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3560 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3561 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3562 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3563 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3564 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3565 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3566 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3567 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3568 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3569 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3570 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3571 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3572 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3573 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3574 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3575 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3576 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3577 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3578 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3579 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3580 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3581 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3582 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3583 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3584 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3585 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3586 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3587 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3588 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3589 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3590 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3591 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3592 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3593 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3594 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3595 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3596 ETH Sub-Saharan Africa Addis Ababa 38.7468 9.02274
## 3597 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3598 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3599 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3600 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3601 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3602 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3603 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3604 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3605 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3606 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3607 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3608 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3609 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3610 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3611 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3612 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3613 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3614 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3615 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3616 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3617 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3618 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3619 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3620 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3621 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3622 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3623 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3624 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3625 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3626 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3627 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3628 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3629 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3630 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3631 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3632 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3633 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3634 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3635 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3636 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3637 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3638 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3639 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3640 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3641 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3642 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3643 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3644 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3645 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3646 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3647 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3648 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3649 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3650 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3651 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3652 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3653 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3654 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3655 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3656 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3657 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3658 FIN Europe & Central Asia Helsinki 24.9525 60.1608
## 3659 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3660 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3661 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3662 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3663 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3664 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3665 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3666 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3667 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3668 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3669 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3670 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3671 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3672 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3673 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3674 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3675 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3676 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3677 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3678 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3679 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3680 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3681 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3682 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3683 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3684 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3685 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3686 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3687 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3688 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3689 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3690 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3691 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3692 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3693 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3694 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3695 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3696 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3697 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3698 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3699 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3700 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3701 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3702 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3703 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3704 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3705 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3706 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3707 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3708 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3709 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3710 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3711 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3712 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3713 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3714 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3715 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3716 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3717 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3718 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3719 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3720 FJI East Asia & Pacific Suva 178.399 -18.1149
## 3721 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3722 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3723 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3724 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3725 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3726 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3727 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3728 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3729 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3730 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3731 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3732 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3733 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3734 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3735 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3736 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3737 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3738 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3739 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3740 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3741 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3742 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3743 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3744 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3745 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3746 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3747 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3748 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3749 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3750 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3751 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3752 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3753 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3754 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3755 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3756 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3757 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3758 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3759 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3760 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3761 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3762 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3763 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3764 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3765 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3766 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3767 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3768 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3769 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3770 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3771 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3772 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3773 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3774 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3775 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3776 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3777 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3778 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3779 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3780 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3781 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3782 FSM East Asia & Pacific Palikir 158.185 6.91771
## 3783 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3784 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3785 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3786 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3787 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3788 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3789 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3790 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3791 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3792 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3793 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3794 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3795 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3796 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3797 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3798 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3799 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3800 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3801 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3802 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3803 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3804 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3805 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3806 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3807 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3808 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3809 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3810 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3811 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3812 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3813 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3814 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3815 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3816 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3817 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3818 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3819 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3820 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3821 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3822 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3823 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3824 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3825 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3826 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3827 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3828 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3829 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3830 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3831 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3832 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3833 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3834 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3835 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3836 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3837 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3838 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3839 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3840 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3841 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3842 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3843 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3844 FRO Europe & Central Asia Torshavn -6.91181 61.8926
## 3845 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3846 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3847 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3848 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3849 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3850 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3851 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3852 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3853 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3854 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3855 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3856 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3857 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3858 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3859 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3860 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3861 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3862 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3863 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3864 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3865 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3866 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3867 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3868 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3869 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3870 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3871 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3872 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3873 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3874 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3875 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3876 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3877 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3878 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3879 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3880 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3881 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3882 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3883 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3884 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3885 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3886 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3887 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3888 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3889 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3890 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3891 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3892 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3893 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3894 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3895 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3896 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3897 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3898 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3899 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3900 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3901 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3902 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3903 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3904 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3905 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3906 FRA Europe & Central Asia Paris 2.35097 48.8566
## 3907 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3908 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3909 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3910 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3911 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3912 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3913 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3914 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3915 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3916 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3917 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3918 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3919 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3920 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3921 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3922 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3923 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3924 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3925 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3926 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3927 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3928 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3929 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3930 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3931 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3932 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3933 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3934 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3935 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3936 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3937 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3938 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3939 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3940 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3941 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3942 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3943 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3944 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3945 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3946 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3947 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3948 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3949 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3950 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3951 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3952 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3953 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3954 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3955 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3956 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3957 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3958 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3959 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3960 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3961 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3962 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3963 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3964 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3965 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3966 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3967 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3968 GAB Sub-Saharan Africa Libreville 9.45162 0.38832
## 3969 GBR Europe & Central Asia London -0.126236 51.5002
## 3970 GBR Europe & Central Asia London -0.126236 51.5002
## 3971 GBR Europe & Central Asia London -0.126236 51.5002
## 3972 GBR Europe & Central Asia London -0.126236 51.5002
## 3973 GBR Europe & Central Asia London -0.126236 51.5002
## 3974 GBR Europe & Central Asia London -0.126236 51.5002
## 3975 GBR Europe & Central Asia London -0.126236 51.5002
## 3976 GBR Europe & Central Asia London -0.126236 51.5002
## 3977 GBR Europe & Central Asia London -0.126236 51.5002
## 3978 GBR Europe & Central Asia London -0.126236 51.5002
## 3979 GBR Europe & Central Asia London -0.126236 51.5002
## 3980 GBR Europe & Central Asia London -0.126236 51.5002
## 3981 GBR Europe & Central Asia London -0.126236 51.5002
## 3982 GBR Europe & Central Asia London -0.126236 51.5002
## 3983 GBR Europe & Central Asia London -0.126236 51.5002
## 3984 GBR Europe & Central Asia London -0.126236 51.5002
## 3985 GBR Europe & Central Asia London -0.126236 51.5002
## 3986 GBR Europe & Central Asia London -0.126236 51.5002
## 3987 GBR Europe & Central Asia London -0.126236 51.5002
## 3988 GBR Europe & Central Asia London -0.126236 51.5002
## 3989 GBR Europe & Central Asia London -0.126236 51.5002
## 3990 GBR Europe & Central Asia London -0.126236 51.5002
## 3991 GBR Europe & Central Asia London -0.126236 51.5002
## 3992 GBR Europe & Central Asia London -0.126236 51.5002
## 3993 GBR Europe & Central Asia London -0.126236 51.5002
## 3994 GBR Europe & Central Asia London -0.126236 51.5002
## 3995 GBR Europe & Central Asia London -0.126236 51.5002
## 3996 GBR Europe & Central Asia London -0.126236 51.5002
## 3997 GBR Europe & Central Asia London -0.126236 51.5002
## 3998 GBR Europe & Central Asia London -0.126236 51.5002
## 3999 GBR Europe & Central Asia London -0.126236 51.5002
## 4000 GBR Europe & Central Asia London -0.126236 51.5002
## 4001 GBR Europe & Central Asia London -0.126236 51.5002
## 4002 GBR Europe & Central Asia London -0.126236 51.5002
## 4003 GBR Europe & Central Asia London -0.126236 51.5002
## 4004 GBR Europe & Central Asia London -0.126236 51.5002
## 4005 GBR Europe & Central Asia London -0.126236 51.5002
## 4006 GBR Europe & Central Asia London -0.126236 51.5002
## 4007 GBR Europe & Central Asia London -0.126236 51.5002
## 4008 GBR Europe & Central Asia London -0.126236 51.5002
## 4009 GBR Europe & Central Asia London -0.126236 51.5002
## 4010 GBR Europe & Central Asia London -0.126236 51.5002
## 4011 GBR Europe & Central Asia London -0.126236 51.5002
## 4012 GBR Europe & Central Asia London -0.126236 51.5002
## 4013 GBR Europe & Central Asia London -0.126236 51.5002
## 4014 GBR Europe & Central Asia London -0.126236 51.5002
## 4015 GBR Europe & Central Asia London -0.126236 51.5002
## 4016 GBR Europe & Central Asia London -0.126236 51.5002
## 4017 GBR Europe & Central Asia London -0.126236 51.5002
## 4018 GBR Europe & Central Asia London -0.126236 51.5002
## 4019 GBR Europe & Central Asia London -0.126236 51.5002
## 4020 GBR Europe & Central Asia London -0.126236 51.5002
## 4021 GBR Europe & Central Asia London -0.126236 51.5002
## 4022 GBR Europe & Central Asia London -0.126236 51.5002
## 4023 GBR Europe & Central Asia London -0.126236 51.5002
## 4024 GBR Europe & Central Asia London -0.126236 51.5002
## 4025 GBR Europe & Central Asia London -0.126236 51.5002
## 4026 GBR Europe & Central Asia London -0.126236 51.5002
## 4027 GBR Europe & Central Asia London -0.126236 51.5002
## 4028 GBR Europe & Central Asia London -0.126236 51.5002
## 4029 GBR Europe & Central Asia London -0.126236 51.5002
## 4030 GBR Europe & Central Asia London -0.126236 51.5002
## 4031 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4032 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4033 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4034 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4035 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4036 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4037 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4038 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4039 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4040 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4041 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4042 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4043 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4044 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4045 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4046 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4047 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4048 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4049 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4050 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4051 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4052 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4053 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4054 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4055 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4056 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4057 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4058 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4059 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4060 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4061 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4062 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4063 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4064 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4065 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4066 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4067 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4068 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4069 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4070 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4071 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4072 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4073 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4074 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4075 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4076 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4077 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4078 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4079 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4080 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4081 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4082 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4083 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4084 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4085 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4086 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4087 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4088 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4089 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4090 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4091 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4092 GRD Latin America & Caribbean Saint George's -61.7449 12.0653
## 4093 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4094 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4095 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4096 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4097 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4098 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4099 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4100 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4101 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4102 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4103 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4104 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4105 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4106 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4107 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4108 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4109 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4110 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4111 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4112 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4113 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4114 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4115 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4116 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4117 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4118 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4119 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4120 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4121 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4122 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4123 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4124 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4125 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4126 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4127 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4128 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4129 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4130 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4131 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4132 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4133 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4134 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4135 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4136 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4137 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4138 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4139 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4140 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4141 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4142 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4143 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4144 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4145 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4146 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4147 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4148 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4149 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4150 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4151 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4152 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4153 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4154 GEO Europe & Central Asia Tbilisi 44.793 41.71
## 4155 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4156 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4157 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4158 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4159 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4160 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4161 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4162 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4163 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4164 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4165 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4166 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4167 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4168 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4169 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4170 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4171 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4172 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4173 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4174 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4175 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4176 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4177 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4178 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4179 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4180 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4181 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4182 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4183 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4184 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4185 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4186 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4187 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4188 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4189 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4190 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4191 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4192 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4193 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4194 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4195 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4196 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4197 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4198 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4199 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4200 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4201 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4202 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4203 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4204 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4205 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4206 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4207 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4208 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4209 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4210 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4211 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4212 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4213 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4214 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4215 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4216 GHA Sub-Saharan Africa Accra -0.20795 5.57045
## 4217 GIB Europe & Central Asia
## 4218 GIB Europe & Central Asia
## 4219 GIB Europe & Central Asia
## 4220 GIB Europe & Central Asia
## 4221 GIB Europe & Central Asia
## 4222 GIB Europe & Central Asia
## 4223 GIB Europe & Central Asia
## 4224 GIB Europe & Central Asia
## 4225 GIB Europe & Central Asia
## 4226 GIB Europe & Central Asia
## 4227 GIB Europe & Central Asia
## 4228 GIB Europe & Central Asia
## 4229 GIB Europe & Central Asia
## 4230 GIB Europe & Central Asia
## 4231 GIB Europe & Central Asia
## 4232 GIB Europe & Central Asia
## 4233 GIB Europe & Central Asia
## 4234 GIB Europe & Central Asia
## 4235 GIB Europe & Central Asia
## 4236 GIB Europe & Central Asia
## 4237 GIB Europe & Central Asia
## 4238 GIB Europe & Central Asia
## 4239 GIB Europe & Central Asia
## 4240 GIB Europe & Central Asia
## 4241 GIB Europe & Central Asia
## 4242 GIB Europe & Central Asia
## 4243 GIB Europe & Central Asia
## 4244 GIB Europe & Central Asia
## 4245 GIB Europe & Central Asia
## 4246 GIB Europe & Central Asia
## 4247 GIB Europe & Central Asia
## 4248 GIB Europe & Central Asia
## 4249 GIB Europe & Central Asia
## 4250 GIB Europe & Central Asia
## 4251 GIB Europe & Central Asia
## 4252 GIB Europe & Central Asia
## 4253 GIB Europe & Central Asia
## 4254 GIB Europe & Central Asia
## 4255 GIB Europe & Central Asia
## 4256 GIB Europe & Central Asia
## 4257 GIB Europe & Central Asia
## 4258 GIB Europe & Central Asia
## 4259 GIB Europe & Central Asia
## 4260 GIB Europe & Central Asia
## 4261 GIB Europe & Central Asia
## 4262 GIB Europe & Central Asia
## 4263 GIB Europe & Central Asia
## 4264 GIB Europe & Central Asia
## 4265 GIB Europe & Central Asia
## 4266 GIB Europe & Central Asia
## 4267 GIB Europe & Central Asia
## 4268 GIB Europe & Central Asia
## 4269 GIB Europe & Central Asia
## 4270 GIB Europe & Central Asia
## 4271 GIB Europe & Central Asia
## 4272 GIB Europe & Central Asia
## 4273 GIB Europe & Central Asia
## 4274 GIB Europe & Central Asia
## 4275 GIB Europe & Central Asia
## 4276 GIB Europe & Central Asia
## 4277 GIB Europe & Central Asia
## 4278 GIB Europe & Central Asia
## 4279 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4280 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4281 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4282 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4283 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4284 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4285 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4286 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4287 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4288 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4289 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4290 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4291 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4292 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4293 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4294 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4295 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4296 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4297 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4298 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4299 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4300 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4301 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4302 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4303 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4304 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4305 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4306 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4307 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4308 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4309 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4310 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4311 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4312 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4313 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4314 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4315 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4316 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4317 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4318 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4319 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4320 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4321 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4322 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4323 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4324 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4325 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4326 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4327 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4328 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4329 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4330 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4331 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4332 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4333 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4334 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4335 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4336 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4337 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4338 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4339 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4340 GRL Europe & Central Asia Nuuk -51.7214 64.1836
## 4341 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4342 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4343 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4344 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4345 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4346 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4347 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4348 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4349 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4350 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4351 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4352 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4353 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4354 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4355 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4356 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4357 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4358 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4359 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4360 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4361 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4362 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4363 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4364 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4365 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4366 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4367 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4368 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4369 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4370 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4371 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4372 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4373 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4374 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4375 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4376 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4377 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4378 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4379 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4380 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4381 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4382 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4383 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4384 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4385 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4386 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4387 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4388 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4389 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4390 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4391 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4392 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4393 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4394 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4395 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4396 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4397 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4398 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4399 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4400 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4401 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4402 GMB Sub-Saharan Africa Banjul -16.5885 13.4495
## 4403 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4404 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4405 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4406 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4407 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4408 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4409 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4410 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4411 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4412 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4413 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4414 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4415 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4416 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4417 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4418 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4419 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4420 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4421 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4422 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4423 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4424 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4425 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4426 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4427 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4428 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4429 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4430 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4431 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4432 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4433 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4434 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4435 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4436 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4437 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4438 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4439 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4440 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4441 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4442 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4443 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4444 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4445 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4446 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4447 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4448 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4449 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4450 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4451 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4452 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4453 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4454 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4455 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4456 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4457 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4458 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4459 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4460 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4461 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4462 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4463 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4464 GIN Sub-Saharan Africa Conakry -13.7 9.51667
## 4465 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4466 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4467 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4468 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4469 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4470 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4471 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4472 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4473 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4474 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4475 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4476 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4477 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4478 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4479 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4480 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4481 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4482 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4483 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4484 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4485 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4486 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4487 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4488 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4489 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4490 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4491 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4492 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4493 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4494 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4495 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4496 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4497 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4498 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4499 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4500 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4501 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4502 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4503 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4504 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4505 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4506 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4507 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4508 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4509 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4510 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4511 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4512 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4513 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4514 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4515 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4516 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4517 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4518 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4519 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4520 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4521 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4522 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4523 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4524 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4525 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4526 GNQ Sub-Saharan Africa Malabo 8.7741 3.7523
## 4527 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4528 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4529 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4530 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4531 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4532 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4533 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4534 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4535 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4536 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4537 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4538 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4539 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4540 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4541 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4542 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4543 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4544 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4545 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4546 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4547 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4548 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4549 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4550 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4551 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4552 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4553 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4554 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4555 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4556 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4557 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4558 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4559 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4560 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4561 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4562 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4563 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4564 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4565 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4566 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4567 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4568 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4569 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4570 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4571 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4572 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4573 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4574 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4575 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4576 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4577 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4578 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4579 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4580 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4581 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4582 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4583 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4584 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4585 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4586 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4587 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4588 GRC Europe & Central Asia Athens 23.7166 37.9792
## 4589 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4590 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4591 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4592 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4593 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4594 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4595 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4596 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4597 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4598 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4599 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4600 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4601 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4602 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4603 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4604 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4605 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4606 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4607 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4608 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4609 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4610 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4611 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4612 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4613 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4614 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4615 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4616 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4617 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4618 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4619 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4620 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4621 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4622 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4623 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4624 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4625 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4626 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4627 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4628 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4629 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4630 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4631 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4632 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4633 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4634 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4635 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4636 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4637 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4638 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4639 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4640 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4641 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4642 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4643 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4644 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4645 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4646 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4647 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4648 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4649 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4650 GTM Latin America & Caribbean Guatemala City -90.5328 14.6248
## 4651 GUM East Asia & Pacific Agana 144.794 13.4443
## 4652 GUM East Asia & Pacific Agana 144.794 13.4443
## 4653 GUM East Asia & Pacific Agana 144.794 13.4443
## 4654 GUM East Asia & Pacific Agana 144.794 13.4443
## 4655 GUM East Asia & Pacific Agana 144.794 13.4443
## 4656 GUM East Asia & Pacific Agana 144.794 13.4443
## 4657 GUM East Asia & Pacific Agana 144.794 13.4443
## 4658 GUM East Asia & Pacific Agana 144.794 13.4443
## 4659 GUM East Asia & Pacific Agana 144.794 13.4443
## 4660 GUM East Asia & Pacific Agana 144.794 13.4443
## 4661 GUM East Asia & Pacific Agana 144.794 13.4443
## 4662 GUM East Asia & Pacific Agana 144.794 13.4443
## 4663 GUM East Asia & Pacific Agana 144.794 13.4443
## 4664 GUM East Asia & Pacific Agana 144.794 13.4443
## 4665 GUM East Asia & Pacific Agana 144.794 13.4443
## 4666 GUM East Asia & Pacific Agana 144.794 13.4443
## 4667 GUM East Asia & Pacific Agana 144.794 13.4443
## 4668 GUM East Asia & Pacific Agana 144.794 13.4443
## 4669 GUM East Asia & Pacific Agana 144.794 13.4443
## 4670 GUM East Asia & Pacific Agana 144.794 13.4443
## 4671 GUM East Asia & Pacific Agana 144.794 13.4443
## 4672 GUM East Asia & Pacific Agana 144.794 13.4443
## 4673 GUM East Asia & Pacific Agana 144.794 13.4443
## 4674 GUM East Asia & Pacific Agana 144.794 13.4443
## 4675 GUM East Asia & Pacific Agana 144.794 13.4443
## 4676 GUM East Asia & Pacific Agana 144.794 13.4443
## 4677 GUM East Asia & Pacific Agana 144.794 13.4443
## 4678 GUM East Asia & Pacific Agana 144.794 13.4443
## 4679 GUM East Asia & Pacific Agana 144.794 13.4443
## 4680 GUM East Asia & Pacific Agana 144.794 13.4443
## 4681 GUM East Asia & Pacific Agana 144.794 13.4443
## 4682 GUM East Asia & Pacific Agana 144.794 13.4443
## 4683 GUM East Asia & Pacific Agana 144.794 13.4443
## 4684 GUM East Asia & Pacific Agana 144.794 13.4443
## 4685 GUM East Asia & Pacific Agana 144.794 13.4443
## 4686 GUM East Asia & Pacific Agana 144.794 13.4443
## 4687 GUM East Asia & Pacific Agana 144.794 13.4443
## 4688 GUM East Asia & Pacific Agana 144.794 13.4443
## 4689 GUM East Asia & Pacific Agana 144.794 13.4443
## 4690 GUM East Asia & Pacific Agana 144.794 13.4443
## 4691 GUM East Asia & Pacific Agana 144.794 13.4443
## 4692 GUM East Asia & Pacific Agana 144.794 13.4443
## 4693 GUM East Asia & Pacific Agana 144.794 13.4443
## 4694 GUM East Asia & Pacific Agana 144.794 13.4443
## 4695 GUM East Asia & Pacific Agana 144.794 13.4443
## 4696 GUM East Asia & Pacific Agana 144.794 13.4443
## 4697 GUM East Asia & Pacific Agana 144.794 13.4443
## 4698 GUM East Asia & Pacific Agana 144.794 13.4443
## 4699 GUM East Asia & Pacific Agana 144.794 13.4443
## 4700 GUM East Asia & Pacific Agana 144.794 13.4443
## 4701 GUM East Asia & Pacific Agana 144.794 13.4443
## 4702 GUM East Asia & Pacific Agana 144.794 13.4443
## 4703 GUM East Asia & Pacific Agana 144.794 13.4443
## 4704 GUM East Asia & Pacific Agana 144.794 13.4443
## 4705 GUM East Asia & Pacific Agana 144.794 13.4443
## 4706 GUM East Asia & Pacific Agana 144.794 13.4443
## 4707 GUM East Asia & Pacific Agana 144.794 13.4443
## 4708 GUM East Asia & Pacific Agana 144.794 13.4443
## 4709 GUM East Asia & Pacific Agana 144.794 13.4443
## 4710 GUM East Asia & Pacific Agana 144.794 13.4443
## 4711 GUM East Asia & Pacific Agana 144.794 13.4443
## 4712 GUM East Asia & Pacific Agana 144.794 13.4443
## 4713 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4714 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4715 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4716 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4717 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4718 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4719 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4720 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4721 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4722 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4723 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4724 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4725 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4726 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4727 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4728 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4729 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4730 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4731 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4732 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4733 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4734 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4735 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4736 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4737 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4738 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4739 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4740 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4741 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4742 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4743 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4744 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4745 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4746 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4747 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4748 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4749 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4750 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4751 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4752 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4753 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4754 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4755 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4756 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4757 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4758 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4759 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4760 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4761 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4762 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4763 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4764 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4765 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4766 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4767 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4768 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4769 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4770 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4771 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4772 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4773 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4774 GNB Sub-Saharan Africa Bissau -15.1804 11.8037
## 4775 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4776 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4777 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4778 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4779 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4780 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4781 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4782 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4783 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4784 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4785 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4786 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4787 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4788 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4789 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4790 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4791 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4792 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4793 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4794 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4795 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4796 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4797 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4798 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4799 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4800 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4801 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4802 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4803 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4804 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4805 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4806 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4807 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4808 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4809 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4810 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4811 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4812 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4813 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4814 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4815 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4816 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4817 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4818 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4819 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4820 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4821 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4822 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4823 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4824 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4825 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4826 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4827 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4828 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4829 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4830 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4831 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4832 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4833 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4834 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4835 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4836 GUY Latin America & Caribbean Georgetown -58.1548 6.80461
## 4837 HKG East Asia & Pacific 114.109 22.3964
## 4838 HKG East Asia & Pacific 114.109 22.3964
## 4839 HKG East Asia & Pacific 114.109 22.3964
## 4840 HKG East Asia & Pacific 114.109 22.3964
## 4841 HKG East Asia & Pacific 114.109 22.3964
## 4842 HKG East Asia & Pacific 114.109 22.3964
## 4843 HKG East Asia & Pacific 114.109 22.3964
## 4844 HKG East Asia & Pacific 114.109 22.3964
## 4845 HKG East Asia & Pacific 114.109 22.3964
## 4846 HKG East Asia & Pacific 114.109 22.3964
## 4847 HKG East Asia & Pacific 114.109 22.3964
## 4848 HKG East Asia & Pacific 114.109 22.3964
## 4849 HKG East Asia & Pacific 114.109 22.3964
## 4850 HKG East Asia & Pacific 114.109 22.3964
## 4851 HKG East Asia & Pacific 114.109 22.3964
## 4852 HKG East Asia & Pacific 114.109 22.3964
## 4853 HKG East Asia & Pacific 114.109 22.3964
## 4854 HKG East Asia & Pacific 114.109 22.3964
## 4855 HKG East Asia & Pacific 114.109 22.3964
## 4856 HKG East Asia & Pacific 114.109 22.3964
## 4857 HKG East Asia & Pacific 114.109 22.3964
## 4858 HKG East Asia & Pacific 114.109 22.3964
## 4859 HKG East Asia & Pacific 114.109 22.3964
## 4860 HKG East Asia & Pacific 114.109 22.3964
## 4861 HKG East Asia & Pacific 114.109 22.3964
## 4862 HKG East Asia & Pacific 114.109 22.3964
## 4863 HKG East Asia & Pacific 114.109 22.3964
## 4864 HKG East Asia & Pacific 114.109 22.3964
## 4865 HKG East Asia & Pacific 114.109 22.3964
## 4866 HKG East Asia & Pacific 114.109 22.3964
## 4867 HKG East Asia & Pacific 114.109 22.3964
## 4868 HKG East Asia & Pacific 114.109 22.3964
## 4869 HKG East Asia & Pacific 114.109 22.3964
## 4870 HKG East Asia & Pacific 114.109 22.3964
## 4871 HKG East Asia & Pacific 114.109 22.3964
## 4872 HKG East Asia & Pacific 114.109 22.3964
## 4873 HKG East Asia & Pacific 114.109 22.3964
## 4874 HKG East Asia & Pacific 114.109 22.3964
## 4875 HKG East Asia & Pacific 114.109 22.3964
## 4876 HKG East Asia & Pacific 114.109 22.3964
## 4877 HKG East Asia & Pacific 114.109 22.3964
## 4878 HKG East Asia & Pacific 114.109 22.3964
## 4879 HKG East Asia & Pacific 114.109 22.3964
## 4880 HKG East Asia & Pacific 114.109 22.3964
## 4881 HKG East Asia & Pacific 114.109 22.3964
## 4882 HKG East Asia & Pacific 114.109 22.3964
## 4883 HKG East Asia & Pacific 114.109 22.3964
## 4884 HKG East Asia & Pacific 114.109 22.3964
## 4885 HKG East Asia & Pacific 114.109 22.3964
## 4886 HKG East Asia & Pacific 114.109 22.3964
## 4887 HKG East Asia & Pacific 114.109 22.3964
## 4888 HKG East Asia & Pacific 114.109 22.3964
## 4889 HKG East Asia & Pacific 114.109 22.3964
## 4890 HKG East Asia & Pacific 114.109 22.3964
## 4891 HKG East Asia & Pacific 114.109 22.3964
## 4892 HKG East Asia & Pacific 114.109 22.3964
## 4893 HKG East Asia & Pacific 114.109 22.3964
## 4894 HKG East Asia & Pacific 114.109 22.3964
## 4895 HKG East Asia & Pacific 114.109 22.3964
## 4896 HKG East Asia & Pacific 114.109 22.3964
## 4897 HKG East Asia & Pacific 114.109 22.3964
## 4898 HKG East Asia & Pacific 114.109 22.3964
## 4899 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4900 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4901 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4902 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4903 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4904 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4905 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4906 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4907 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4908 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4909 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4910 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4911 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4912 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4913 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4914 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4915 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4916 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4917 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4918 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4919 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4920 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4921 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4922 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4923 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4924 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4925 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4926 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4927 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4928 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4929 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4930 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4931 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4932 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4933 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4934 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4935 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4936 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4937 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4938 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4939 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4940 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4941 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4942 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4943 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4944 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4945 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4946 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4947 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4948 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4949 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4950 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4951 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4952 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4953 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4954 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4955 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4956 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4957 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4958 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4959 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4960 HND Latin America & Caribbean Tegucigalpa -87.4667 15.1333
## 4961 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4962 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4963 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4964 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4965 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4966 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4967 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4968 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4969 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4970 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4971 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4972 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4973 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4974 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4975 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4976 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4977 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4978 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4979 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4980 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4981 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4982 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4983 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4984 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4985 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4986 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4987 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4988 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4989 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4990 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4991 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4992 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4993 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4994 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4995 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4996 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4997 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4998 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 4999 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5000 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5001 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5002 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5003 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5004 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5005 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5006 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5007 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5008 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5009 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5010 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5011 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5012 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5013 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5014 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5015 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5016 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5017 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5018 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5019 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5020 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5021 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5022 HRV Europe & Central Asia Zagreb 15.9614 45.8069
## 5023 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5024 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5025 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5026 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5027 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5028 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5029 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5030 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5031 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5032 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5033 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5034 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5035 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5036 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5037 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5038 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5039 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5040 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5041 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5042 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5043 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5044 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5045 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5046 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5047 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5048 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5049 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5050 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5051 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5052 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5053 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5054 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5055 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5056 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5057 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5058 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5059 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5060 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5061 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5062 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5063 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5064 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5065 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5066 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5067 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5068 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5069 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5070 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5071 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5072 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5073 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5074 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5075 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5076 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5077 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5078 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5079 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5080 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5081 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5082 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5083 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5084 HTI Latin America & Caribbean Port-au-Prince -72.3288 18.5392
## 5085 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5086 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5087 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5088 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5089 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5090 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5091 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5092 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5093 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5094 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5095 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5096 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5097 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5098 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5099 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5100 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5101 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5102 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5103 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5104 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5105 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5106 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5107 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5108 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5109 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5110 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5111 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5112 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5113 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5114 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5115 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5116 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5117 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5118 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5119 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5120 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5121 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5122 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5123 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5124 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5125 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5126 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5127 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5128 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5129 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5130 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5131 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5132 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5133 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5134 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5135 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5136 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5137 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5138 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5139 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5140 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5141 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5142 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5143 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5144 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5145 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5146 HUN Europe & Central Asia Budapest 19.0408 47.4984
## 5147 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5148 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5149 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5150 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5151 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5152 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5153 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5154 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5155 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5156 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5157 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5158 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5159 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5160 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5161 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5162 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5163 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5164 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5165 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5166 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5167 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5168 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5169 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5170 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5171 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5172 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5173 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5174 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5175 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5176 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5177 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5178 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5179 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5180 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5181 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5182 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5183 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5184 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5185 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5186 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5187 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5188 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5189 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5190 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5191 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5192 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5193 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5194 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5195 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5196 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5197 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5198 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5199 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5200 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5201 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5202 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5203 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5204 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5205 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5206 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5207 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5208 IDN East Asia & Pacific Jakarta 106.83 -6.19752
## 5209 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5210 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5211 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5212 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5213 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5214 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5215 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5216 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5217 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5218 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5219 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5220 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5221 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5222 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5223 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5224 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5225 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5226 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5227 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5228 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5229 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5230 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5231 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5232 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5233 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5234 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5235 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5236 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5237 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5238 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5239 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5240 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5241 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5242 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5243 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5244 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5245 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5246 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5247 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5248 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5249 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5250 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5251 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5252 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5253 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5254 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5255 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5256 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5257 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5258 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5259 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5260 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5261 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5262 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5263 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5264 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5265 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5266 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5267 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5268 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5269 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5270 IRL Europe & Central Asia Dublin -6.26749 53.3441
## 5271 ISR Middle East & North Africa 35.2035 31.7717
## 5272 ISR Middle East & North Africa 35.2035 31.7717
## 5273 ISR Middle East & North Africa 35.2035 31.7717
## 5274 ISR Middle East & North Africa 35.2035 31.7717
## 5275 ISR Middle East & North Africa 35.2035 31.7717
## 5276 ISR Middle East & North Africa 35.2035 31.7717
## 5277 ISR Middle East & North Africa 35.2035 31.7717
## 5278 ISR Middle East & North Africa 35.2035 31.7717
## 5279 ISR Middle East & North Africa 35.2035 31.7717
## 5280 ISR Middle East & North Africa 35.2035 31.7717
## 5281 ISR Middle East & North Africa 35.2035 31.7717
## 5282 ISR Middle East & North Africa 35.2035 31.7717
## 5283 ISR Middle East & North Africa 35.2035 31.7717
## 5284 ISR Middle East & North Africa 35.2035 31.7717
## 5285 ISR Middle East & North Africa 35.2035 31.7717
## 5286 ISR Middle East & North Africa 35.2035 31.7717
## 5287 ISR Middle East & North Africa 35.2035 31.7717
## 5288 ISR Middle East & North Africa 35.2035 31.7717
## 5289 ISR Middle East & North Africa 35.2035 31.7717
## 5290 ISR Middle East & North Africa 35.2035 31.7717
## 5291 ISR Middle East & North Africa 35.2035 31.7717
## 5292 ISR Middle East & North Africa 35.2035 31.7717
## 5293 ISR Middle East & North Africa 35.2035 31.7717
## 5294 ISR Middle East & North Africa 35.2035 31.7717
## 5295 ISR Middle East & North Africa 35.2035 31.7717
## 5296 ISR Middle East & North Africa 35.2035 31.7717
## 5297 ISR Middle East & North Africa 35.2035 31.7717
## 5298 ISR Middle East & North Africa 35.2035 31.7717
## 5299 ISR Middle East & North Africa 35.2035 31.7717
## 5300 ISR Middle East & North Africa 35.2035 31.7717
## 5301 ISR Middle East & North Africa 35.2035 31.7717
## 5302 ISR Middle East & North Africa 35.2035 31.7717
## 5303 ISR Middle East & North Africa 35.2035 31.7717
## 5304 ISR Middle East & North Africa 35.2035 31.7717
## 5305 ISR Middle East & North Africa 35.2035 31.7717
## 5306 ISR Middle East & North Africa 35.2035 31.7717
## 5307 ISR Middle East & North Africa 35.2035 31.7717
## 5308 ISR Middle East & North Africa 35.2035 31.7717
## 5309 ISR Middle East & North Africa 35.2035 31.7717
## 5310 ISR Middle East & North Africa 35.2035 31.7717
## 5311 ISR Middle East & North Africa 35.2035 31.7717
## 5312 ISR Middle East & North Africa 35.2035 31.7717
## 5313 ISR Middle East & North Africa 35.2035 31.7717
## 5314 ISR Middle East & North Africa 35.2035 31.7717
## 5315 ISR Middle East & North Africa 35.2035 31.7717
## 5316 ISR Middle East & North Africa 35.2035 31.7717
## 5317 ISR Middle East & North Africa 35.2035 31.7717
## 5318 ISR Middle East & North Africa 35.2035 31.7717
## 5319 ISR Middle East & North Africa 35.2035 31.7717
## 5320 ISR Middle East & North Africa 35.2035 31.7717
## 5321 ISR Middle East & North Africa 35.2035 31.7717
## 5322 ISR Middle East & North Africa 35.2035 31.7717
## 5323 ISR Middle East & North Africa 35.2035 31.7717
## 5324 ISR Middle East & North Africa 35.2035 31.7717
## 5325 ISR Middle East & North Africa 35.2035 31.7717
## 5326 ISR Middle East & North Africa 35.2035 31.7717
## 5327 ISR Middle East & North Africa 35.2035 31.7717
## 5328 ISR Middle East & North Africa 35.2035 31.7717
## 5329 ISR Middle East & North Africa 35.2035 31.7717
## 5330 ISR Middle East & North Africa 35.2035 31.7717
## 5331 ISR Middle East & North Africa 35.2035 31.7717
## 5332 ISR Middle East & North Africa 35.2035 31.7717
## 5333 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5334 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5335 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5336 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5337 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5338 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5339 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5340 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5341 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5342 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5343 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5344 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5345 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5346 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5347 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5348 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5349 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5350 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5351 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5352 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5353 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5354 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5355 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5356 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5357 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5358 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5359 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5360 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5361 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5362 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5363 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5364 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5365 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5366 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5367 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5368 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5369 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5370 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5371 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5372 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5373 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5374 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5375 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5376 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5377 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5378 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5379 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5380 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5381 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5382 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5383 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5384 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5385 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5386 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5387 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5388 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5389 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5390 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5391 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5392 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5393 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5394 IMN Europe & Central Asia Douglas -4.47928 54.1509
## 5395 IND South Asia New Delhi 77.225 28.6353
## 5396 IND South Asia New Delhi 77.225 28.6353
## 5397 IND South Asia New Delhi 77.225 28.6353
## 5398 IND South Asia New Delhi 77.225 28.6353
## 5399 IND South Asia New Delhi 77.225 28.6353
## 5400 IND South Asia New Delhi 77.225 28.6353
## 5401 IND South Asia New Delhi 77.225 28.6353
## 5402 IND South Asia New Delhi 77.225 28.6353
## 5403 IND South Asia New Delhi 77.225 28.6353
## 5404 IND South Asia New Delhi 77.225 28.6353
## 5405 IND South Asia New Delhi 77.225 28.6353
## 5406 IND South Asia New Delhi 77.225 28.6353
## 5407 IND South Asia New Delhi 77.225 28.6353
## 5408 IND South Asia New Delhi 77.225 28.6353
## 5409 IND South Asia New Delhi 77.225 28.6353
## 5410 IND South Asia New Delhi 77.225 28.6353
## 5411 IND South Asia New Delhi 77.225 28.6353
## 5412 IND South Asia New Delhi 77.225 28.6353
## 5413 IND South Asia New Delhi 77.225 28.6353
## 5414 IND South Asia New Delhi 77.225 28.6353
## 5415 IND South Asia New Delhi 77.225 28.6353
## 5416 IND South Asia New Delhi 77.225 28.6353
## 5417 IND South Asia New Delhi 77.225 28.6353
## 5418 IND South Asia New Delhi 77.225 28.6353
## 5419 IND South Asia New Delhi 77.225 28.6353
## 5420 IND South Asia New Delhi 77.225 28.6353
## 5421 IND South Asia New Delhi 77.225 28.6353
## 5422 IND South Asia New Delhi 77.225 28.6353
## 5423 IND South Asia New Delhi 77.225 28.6353
## 5424 IND South Asia New Delhi 77.225 28.6353
## 5425 IND South Asia New Delhi 77.225 28.6353
## 5426 IND South Asia New Delhi 77.225 28.6353
## 5427 IND South Asia New Delhi 77.225 28.6353
## 5428 IND South Asia New Delhi 77.225 28.6353
## 5429 IND South Asia New Delhi 77.225 28.6353
## 5430 IND South Asia New Delhi 77.225 28.6353
## 5431 IND South Asia New Delhi 77.225 28.6353
## 5432 IND South Asia New Delhi 77.225 28.6353
## 5433 IND South Asia New Delhi 77.225 28.6353
## 5434 IND South Asia New Delhi 77.225 28.6353
## 5435 IND South Asia New Delhi 77.225 28.6353
## 5436 IND South Asia New Delhi 77.225 28.6353
## 5437 IND South Asia New Delhi 77.225 28.6353
## 5438 IND South Asia New Delhi 77.225 28.6353
## 5439 IND South Asia New Delhi 77.225 28.6353
## 5440 IND South Asia New Delhi 77.225 28.6353
## 5441 IND South Asia New Delhi 77.225 28.6353
## 5442 IND South Asia New Delhi 77.225 28.6353
## 5443 IND South Asia New Delhi 77.225 28.6353
## 5444 IND South Asia New Delhi 77.225 28.6353
## 5445 IND South Asia New Delhi 77.225 28.6353
## 5446 IND South Asia New Delhi 77.225 28.6353
## 5447 IND South Asia New Delhi 77.225 28.6353
## 5448 IND South Asia New Delhi 77.225 28.6353
## 5449 IND South Asia New Delhi 77.225 28.6353
## 5450 IND South Asia New Delhi 77.225 28.6353
## 5451 IND South Asia New Delhi 77.225 28.6353
## 5452 IND South Asia New Delhi 77.225 28.6353
## 5453 IND South Asia New Delhi 77.225 28.6353
## 5454 IND South Asia New Delhi 77.225 28.6353
## 5455 IND South Asia New Delhi 77.225 28.6353
## 5456 IND South Asia New Delhi 77.225 28.6353
## 5457 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5458 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5459 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5460 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5461 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5462 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5463 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5464 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5465 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5466 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5467 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5468 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5469 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5470 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5471 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5472 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5473 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5474 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5475 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5476 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5477 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5478 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5479 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5480 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5481 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5482 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5483 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5484 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5485 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5486 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5487 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5488 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5489 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5490 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5491 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5492 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5493 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5494 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5495 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5496 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5497 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5498 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5499 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5500 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5501 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5502 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5503 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5504 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5505 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5506 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5507 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5508 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5509 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5510 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5511 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5512 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5513 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5514 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5515 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5516 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5517 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5518 IRQ Middle East & North Africa Baghdad 44.394 33.3302
## 5519 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5520 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5521 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5522 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5523 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5524 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5525 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5526 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5527 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5528 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5529 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5530 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5531 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5532 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5533 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5534 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5535 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5536 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5537 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5538 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5539 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5540 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5541 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5542 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5543 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5544 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5545 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5546 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5547 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5548 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5549 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5550 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5551 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5552 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5553 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5554 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5555 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5556 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5557 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5558 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5559 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5560 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5561 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5562 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5563 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5564 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5565 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5566 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5567 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5568 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5569 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5570 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5571 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5572 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5573 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5574 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5575 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5576 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5577 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5578 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5579 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5580 IRN Middle East & North Africa Tehran 51.4447 35.6878
## 5581 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5582 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5583 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5584 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5585 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5586 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5587 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5588 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5589 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5590 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5591 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5592 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5593 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5594 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5595 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5596 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5597 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5598 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5599 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5600 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5601 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5602 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5603 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5604 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5605 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5606 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5607 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5608 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5609 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5610 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5611 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5612 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5613 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5614 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5615 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5616 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5617 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5618 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5619 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5620 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5621 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5622 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5623 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5624 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5625 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5626 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5627 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5628 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5629 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5630 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5631 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5632 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5633 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5634 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5635 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5636 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5637 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5638 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5639 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5640 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5641 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5642 ISL Europe & Central Asia Reykjavik -21.8952 64.1353
## 5643 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5644 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5645 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5646 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5647 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5648 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5649 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5650 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5651 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5652 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5653 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5654 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5655 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5656 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5657 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5658 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5659 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5660 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5661 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5662 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5663 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5664 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5665 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5666 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5667 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5668 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5669 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5670 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5671 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5672 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5673 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5674 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5675 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5676 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5677 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5678 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5679 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5680 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5681 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5682 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5683 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5684 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5685 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5686 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5687 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5688 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5689 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5690 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5691 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5692 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5693 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5694 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5695 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5696 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5697 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5698 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5699 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5700 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5701 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5702 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5703 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5704 ITA Europe & Central Asia Rome 12.4823 41.8955
## 5705 CHI Europe & Central Asia
## 5706 CHI Europe & Central Asia
## 5707 CHI Europe & Central Asia
## 5708 CHI Europe & Central Asia
## 5709 CHI Europe & Central Asia
## 5710 CHI Europe & Central Asia
## 5711 CHI Europe & Central Asia
## 5712 CHI Europe & Central Asia
## 5713 CHI Europe & Central Asia
## 5714 CHI Europe & Central Asia
## 5715 CHI Europe & Central Asia
## 5716 CHI Europe & Central Asia
## 5717 CHI Europe & Central Asia
## 5718 CHI Europe & Central Asia
## 5719 CHI Europe & Central Asia
## 5720 CHI Europe & Central Asia
## 5721 CHI Europe & Central Asia
## 5722 CHI Europe & Central Asia
## 5723 CHI Europe & Central Asia
## 5724 CHI Europe & Central Asia
## 5725 CHI Europe & Central Asia
## 5726 CHI Europe & Central Asia
## 5727 CHI Europe & Central Asia
## 5728 CHI Europe & Central Asia
## 5729 CHI Europe & Central Asia
## 5730 CHI Europe & Central Asia
## 5731 CHI Europe & Central Asia
## 5732 CHI Europe & Central Asia
## 5733 CHI Europe & Central Asia
## 5734 CHI Europe & Central Asia
## 5735 CHI Europe & Central Asia
## 5736 CHI Europe & Central Asia
## 5737 CHI Europe & Central Asia
## 5738 CHI Europe & Central Asia
## 5739 CHI Europe & Central Asia
## 5740 CHI Europe & Central Asia
## 5741 CHI Europe & Central Asia
## 5742 CHI Europe & Central Asia
## 5743 CHI Europe & Central Asia
## 5744 CHI Europe & Central Asia
## 5745 CHI Europe & Central Asia
## 5746 CHI Europe & Central Asia
## 5747 CHI Europe & Central Asia
## 5748 CHI Europe & Central Asia
## 5749 CHI Europe & Central Asia
## 5750 CHI Europe & Central Asia
## 5751 CHI Europe & Central Asia
## 5752 CHI Europe & Central Asia
## 5753 CHI Europe & Central Asia
## 5754 CHI Europe & Central Asia
## 5755 CHI Europe & Central Asia
## 5756 CHI Europe & Central Asia
## 5757 CHI Europe & Central Asia
## 5758 CHI Europe & Central Asia
## 5759 CHI Europe & Central Asia
## 5760 CHI Europe & Central Asia
## 5761 CHI Europe & Central Asia
## 5762 CHI Europe & Central Asia
## 5763 CHI Europe & Central Asia
## 5764 CHI Europe & Central Asia
## 5765 CHI Europe & Central Asia
## 5766 CHI Europe & Central Asia
## 5767 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5768 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5769 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5770 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5771 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5772 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5773 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5774 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5775 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5776 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5777 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5778 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5779 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5780 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5781 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5782 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5783 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5784 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5785 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5786 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5787 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5788 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5789 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5790 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5791 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5792 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5793 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5794 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5795 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5796 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5797 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5798 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5799 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5800 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5801 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5802 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5803 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5804 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5805 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5806 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5807 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5808 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5809 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5810 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5811 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5812 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5813 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5814 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5815 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5816 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5817 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5818 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5819 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5820 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5821 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5822 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5823 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5824 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5825 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5826 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5827 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5828 JAM Latin America & Caribbean Kingston -76.792 17.9927
## 5829 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5830 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5831 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5832 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5833 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5834 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5835 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5836 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5837 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5838 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5839 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5840 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5841 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5842 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5843 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5844 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5845 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5846 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5847 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5848 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5849 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5850 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5851 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5852 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5853 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5854 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5855 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5856 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5857 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5858 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5859 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5860 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5861 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5862 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5863 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5864 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5865 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5866 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5867 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5868 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5869 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5870 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5871 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5872 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5873 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5874 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5875 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5876 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5877 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5878 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5879 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5880 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5881 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5882 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5883 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5884 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5885 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5886 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5887 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5888 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5889 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5890 JOR Middle East & North Africa Amman 35.9263 31.9497
## 5891 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5892 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5893 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5894 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5895 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5896 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5897 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5898 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5899 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5900 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5901 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5902 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5903 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5904 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5905 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5906 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5907 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5908 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5909 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5910 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5911 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5912 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5913 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5914 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5915 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5916 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5917 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5918 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5919 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5920 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5921 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5922 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5923 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5924 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5925 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5926 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5927 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5928 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5929 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5930 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5931 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5932 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5933 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5934 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5935 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5936 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5937 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5938 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5939 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5940 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5941 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5942 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5943 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5944 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5945 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5946 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5947 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5948 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5949 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5950 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5951 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5952 JPN East Asia & Pacific Tokyo 139.77 35.67
## 5953 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5954 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5955 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5956 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5957 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5958 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5959 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5960 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5961 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5962 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5963 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5964 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5965 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5966 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5967 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5968 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5969 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5970 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5971 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5972 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5973 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5974 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5975 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5976 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5977 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5978 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5979 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5980 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5981 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5982 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5983 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5984 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5985 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5986 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5987 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5988 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5989 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5990 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5991 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5992 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5993 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5994 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5995 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5996 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5997 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5998 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 5999 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6000 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6001 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6002 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6003 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6004 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6005 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6006 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6007 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6008 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6009 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6010 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6011 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6012 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6013 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6014 KEN Sub-Saharan Africa Nairobi 36.8126 -1.27975
## 6015 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6016 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6017 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6018 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6019 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6020 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6021 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6022 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6023 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6024 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6025 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6026 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6027 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6028 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6029 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6030 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6031 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6032 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6033 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6034 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6035 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6036 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6037 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6038 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6039 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6040 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6041 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6042 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6043 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6044 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6045 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6046 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6047 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6048 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6049 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6050 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6051 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6052 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6053 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6054 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6055 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6056 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6057 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6058 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6059 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6060 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6061 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6062 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6063 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6064 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6065 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6066 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6067 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6068 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6069 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6070 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6071 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6072 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6073 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6074 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6075 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6076 KGZ Europe & Central Asia Bishkek 74.6057 42.8851
## 6077 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6078 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6079 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6080 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6081 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6082 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6083 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6084 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6085 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6086 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6087 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6088 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6089 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6090 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6091 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6092 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6093 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6094 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6095 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6096 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6097 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6098 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6099 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6100 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6101 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6102 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6103 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6104 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6105 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6106 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6107 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6108 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6109 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6110 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6111 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6112 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6113 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6114 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6115 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6116 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6117 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6118 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6119 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6120 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6121 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6122 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6123 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6124 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6125 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6126 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6127 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6128 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6129 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6130 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6131 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6132 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6133 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6134 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6135 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6136 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6137 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6138 KHM East Asia & Pacific Phnom Penh 104.874 11.5556
## 6139 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6140 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6141 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6142 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6143 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6144 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6145 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6146 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6147 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6148 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6149 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6150 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6151 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6152 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6153 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6154 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6155 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6156 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6157 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6158 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6159 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6160 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6161 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6162 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6163 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6164 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6165 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6166 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6167 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6168 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6169 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6170 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6171 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6172 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6173 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6174 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6175 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6176 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6177 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6178 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6179 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6180 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6181 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6182 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6183 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6184 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6185 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6186 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6187 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6188 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6189 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6190 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6191 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6192 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6193 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6194 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6195 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6196 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6197 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6198 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6199 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6200 KIR East Asia & Pacific Tarawa 172.979 1.32905
## 6201 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6202 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6203 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6204 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6205 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6206 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6207 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6208 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6209 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6210 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6211 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6212 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6213 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6214 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6215 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6216 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6217 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6218 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6219 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6220 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6221 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6222 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6223 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6224 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6225 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6226 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6227 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6228 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6229 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6230 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6231 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6232 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6233 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6234 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6235 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6236 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6237 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6238 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6239 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6240 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6241 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6242 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6243 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6244 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6245 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6246 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6247 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6248 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6249 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6250 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6251 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6252 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6253 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6254 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6255 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6256 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6257 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6258 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6259 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6260 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6261 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6262 COM Sub-Saharan Africa Moroni 43.2418 -11.6986
## 6263 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6264 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6265 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6266 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6267 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6268 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6269 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6270 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6271 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6272 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6273 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6274 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6275 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6276 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6277 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6278 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6279 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6280 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6281 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6282 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6283 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6284 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6285 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6286 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6287 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6288 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6289 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6290 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6291 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6292 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6293 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6294 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6295 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6296 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6297 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6298 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6299 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6300 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6301 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6302 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6303 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6304 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6305 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6306 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6307 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6308 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6309 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6310 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6311 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6312 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6313 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6314 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6315 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6316 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6317 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6318 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6319 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6320 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6321 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6322 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6323 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6324 KNA Latin America & Caribbean Basseterre -62.7309 17.3
## 6325 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6326 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6327 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6328 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6329 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6330 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6331 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6332 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6333 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6334 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6335 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6336 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6337 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6338 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6339 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6340 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6341 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6342 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6343 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6344 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6345 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6346 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6347 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6348 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6349 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6350 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6351 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6352 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6353 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6354 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6355 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6356 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6357 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6358 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6359 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6360 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6361 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6362 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6363 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6364 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6365 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6366 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6367 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6368 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6369 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6370 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6371 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6372 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6373 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6374 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6375 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6376 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6377 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6378 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6379 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6380 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6381 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6382 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6383 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6384 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6385 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6386 PRK East Asia & Pacific Pyongyang 125.754 39.0319
## 6387 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6388 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6389 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6390 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6391 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6392 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6393 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6394 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6395 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6396 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6397 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6398 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6399 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6400 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6401 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6402 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6403 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6404 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6405 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6406 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6407 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6408 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6409 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6410 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6411 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6412 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6413 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6414 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6415 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6416 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6417 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6418 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6419 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6420 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6421 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6422 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6423 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6424 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6425 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6426 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6427 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6428 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6429 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6430 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6431 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6432 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6433 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6434 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6435 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6436 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6437 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6438 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6439 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6440 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6441 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6442 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6443 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6444 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6445 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6446 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6447 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6448 KOR East Asia & Pacific Seoul 126.957 37.5323
## 6449 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6450 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6451 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6452 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6453 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6454 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6455 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6456 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6457 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6458 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6459 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6460 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6461 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6462 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6463 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6464 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6465 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6466 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6467 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6468 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6469 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6470 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6471 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6472 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6473 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6474 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6475 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6476 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6477 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6478 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6479 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6480 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6481 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6482 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6483 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6484 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6485 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6486 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6487 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6488 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6489 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6490 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6491 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6492 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6493 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6494 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6495 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6496 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6497 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6498 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6499 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6500 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6501 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6502 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6503 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6504 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6505 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6506 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6507 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6508 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6509 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6510 KWT Middle East & North Africa Kuwait City 47.9824 29.3721
## 6511 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6512 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6513 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6514 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6515 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6516 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6517 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6518 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6519 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6520 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6521 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6522 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6523 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6524 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6525 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6526 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6527 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6528 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6529 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6530 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6531 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6532 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6533 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6534 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6535 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6536 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6537 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6538 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6539 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6540 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6541 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6542 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6543 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6544 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6545 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6546 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6547 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6548 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6549 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6550 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6551 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6552 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6553 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6554 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6555 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6556 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6557 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6558 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6559 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6560 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6561 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6562 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6563 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6564 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6565 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6566 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6567 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6568 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6569 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6570 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6571 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6572 CYM Latin America & Caribbean George Town -81.3857 19.3022
## 6573 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6574 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6575 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6576 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6577 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6578 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6579 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6580 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6581 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6582 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6583 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6584 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6585 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6586 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6587 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6588 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6589 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6590 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6591 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6592 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6593 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6594 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6595 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6596 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6597 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6598 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6599 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6600 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6601 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6602 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6603 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6604 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6605 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6606 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6607 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6608 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6609 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6610 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6611 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6612 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6613 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6614 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6615 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6616 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6617 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6618 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6619 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6620 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6621 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6622 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6623 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6624 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6625 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6626 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6627 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6628 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6629 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6630 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6631 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6632 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6633 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6634 KAZ Europe & Central Asia Astana 71.4382 51.1879
## 6635 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6636 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6637 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6638 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6639 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6640 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6641 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6642 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6643 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6644 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6645 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6646 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6647 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6648 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6649 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6650 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6651 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6652 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6653 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6654 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6655 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6656 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6657 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6658 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6659 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6660 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6661 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6662 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6663 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6664 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6665 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6666 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6667 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6668 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6669 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6670 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6671 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6672 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6673 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6674 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6675 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6676 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6677 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6678 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6679 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6680 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6681 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6682 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6683 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6684 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6685 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6686 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6687 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6688 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6689 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6690 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6691 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6692 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6693 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6694 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6695 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6696 LAO East Asia & Pacific Vientiane 102.177 18.5826
## 6697 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6698 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6699 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6700 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6701 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6702 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6703 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6704 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6705 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6706 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6707 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6708 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6709 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6710 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6711 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6712 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6713 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6714 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6715 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6716 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6717 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6718 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6719 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6720 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6721 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6722 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6723 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6724 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6725 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6726 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6727 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6728 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6729 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6730 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6731 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6732 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6733 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6734 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6735 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6736 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6737 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6738 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6739 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6740 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6741 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6742 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6743 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6744 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6745 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6746 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6747 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6748 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6749 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6750 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6751 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6752 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6753 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6754 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6755 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6756 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6757 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6758 LBN Middle East & North Africa Beirut 35.5134 33.8872
## 6759 LCA Latin America & Caribbean Castries -60.9832 14
## 6760 LCA Latin America & Caribbean Castries -60.9832 14
## 6761 LCA Latin America & Caribbean Castries -60.9832 14
## 6762 LCA Latin America & Caribbean Castries -60.9832 14
## 6763 LCA Latin America & Caribbean Castries -60.9832 14
## 6764 LCA Latin America & Caribbean Castries -60.9832 14
## 6765 LCA Latin America & Caribbean Castries -60.9832 14
## 6766 LCA Latin America & Caribbean Castries -60.9832 14
## 6767 LCA Latin America & Caribbean Castries -60.9832 14
## 6768 LCA Latin America & Caribbean Castries -60.9832 14
## 6769 LCA Latin America & Caribbean Castries -60.9832 14
## 6770 LCA Latin America & Caribbean Castries -60.9832 14
## 6771 LCA Latin America & Caribbean Castries -60.9832 14
## 6772 LCA Latin America & Caribbean Castries -60.9832 14
## 6773 LCA Latin America & Caribbean Castries -60.9832 14
## 6774 LCA Latin America & Caribbean Castries -60.9832 14
## 6775 LCA Latin America & Caribbean Castries -60.9832 14
## 6776 LCA Latin America & Caribbean Castries -60.9832 14
## 6777 LCA Latin America & Caribbean Castries -60.9832 14
## 6778 LCA Latin America & Caribbean Castries -60.9832 14
## 6779 LCA Latin America & Caribbean Castries -60.9832 14
## 6780 LCA Latin America & Caribbean Castries -60.9832 14
## 6781 LCA Latin America & Caribbean Castries -60.9832 14
## 6782 LCA Latin America & Caribbean Castries -60.9832 14
## 6783 LCA Latin America & Caribbean Castries -60.9832 14
## 6784 LCA Latin America & Caribbean Castries -60.9832 14
## 6785 LCA Latin America & Caribbean Castries -60.9832 14
## 6786 LCA Latin America & Caribbean Castries -60.9832 14
## 6787 LCA Latin America & Caribbean Castries -60.9832 14
## 6788 LCA Latin America & Caribbean Castries -60.9832 14
## 6789 LCA Latin America & Caribbean Castries -60.9832 14
## 6790 LCA Latin America & Caribbean Castries -60.9832 14
## 6791 LCA Latin America & Caribbean Castries -60.9832 14
## 6792 LCA Latin America & Caribbean Castries -60.9832 14
## 6793 LCA Latin America & Caribbean Castries -60.9832 14
## 6794 LCA Latin America & Caribbean Castries -60.9832 14
## 6795 LCA Latin America & Caribbean Castries -60.9832 14
## 6796 LCA Latin America & Caribbean Castries -60.9832 14
## 6797 LCA Latin America & Caribbean Castries -60.9832 14
## 6798 LCA Latin America & Caribbean Castries -60.9832 14
## 6799 LCA Latin America & Caribbean Castries -60.9832 14
## 6800 LCA Latin America & Caribbean Castries -60.9832 14
## 6801 LCA Latin America & Caribbean Castries -60.9832 14
## 6802 LCA Latin America & Caribbean Castries -60.9832 14
## 6803 LCA Latin America & Caribbean Castries -60.9832 14
## 6804 LCA Latin America & Caribbean Castries -60.9832 14
## 6805 LCA Latin America & Caribbean Castries -60.9832 14
## 6806 LCA Latin America & Caribbean Castries -60.9832 14
## 6807 LCA Latin America & Caribbean Castries -60.9832 14
## 6808 LCA Latin America & Caribbean Castries -60.9832 14
## 6809 LCA Latin America & Caribbean Castries -60.9832 14
## 6810 LCA Latin America & Caribbean Castries -60.9832 14
## 6811 LCA Latin America & Caribbean Castries -60.9832 14
## 6812 LCA Latin America & Caribbean Castries -60.9832 14
## 6813 LCA Latin America & Caribbean Castries -60.9832 14
## 6814 LCA Latin America & Caribbean Castries -60.9832 14
## 6815 LCA Latin America & Caribbean Castries -60.9832 14
## 6816 LCA Latin America & Caribbean Castries -60.9832 14
## 6817 LCA Latin America & Caribbean Castries -60.9832 14
## 6818 LCA Latin America & Caribbean Castries -60.9832 14
## 6819 LCA Latin America & Caribbean Castries -60.9832 14
## 6820 LCA Latin America & Caribbean Castries -60.9832 14
## 6821 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6822 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6823 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6824 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6825 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6826 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6827 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6828 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6829 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6830 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6831 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6832 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6833 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6834 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6835 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6836 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6837 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6838 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6839 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6840 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6841 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6842 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6843 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6844 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6845 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6846 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6847 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6848 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6849 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6850 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6851 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6852 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6853 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6854 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6855 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6856 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6857 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6858 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6859 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6860 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6861 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6862 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6863 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6864 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6865 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6866 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6867 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6868 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6869 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6870 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6871 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6872 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6873 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6874 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6875 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6876 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6877 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6878 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6879 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6880 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6881 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6882 LIE Europe & Central Asia Vaduz 9.52148 47.1411
## 6883 LKA South Asia Colombo 79.8528 6.92148
## 6884 LKA South Asia Colombo 79.8528 6.92148
## 6885 LKA South Asia Colombo 79.8528 6.92148
## 6886 LKA South Asia Colombo 79.8528 6.92148
## 6887 LKA South Asia Colombo 79.8528 6.92148
## 6888 LKA South Asia Colombo 79.8528 6.92148
## 6889 LKA South Asia Colombo 79.8528 6.92148
## 6890 LKA South Asia Colombo 79.8528 6.92148
## 6891 LKA South Asia Colombo 79.8528 6.92148
## 6892 LKA South Asia Colombo 79.8528 6.92148
## 6893 LKA South Asia Colombo 79.8528 6.92148
## 6894 LKA South Asia Colombo 79.8528 6.92148
## 6895 LKA South Asia Colombo 79.8528 6.92148
## 6896 LKA South Asia Colombo 79.8528 6.92148
## 6897 LKA South Asia Colombo 79.8528 6.92148
## 6898 LKA South Asia Colombo 79.8528 6.92148
## 6899 LKA South Asia Colombo 79.8528 6.92148
## 6900 LKA South Asia Colombo 79.8528 6.92148
## 6901 LKA South Asia Colombo 79.8528 6.92148
## 6902 LKA South Asia Colombo 79.8528 6.92148
## 6903 LKA South Asia Colombo 79.8528 6.92148
## 6904 LKA South Asia Colombo 79.8528 6.92148
## 6905 LKA South Asia Colombo 79.8528 6.92148
## 6906 LKA South Asia Colombo 79.8528 6.92148
## 6907 LKA South Asia Colombo 79.8528 6.92148
## 6908 LKA South Asia Colombo 79.8528 6.92148
## 6909 LKA South Asia Colombo 79.8528 6.92148
## 6910 LKA South Asia Colombo 79.8528 6.92148
## 6911 LKA South Asia Colombo 79.8528 6.92148
## 6912 LKA South Asia Colombo 79.8528 6.92148
## 6913 LKA South Asia Colombo 79.8528 6.92148
## 6914 LKA South Asia Colombo 79.8528 6.92148
## 6915 LKA South Asia Colombo 79.8528 6.92148
## 6916 LKA South Asia Colombo 79.8528 6.92148
## 6917 LKA South Asia Colombo 79.8528 6.92148
## 6918 LKA South Asia Colombo 79.8528 6.92148
## 6919 LKA South Asia Colombo 79.8528 6.92148
## 6920 LKA South Asia Colombo 79.8528 6.92148
## 6921 LKA South Asia Colombo 79.8528 6.92148
## 6922 LKA South Asia Colombo 79.8528 6.92148
## 6923 LKA South Asia Colombo 79.8528 6.92148
## 6924 LKA South Asia Colombo 79.8528 6.92148
## 6925 LKA South Asia Colombo 79.8528 6.92148
## 6926 LKA South Asia Colombo 79.8528 6.92148
## 6927 LKA South Asia Colombo 79.8528 6.92148
## 6928 LKA South Asia Colombo 79.8528 6.92148
## 6929 LKA South Asia Colombo 79.8528 6.92148
## 6930 LKA South Asia Colombo 79.8528 6.92148
## 6931 LKA South Asia Colombo 79.8528 6.92148
## 6932 LKA South Asia Colombo 79.8528 6.92148
## 6933 LKA South Asia Colombo 79.8528 6.92148
## 6934 LKA South Asia Colombo 79.8528 6.92148
## 6935 LKA South Asia Colombo 79.8528 6.92148
## 6936 LKA South Asia Colombo 79.8528 6.92148
## 6937 LKA South Asia Colombo 79.8528 6.92148
## 6938 LKA South Asia Colombo 79.8528 6.92148
## 6939 LKA South Asia Colombo 79.8528 6.92148
## 6940 LKA South Asia Colombo 79.8528 6.92148
## 6941 LKA South Asia Colombo 79.8528 6.92148
## 6942 LKA South Asia Colombo 79.8528 6.92148
## 6943 LKA South Asia Colombo 79.8528 6.92148
## 6944 LKA South Asia Colombo 79.8528 6.92148
## 6945 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6946 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6947 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6948 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6949 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6950 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6951 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6952 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6953 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6954 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6955 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6956 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6957 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6958 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6959 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6960 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6961 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6962 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6963 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6964 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6965 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6966 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6967 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6968 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6969 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6970 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6971 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6972 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6973 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6974 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6975 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6976 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6977 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6978 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6979 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6980 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6981 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6982 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6983 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6984 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6985 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6986 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6987 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6988 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6989 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6990 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6991 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6992 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6993 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6994 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6995 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6996 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6997 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6998 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 6999 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7000 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7001 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7002 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7003 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7004 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7005 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7006 LBR Sub-Saharan Africa Monrovia -10.7957 6.30039
## 7007 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7008 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7009 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7010 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7011 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7012 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7013 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7014 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7015 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7016 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7017 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7018 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7019 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7020 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7021 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7022 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7023 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7024 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7025 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7026 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7027 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7028 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7029 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7030 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7031 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7032 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7033 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7034 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7035 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7036 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7037 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7038 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7039 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7040 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7041 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7042 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7043 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7044 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7045 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7046 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7047 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7048 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7049 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7050 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7051 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7052 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7053 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7054 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7055 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7056 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7057 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7058 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7059 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7060 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7061 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7062 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7063 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7064 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7065 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7066 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7067 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7068 LSO Sub-Saharan Africa Maseru 27.7167 -29.5208
## 7069 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7070 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7071 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7072 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7073 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7074 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7075 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7076 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7077 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7078 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7079 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7080 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7081 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7082 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7083 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7084 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7085 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7086 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7087 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7088 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7089 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7090 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7091 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7092 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7093 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7094 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7095 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7096 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7097 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7098 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7099 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7100 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7101 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7102 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7103 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7104 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7105 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7106 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7107 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7108 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7109 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7110 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7111 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7112 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7113 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7114 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7115 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7116 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7117 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7118 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7119 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7120 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7121 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7122 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7123 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7124 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7125 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7126 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7127 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7128 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7129 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7130 LTU Europe & Central Asia Vilnius 25.2799 54.6896
## 7131 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7132 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7133 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7134 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7135 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7136 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7137 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7138 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7139 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7140 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7141 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7142 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7143 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7144 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7145 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7146 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7147 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7148 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7149 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7150 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7151 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7152 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7153 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7154 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7155 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7156 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7157 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7158 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7159 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7160 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7161 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7162 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7163 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7164 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7165 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7166 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7167 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7168 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7169 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7170 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7171 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7172 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7173 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7174 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7175 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7176 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7177 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7178 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7179 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7180 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7181 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7182 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7183 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7184 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7185 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7186 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7187 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7188 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7189 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7190 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7191 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7192 LUX Europe & Central Asia Luxembourg 6.1296 49.61
## 7193 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7194 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7195 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7196 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7197 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7198 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7199 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7200 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7201 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7202 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7203 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7204 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7205 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7206 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7207 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7208 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7209 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7210 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7211 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7212 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7213 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7214 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7215 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7216 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7217 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7218 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7219 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7220 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7221 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7222 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7223 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7224 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7225 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7226 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7227 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7228 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7229 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7230 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7231 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7232 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7233 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7234 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7235 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7236 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7237 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7238 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7239 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7240 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7241 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7242 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7243 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7244 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7245 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7246 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7247 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7248 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7249 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7250 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7251 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7252 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7253 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7254 LVA Europe & Central Asia Riga 24.1048 56.9465
## 7255 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7256 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7257 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7258 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7259 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7260 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7261 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7262 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7263 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7264 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7265 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7266 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7267 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7268 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7269 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7270 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7271 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7272 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7273 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7274 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7275 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7276 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7277 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7278 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7279 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7280 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7281 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7282 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7283 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7284 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7285 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7286 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7287 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7288 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7289 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7290 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7291 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7292 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7293 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7294 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7295 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7296 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7297 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7298 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7299 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7300 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7301 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7302 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7303 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7304 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7305 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7306 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7307 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7308 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7309 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7310 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7311 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7312 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7313 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7314 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7315 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7316 LBY Middle East & North Africa Tripoli 13.1072 32.8578
## 7317 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7318 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7319 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7320 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7321 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7322 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7323 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7324 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7325 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7326 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7327 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7328 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7329 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7330 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7331 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7332 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7333 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7334 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7335 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7336 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7337 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7338 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7339 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7340 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7341 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7342 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7343 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7344 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7345 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7346 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7347 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7348 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7349 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7350 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7351 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7352 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7353 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7354 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7355 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7356 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7357 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7358 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7359 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7360 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7361 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7362 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7363 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7364 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7365 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7366 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7367 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7368 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7369 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7370 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7371 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7372 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7373 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7374 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7375 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7376 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7377 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7378 MAR Middle East & North Africa Rabat -6.8704 33.9905
## 7379 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7380 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7381 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7382 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7383 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7384 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7385 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7386 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7387 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7388 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7389 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7390 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7391 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7392 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7393 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7394 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7395 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7396 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7397 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7398 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7399 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7400 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7401 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7402 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7403 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7404 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7405 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7406 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7407 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7408 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7409 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7410 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7411 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7412 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7413 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7414 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7415 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7416 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7417 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7418 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7419 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7420 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7421 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7422 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7423 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7424 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7425 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7426 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7427 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7428 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7429 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7430 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7431 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7432 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7433 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7434 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7435 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7436 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7437 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7438 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7439 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7440 MCO Europe & Central Asia Monaco 7.41891 43.7325
## 7441 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7442 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7443 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7444 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7445 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7446 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7447 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7448 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7449 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7450 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7451 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7452 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7453 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7454 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7455 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7456 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7457 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7458 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7459 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7460 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7461 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7462 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7463 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7464 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7465 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7466 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7467 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7468 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7469 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7470 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7471 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7472 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7473 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7474 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7475 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7476 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7477 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7478 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7479 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7480 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7481 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7482 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7483 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7484 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7485 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7486 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7487 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7488 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7489 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7490 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7491 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7492 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7493 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7494 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7495 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7496 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7497 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7498 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7499 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7500 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7501 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7502 MDA Europe & Central Asia Chisinau 28.8497 47.0167
## 7503 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7504 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7505 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7506 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7507 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7508 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7509 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7510 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7511 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7512 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7513 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7514 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7515 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7516 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7517 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7518 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7519 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7520 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7521 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7522 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7523 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7524 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7525 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7526 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7527 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7528 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7529 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7530 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7531 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7532 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7533 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7534 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7535 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7536 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7537 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7538 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7539 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7540 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7541 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7542 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7543 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7544 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7545 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7546 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7547 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7548 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7549 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7550 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7551 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7552 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7553 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7554 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7555 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7556 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7557 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7558 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7559 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7560 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7561 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7562 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7563 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7564 MNE Europe & Central Asia Podgorica 19.2595 42.4602
## 7565 MAF Latin America & Caribbean Marigot
## 7566 MAF Latin America & Caribbean Marigot
## 7567 MAF Latin America & Caribbean Marigot
## 7568 MAF Latin America & Caribbean Marigot
## 7569 MAF Latin America & Caribbean Marigot
## 7570 MAF Latin America & Caribbean Marigot
## 7571 MAF Latin America & Caribbean Marigot
## 7572 MAF Latin America & Caribbean Marigot
## 7573 MAF Latin America & Caribbean Marigot
## 7574 MAF Latin America & Caribbean Marigot
## 7575 MAF Latin America & Caribbean Marigot
## 7576 MAF Latin America & Caribbean Marigot
## 7577 MAF Latin America & Caribbean Marigot
## 7578 MAF Latin America & Caribbean Marigot
## 7579 MAF Latin America & Caribbean Marigot
## 7580 MAF Latin America & Caribbean Marigot
## 7581 MAF Latin America & Caribbean Marigot
## 7582 MAF Latin America & Caribbean Marigot
## 7583 MAF Latin America & Caribbean Marigot
## 7584 MAF Latin America & Caribbean Marigot
## 7585 MAF Latin America & Caribbean Marigot
## 7586 MAF Latin America & Caribbean Marigot
## 7587 MAF Latin America & Caribbean Marigot
## 7588 MAF Latin America & Caribbean Marigot
## 7589 MAF Latin America & Caribbean Marigot
## 7590 MAF Latin America & Caribbean Marigot
## 7591 MAF Latin America & Caribbean Marigot
## 7592 MAF Latin America & Caribbean Marigot
## 7593 MAF Latin America & Caribbean Marigot
## 7594 MAF Latin America & Caribbean Marigot
## 7595 MAF Latin America & Caribbean Marigot
## 7596 MAF Latin America & Caribbean Marigot
## 7597 MAF Latin America & Caribbean Marigot
## 7598 MAF Latin America & Caribbean Marigot
## 7599 MAF Latin America & Caribbean Marigot
## 7600 MAF Latin America & Caribbean Marigot
## 7601 MAF Latin America & Caribbean Marigot
## 7602 MAF Latin America & Caribbean Marigot
## 7603 MAF Latin America & Caribbean Marigot
## 7604 MAF Latin America & Caribbean Marigot
## 7605 MAF Latin America & Caribbean Marigot
## 7606 MAF Latin America & Caribbean Marigot
## 7607 MAF Latin America & Caribbean Marigot
## 7608 MAF Latin America & Caribbean Marigot
## 7609 MAF Latin America & Caribbean Marigot
## 7610 MAF Latin America & Caribbean Marigot
## 7611 MAF Latin America & Caribbean Marigot
## 7612 MAF Latin America & Caribbean Marigot
## 7613 MAF Latin America & Caribbean Marigot
## 7614 MAF Latin America & Caribbean Marigot
## 7615 MAF Latin America & Caribbean Marigot
## 7616 MAF Latin America & Caribbean Marigot
## 7617 MAF Latin America & Caribbean Marigot
## 7618 MAF Latin America & Caribbean Marigot
## 7619 MAF Latin America & Caribbean Marigot
## 7620 MAF Latin America & Caribbean Marigot
## 7621 MAF Latin America & Caribbean Marigot
## 7622 MAF Latin America & Caribbean Marigot
## 7623 MAF Latin America & Caribbean Marigot
## 7624 MAF Latin America & Caribbean Marigot
## 7625 MAF Latin America & Caribbean Marigot
## 7626 MAF Latin America & Caribbean Marigot
## 7627 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7628 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7629 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7630 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7631 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7632 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7633 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7634 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7635 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7636 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7637 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7638 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7639 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7640 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7641 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7642 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7643 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7644 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7645 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7646 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7647 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7648 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7649 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7650 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7651 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7652 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7653 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7654 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7655 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7656 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7657 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7658 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7659 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7660 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7661 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7662 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7663 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7664 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7665 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7666 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7667 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7668 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7669 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7670 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7671 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7672 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7673 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7674 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7675 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7676 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7677 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7678 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7679 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7680 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7681 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7682 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7683 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7684 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7685 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7686 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7687 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7688 MDG Sub-Saharan Africa Antananarivo 45.7167 -20.4667
## 7689 MHL East Asia & Pacific Majuro 171.135 7.11046
## 7690 MHL East Asia & Pacific Majuro 171.135 7.11046
## 7691 MHL East Asia & Pacific Majuro 171.135 7.11046
## 7692 MHL East Asia & Pacific Majuro 171.135 7.11046
## income lending
## 1 High income Not classified
## 2 High income Not classified
## 3 High income Not classified
## 4 High income Not classified
## 5 High income Not classified
## 6 High income Not classified
## 7 High income Not classified
## 8 High income Not classified
## 9 High income Not classified
## 10 High income Not classified
## 11 High income Not classified
## 12 High income Not classified
## 13 High income Not classified
## 14 High income Not classified
## 15 High income Not classified
## 16 High income Not classified
## 17 High income Not classified
## 18 High income Not classified
## 19 High income Not classified
## 20 High income Not classified
## 21 High income Not classified
## 22 High income Not classified
## 23 High income Not classified
## 24 High income Not classified
## 25 High income Not classified
## 26 High income Not classified
## 27 High income Not classified
## 28 High income Not classified
## 29 High income Not classified
## 30 High income Not classified
## 31 High income Not classified
## 32 High income Not classified
## 33 High income Not classified
## 34 High income Not classified
## 35 High income Not classified
## 36 High income Not classified
## 37 High income Not classified
## 38 High income Not classified
## 39 High income Not classified
## 40 High income Not classified
## 41 High income Not classified
## 42 High income Not classified
## 43 High income Not classified
## 44 High income Not classified
## 45 High income Not classified
## 46 High income Not classified
## 47 High income Not classified
## 48 High income Not classified
## 49 High income Not classified
## 50 High income Not classified
## 51 High income Not classified
## 52 High income Not classified
## 53 High income Not classified
## 54 High income Not classified
## 55 High income Not classified
## 56 High income Not classified
## 57 High income Not classified
## 58 High income Not classified
## 59 High income Not classified
## 60 High income Not classified
## 61 High income Not classified
## 62 High income Not classified
## 63 High income Not classified
## 64 High income Not classified
## 65 High income Not classified
## 66 High income Not classified
## 67 High income Not classified
## 68 High income Not classified
## 69 High income Not classified
## 70 High income Not classified
## 71 High income Not classified
## 72 High income Not classified
## 73 High income Not classified
## 74 High income Not classified
## 75 High income Not classified
## 76 High income Not classified
## 77 High income Not classified
## 78 High income Not classified
## 79 High income Not classified
## 80 High income Not classified
## 81 High income Not classified
## 82 High income Not classified
## 83 High income Not classified
## 84 High income Not classified
## 85 High income Not classified
## 86 High income Not classified
## 87 High income Not classified
## 88 High income Not classified
## 89 High income Not classified
## 90 High income Not classified
## 91 High income Not classified
## 92 High income Not classified
## 93 High income Not classified
## 94 High income Not classified
## 95 High income Not classified
## 96 High income Not classified
## 97 High income Not classified
## 98 High income Not classified
## 99 High income Not classified
## 100 High income Not classified
## 101 High income Not classified
## 102 High income Not classified
## 103 High income Not classified
## 104 High income Not classified
## 105 High income Not classified
## 106 High income Not classified
## 107 High income Not classified
## 108 High income Not classified
## 109 High income Not classified
## 110 High income Not classified
## 111 High income Not classified
## 112 High income Not classified
## 113 High income Not classified
## 114 High income Not classified
## 115 High income Not classified
## 116 High income Not classified
## 117 High income Not classified
## 118 High income Not classified
## 119 High income Not classified
## 120 High income Not classified
## 121 High income Not classified
## 122 High income Not classified
## 123 High income Not classified
## 124 High income Not classified
## 125 Low income IDA
## 126 Low income IDA
## 127 Low income IDA
## 128 Low income IDA
## 129 Low income IDA
## 130 Low income IDA
## 131 Low income IDA
## 132 Low income IDA
## 133 Low income IDA
## 134 Low income IDA
## 135 Low income IDA
## 136 Low income IDA
## 137 Low income IDA
## 138 Low income IDA
## 139 Low income IDA
## 140 Low income IDA
## 141 Low income IDA
## 142 Low income IDA
## 143 Low income IDA
## 144 Low income IDA
## 145 Low income IDA
## 146 Low income IDA
## 147 Low income IDA
## 148 Low income IDA
## 149 Low income IDA
## 150 Low income IDA
## 151 Low income IDA
## 152 Low income IDA
## 153 Low income IDA
## 154 Low income IDA
## 155 Low income IDA
## 156 Low income IDA
## 157 Low income IDA
## 158 Low income IDA
## 159 Low income IDA
## 160 Low income IDA
## 161 Low income IDA
## 162 Low income IDA
## 163 Low income IDA
## 164 Low income IDA
## 165 Low income IDA
## 166 Low income IDA
## 167 Low income IDA
## 168 Low income IDA
## 169 Low income IDA
## 170 Low income IDA
## 171 Low income IDA
## 172 Low income IDA
## 173 Low income IDA
## 174 Low income IDA
## 175 Low income IDA
## 176 Low income IDA
## 177 Low income IDA
## 178 Low income IDA
## 179 Low income IDA
## 180 Low income IDA
## 181 Low income IDA
## 182 Low income IDA
## 183 Low income IDA
## 184 Low income IDA
## 185 Low income IDA
## 186 Low income IDA
## 187 High income IBRD
## 188 High income IBRD
## 189 High income IBRD
## 190 High income IBRD
## 191 High income IBRD
## 192 High income IBRD
## 193 High income IBRD
## 194 High income IBRD
## 195 High income IBRD
## 196 High income IBRD
## 197 High income IBRD
## 198 High income IBRD
## 199 High income IBRD
## 200 High income IBRD
## 201 High income IBRD
## 202 High income IBRD
## 203 High income IBRD
## 204 High income IBRD
## 205 High income IBRD
## 206 High income IBRD
## 207 High income IBRD
## 208 High income IBRD
## 209 High income IBRD
## 210 High income IBRD
## 211 High income IBRD
## 212 High income IBRD
## 213 High income IBRD
## 214 High income IBRD
## 215 High income IBRD
## 216 High income IBRD
## 217 High income IBRD
## 218 High income IBRD
## 219 High income IBRD
## 220 High income IBRD
## 221 High income IBRD
## 222 High income IBRD
## 223 High income IBRD
## 224 High income IBRD
## 225 High income IBRD
## 226 High income IBRD
## 227 High income IBRD
## 228 High income IBRD
## 229 High income IBRD
## 230 High income IBRD
## 231 High income IBRD
## 232 High income IBRD
## 233 High income IBRD
## 234 High income IBRD
## 235 High income IBRD
## 236 High income IBRD
## 237 High income IBRD
## 238 High income IBRD
## 239 High income IBRD
## 240 High income IBRD
## 241 High income IBRD
## 242 High income IBRD
## 243 High income IBRD
## 244 High income IBRD
## 245 High income IBRD
## 246 High income IBRD
## 247 High income IBRD
## 248 High income IBRD
## 249 Upper middle income IBRD
## 250 Upper middle income IBRD
## 251 Upper middle income IBRD
## 252 Upper middle income IBRD
## 253 Upper middle income IBRD
## 254 Upper middle income IBRD
## 255 Upper middle income IBRD
## 256 Upper middle income IBRD
## 257 Upper middle income IBRD
## 258 Upper middle income IBRD
## 259 Upper middle income IBRD
## 260 Upper middle income IBRD
## 261 Upper middle income IBRD
## 262 Upper middle income IBRD
## 263 Upper middle income IBRD
## 264 Upper middle income IBRD
## 265 Upper middle income IBRD
## 266 Upper middle income IBRD
## 267 Upper middle income IBRD
## 268 Upper middle income IBRD
## 269 Upper middle income IBRD
## 270 Upper middle income IBRD
## 271 Upper middle income IBRD
## 272 Upper middle income IBRD
## 273 Upper middle income IBRD
## 274 Upper middle income IBRD
## 275 Upper middle income IBRD
## 276 Upper middle income IBRD
## 277 Upper middle income IBRD
## 278 Upper middle income IBRD
## 279 Upper middle income IBRD
## 280 Upper middle income IBRD
## 281 Upper middle income IBRD
## 282 Upper middle income IBRD
## 283 Upper middle income IBRD
## 284 Upper middle income IBRD
## 285 Upper middle income IBRD
## 286 Upper middle income IBRD
## 287 Upper middle income IBRD
## 288 Upper middle income IBRD
## 289 Upper middle income IBRD
## 290 Upper middle income IBRD
## 291 Upper middle income IBRD
## 292 Upper middle income IBRD
## 293 Upper middle income IBRD
## 294 Upper middle income IBRD
## 295 Upper middle income IBRD
## 296 Upper middle income IBRD
## 297 Upper middle income IBRD
## 298 Upper middle income IBRD
## 299 Upper middle income IBRD
## 300 Upper middle income IBRD
## 301 Upper middle income IBRD
## 302 Upper middle income IBRD
## 303 Upper middle income IBRD
## 304 Upper middle income IBRD
## 305 Upper middle income IBRD
## 306 Upper middle income IBRD
## 307 Upper middle income IBRD
## 308 Upper middle income IBRD
## 309 Upper middle income IBRD
## 310 Upper middle income IBRD
## 311 Upper middle income IBRD
## 312 Upper middle income IBRD
## 313 Upper middle income IBRD
## 314 Upper middle income IBRD
## 315 Upper middle income IBRD
## 316 Upper middle income IBRD
## 317 Upper middle income IBRD
## 318 Upper middle income IBRD
## 319 Upper middle income IBRD
## 320 Upper middle income IBRD
## 321 Upper middle income IBRD
## 322 Upper middle income IBRD
## 323 Upper middle income IBRD
## 324 Upper middle income IBRD
## 325 Upper middle income IBRD
## 326 Upper middle income IBRD
## 327 Upper middle income IBRD
## 328 Upper middle income IBRD
## 329 Upper middle income IBRD
## 330 Upper middle income IBRD
## 331 Upper middle income IBRD
## 332 Upper middle income IBRD
## 333 Upper middle income IBRD
## 334 Upper middle income IBRD
## 335 Upper middle income IBRD
## 336 Upper middle income IBRD
## 337 Upper middle income IBRD
## 338 Upper middle income IBRD
## 339 Upper middle income IBRD
## 340 Upper middle income IBRD
## 341 Upper middle income IBRD
## 342 Upper middle income IBRD
## 343 Upper middle income IBRD
## 344 Upper middle income IBRD
## 345 Upper middle income IBRD
## 346 Upper middle income IBRD
## 347 Upper middle income IBRD
## 348 Upper middle income IBRD
## 349 Upper middle income IBRD
## 350 Upper middle income IBRD
## 351 Upper middle income IBRD
## 352 Upper middle income IBRD
## 353 Upper middle income IBRD
## 354 Upper middle income IBRD
## 355 Upper middle income IBRD
## 356 Upper middle income IBRD
## 357 Upper middle income IBRD
## 358 Upper middle income IBRD
## 359 Upper middle income IBRD
## 360 Upper middle income IBRD
## 361 Upper middle income IBRD
## 362 Upper middle income IBRD
## 363 Upper middle income IBRD
## 364 Upper middle income IBRD
## 365 Upper middle income IBRD
## 366 Upper middle income IBRD
## 367 Upper middle income IBRD
## 368 Upper middle income IBRD
## 369 Upper middle income IBRD
## 370 Upper middle income IBRD
## 371 Upper middle income IBRD
## 372 Upper middle income IBRD
## 373 Lower middle income IBRD
## 374 Lower middle income IBRD
## 375 Lower middle income IBRD
## 376 Lower middle income IBRD
## 377 Lower middle income IBRD
## 378 Lower middle income IBRD
## 379 Lower middle income IBRD
## 380 Lower middle income IBRD
## 381 Lower middle income IBRD
## 382 Lower middle income IBRD
## 383 Lower middle income IBRD
## 384 Lower middle income IBRD
## 385 Lower middle income IBRD
## 386 Lower middle income IBRD
## 387 Lower middle income IBRD
## 388 Lower middle income IBRD
## 389 Lower middle income IBRD
## 390 Lower middle income IBRD
## 391 Lower middle income IBRD
## 392 Lower middle income IBRD
## 393 Lower middle income IBRD
## 394 Lower middle income IBRD
## 395 Lower middle income IBRD
## 396 Lower middle income IBRD
## 397 Lower middle income IBRD
## 398 Lower middle income IBRD
## 399 Lower middle income IBRD
## 400 Lower middle income IBRD
## 401 Lower middle income IBRD
## 402 Lower middle income IBRD
## 403 Lower middle income IBRD
## 404 Lower middle income IBRD
## 405 Lower middle income IBRD
## 406 Lower middle income IBRD
## 407 Lower middle income IBRD
## 408 Lower middle income IBRD
## 409 Lower middle income IBRD
## 410 Lower middle income IBRD
## 411 Lower middle income IBRD
## 412 Lower middle income IBRD
## 413 Lower middle income IBRD
## 414 Lower middle income IBRD
## 415 Lower middle income IBRD
## 416 Lower middle income IBRD
## 417 Lower middle income IBRD
## 418 Lower middle income IBRD
## 419 Lower middle income IBRD
## 420 Lower middle income IBRD
## 421 Lower middle income IBRD
## 422 Lower middle income IBRD
## 423 Lower middle income IBRD
## 424 Lower middle income IBRD
## 425 Lower middle income IBRD
## 426 Lower middle income IBRD
## 427 Lower middle income IBRD
## 428 Lower middle income IBRD
## 429 Lower middle income IBRD
## 430 Lower middle income IBRD
## 431 Lower middle income IBRD
## 432 Lower middle income IBRD
## 433 Lower middle income IBRD
## 434 Lower middle income IBRD
## 435 Upper middle income IBRD
## 436 Upper middle income IBRD
## 437 Upper middle income IBRD
## 438 Upper middle income IBRD
## 439 Upper middle income IBRD
## 440 Upper middle income IBRD
## 441 Upper middle income IBRD
## 442 Upper middle income IBRD
## 443 Upper middle income IBRD
## 444 Upper middle income IBRD
## 445 Upper middle income IBRD
## 446 Upper middle income IBRD
## 447 Upper middle income IBRD
## 448 Upper middle income IBRD
## 449 Upper middle income IBRD
## 450 Upper middle income IBRD
## 451 Upper middle income IBRD
## 452 Upper middle income IBRD
## 453 Upper middle income IBRD
## 454 Upper middle income IBRD
## 455 Upper middle income IBRD
## 456 Upper middle income IBRD
## 457 Upper middle income IBRD
## 458 Upper middle income IBRD
## 459 Upper middle income IBRD
## 460 Upper middle income IBRD
## 461 Upper middle income IBRD
## 462 Upper middle income IBRD
## 463 Upper middle income IBRD
## 464 Upper middle income IBRD
## 465 Upper middle income IBRD
## 466 Upper middle income IBRD
## 467 Upper middle income IBRD
## 468 Upper middle income IBRD
## 469 Upper middle income IBRD
## 470 Upper middle income IBRD
## 471 Upper middle income IBRD
## 472 Upper middle income IBRD
## 473 Upper middle income IBRD
## 474 Upper middle income IBRD
## 475 Upper middle income IBRD
## 476 Upper middle income IBRD
## 477 Upper middle income IBRD
## 478 Upper middle income IBRD
## 479 Upper middle income IBRD
## 480 Upper middle income IBRD
## 481 Upper middle income IBRD
## 482 Upper middle income IBRD
## 483 Upper middle income IBRD
## 484 Upper middle income IBRD
## 485 Upper middle income IBRD
## 486 Upper middle income IBRD
## 487 Upper middle income IBRD
## 488 Upper middle income IBRD
## 489 Upper middle income IBRD
## 490 Upper middle income IBRD
## 491 Upper middle income IBRD
## 492 Upper middle income IBRD
## 493 Upper middle income IBRD
## 494 Upper middle income IBRD
## 495 Upper middle income IBRD
## 496 Upper middle income IBRD
## 497 Upper middle income Not classified
## 498 Upper middle income Not classified
## 499 Upper middle income Not classified
## 500 Upper middle income Not classified
## 501 Upper middle income Not classified
## 502 Upper middle income Not classified
## 503 Upper middle income Not classified
## 504 Upper middle income Not classified
## 505 Upper middle income Not classified
## 506 Upper middle income Not classified
## 507 Upper middle income Not classified
## 508 Upper middle income Not classified
## 509 Upper middle income Not classified
## 510 Upper middle income Not classified
## 511 Upper middle income Not classified
## 512 Upper middle income Not classified
## 513 Upper middle income Not classified
## 514 Upper middle income Not classified
## 515 Upper middle income Not classified
## 516 Upper middle income Not classified
## 517 Upper middle income Not classified
## 518 Upper middle income Not classified
## 519 Upper middle income Not classified
## 520 Upper middle income Not classified
## 521 Upper middle income Not classified
## 522 Upper middle income Not classified
## 523 Upper middle income Not classified
## 524 Upper middle income Not classified
## 525 Upper middle income Not classified
## 526 Upper middle income Not classified
## 527 Upper middle income Not classified
## 528 Upper middle income Not classified
## 529 Upper middle income Not classified
## 530 Upper middle income Not classified
## 531 Upper middle income Not classified
## 532 Upper middle income Not classified
## 533 Upper middle income Not classified
## 534 Upper middle income Not classified
## 535 Upper middle income Not classified
## 536 Upper middle income Not classified
## 537 Upper middle income Not classified
## 538 Upper middle income Not classified
## 539 Upper middle income Not classified
## 540 Upper middle income Not classified
## 541 Upper middle income Not classified
## 542 Upper middle income Not classified
## 543 Upper middle income Not classified
## 544 Upper middle income Not classified
## 545 Upper middle income Not classified
## 546 Upper middle income Not classified
## 547 Upper middle income Not classified
## 548 Upper middle income Not classified
## 549 Upper middle income Not classified
## 550 Upper middle income Not classified
## 551 Upper middle income Not classified
## 552 Upper middle income Not classified
## 553 Upper middle income Not classified
## 554 Upper middle income Not classified
## 555 Upper middle income Not classified
## 556 Upper middle income Not classified
## 557 Upper middle income Not classified
## 558 Upper middle income Not classified
## 559 High income Not classified
## 560 High income Not classified
## 561 High income Not classified
## 562 High income Not classified
## 563 High income Not classified
## 564 High income Not classified
## 565 High income Not classified
## 566 High income Not classified
## 567 High income Not classified
## 568 High income Not classified
## 569 High income Not classified
## 570 High income Not classified
## 571 High income Not classified
## 572 High income Not classified
## 573 High income Not classified
## 574 High income Not classified
## 575 High income Not classified
## 576 High income Not classified
## 577 High income Not classified
## 578 High income Not classified
## 579 High income Not classified
## 580 High income Not classified
## 581 High income Not classified
## 582 High income Not classified
## 583 High income Not classified
## 584 High income Not classified
## 585 High income Not classified
## 586 High income Not classified
## 587 High income Not classified
## 588 High income Not classified
## 589 High income Not classified
## 590 High income Not classified
## 591 High income Not classified
## 592 High income Not classified
## 593 High income Not classified
## 594 High income Not classified
## 595 High income Not classified
## 596 High income Not classified
## 597 High income Not classified
## 598 High income Not classified
## 599 High income Not classified
## 600 High income Not classified
## 601 High income Not classified
## 602 High income Not classified
## 603 High income Not classified
## 604 High income Not classified
## 605 High income Not classified
## 606 High income Not classified
## 607 High income Not classified
## 608 High income Not classified
## 609 High income Not classified
## 610 High income Not classified
## 611 High income Not classified
## 612 High income Not classified
## 613 High income Not classified
## 614 High income Not classified
## 615 High income Not classified
## 616 High income Not classified
## 617 High income Not classified
## 618 High income Not classified
## 619 High income Not classified
## 620 High income Not classified
## 621 High income Not classified
## 622 High income Not classified
## 623 High income Not classified
## 624 High income Not classified
## 625 High income Not classified
## 626 High income Not classified
## 627 High income Not classified
## 628 High income Not classified
## 629 High income Not classified
## 630 High income Not classified
## 631 High income Not classified
## 632 High income Not classified
## 633 High income Not classified
## 634 High income Not classified
## 635 High income Not classified
## 636 High income Not classified
## 637 High income Not classified
## 638 High income Not classified
## 639 High income Not classified
## 640 High income Not classified
## 641 High income Not classified
## 642 High income Not classified
## 643 High income Not classified
## 644 High income Not classified
## 645 High income Not classified
## 646 High income Not classified
## 647 High income Not classified
## 648 High income Not classified
## 649 High income Not classified
## 650 High income Not classified
## 651 High income Not classified
## 652 High income Not classified
## 653 High income Not classified
## 654 High income Not classified
## 655 High income Not classified
## 656 High income Not classified
## 657 High income Not classified
## 658 High income Not classified
## 659 High income Not classified
## 660 High income Not classified
## 661 High income Not classified
## 662 High income Not classified
## 663 High income Not classified
## 664 High income Not classified
## 665 High income Not classified
## 666 High income Not classified
## 667 High income Not classified
## 668 High income Not classified
## 669 High income Not classified
## 670 High income Not classified
## 671 High income Not classified
## 672 High income Not classified
## 673 High income Not classified
## 674 High income Not classified
## 675 High income Not classified
## 676 High income Not classified
## 677 High income Not classified
## 678 High income Not classified
## 679 High income Not classified
## 680 High income Not classified
## 681 High income Not classified
## 682 High income Not classified
## 683 High income Not classified
## 684 High income Not classified
## 685 High income Not classified
## 686 High income Not classified
## 687 High income Not classified
## 688 High income Not classified
## 689 High income Not classified
## 690 High income Not classified
## 691 High income Not classified
## 692 High income Not classified
## 693 High income Not classified
## 694 High income Not classified
## 695 High income Not classified
## 696 High income Not classified
## 697 High income Not classified
## 698 High income Not classified
## 699 High income Not classified
## 700 High income Not classified
## 701 High income Not classified
## 702 High income Not classified
## 703 High income Not classified
## 704 High income Not classified
## 705 High income Not classified
## 706 High income Not classified
## 707 High income Not classified
## 708 High income Not classified
## 709 High income Not classified
## 710 High income Not classified
## 711 High income Not classified
## 712 High income Not classified
## 713 High income Not classified
## 714 High income Not classified
## 715 High income Not classified
## 716 High income Not classified
## 717 High income Not classified
## 718 High income Not classified
## 719 High income Not classified
## 720 High income Not classified
## 721 High income Not classified
## 722 High income Not classified
## 723 High income Not classified
## 724 High income Not classified
## 725 High income Not classified
## 726 High income Not classified
## 727 High income Not classified
## 728 High income Not classified
## 729 High income Not classified
## 730 High income Not classified
## 731 High income Not classified
## 732 High income Not classified
## 733 High income Not classified
## 734 High income Not classified
## 735 High income Not classified
## 736 High income Not classified
## 737 High income Not classified
## 738 High income Not classified
## 739 High income Not classified
## 740 High income Not classified
## 741 High income Not classified
## 742 High income Not classified
## 743 High income Not classified
## 744 High income Not classified
## 745 Upper middle income IBRD
## 746 Upper middle income IBRD
## 747 Upper middle income IBRD
## 748 Upper middle income IBRD
## 749 Upper middle income IBRD
## 750 Upper middle income IBRD
## 751 Upper middle income IBRD
## 752 Upper middle income IBRD
## 753 Upper middle income IBRD
## 754 Upper middle income IBRD
## 755 Upper middle income IBRD
## 756 Upper middle income IBRD
## 757 Upper middle income IBRD
## 758 Upper middle income IBRD
## 759 Upper middle income IBRD
## 760 Upper middle income IBRD
## 761 Upper middle income IBRD
## 762 Upper middle income IBRD
## 763 Upper middle income IBRD
## 764 Upper middle income IBRD
## 765 Upper middle income IBRD
## 766 Upper middle income IBRD
## 767 Upper middle income IBRD
## 768 Upper middle income IBRD
## 769 Upper middle income IBRD
## 770 Upper middle income IBRD
## 771 Upper middle income IBRD
## 772 Upper middle income IBRD
## 773 Upper middle income IBRD
## 774 Upper middle income IBRD
## 775 Upper middle income IBRD
## 776 Upper middle income IBRD
## 777 Upper middle income IBRD
## 778 Upper middle income IBRD
## 779 Upper middle income IBRD
## 780 Upper middle income IBRD
## 781 Upper middle income IBRD
## 782 Upper middle income IBRD
## 783 Upper middle income IBRD
## 784 Upper middle income IBRD
## 785 Upper middle income IBRD
## 786 Upper middle income IBRD
## 787 Upper middle income IBRD
## 788 Upper middle income IBRD
## 789 Upper middle income IBRD
## 790 Upper middle income IBRD
## 791 Upper middle income IBRD
## 792 Upper middle income IBRD
## 793 Upper middle income IBRD
## 794 Upper middle income IBRD
## 795 Upper middle income IBRD
## 796 Upper middle income IBRD
## 797 Upper middle income IBRD
## 798 Upper middle income IBRD
## 799 Upper middle income IBRD
## 800 Upper middle income IBRD
## 801 Upper middle income IBRD
## 802 Upper middle income IBRD
## 803 Upper middle income IBRD
## 804 Upper middle income IBRD
## 805 Upper middle income IBRD
## 806 Upper middle income IBRD
## 807 Upper middle income IBRD
## 808 Upper middle income IBRD
## 809 Upper middle income IBRD
## 810 Upper middle income IBRD
## 811 Upper middle income IBRD
## 812 Upper middle income IBRD
## 813 Upper middle income IBRD
## 814 Upper middle income IBRD
## 815 Upper middle income IBRD
## 816 Upper middle income IBRD
## 817 Upper middle income IBRD
## 818 Upper middle income IBRD
## 819 Upper middle income IBRD
## 820 Upper middle income IBRD
## 821 Upper middle income IBRD
## 822 Upper middle income IBRD
## 823 Upper middle income IBRD
## 824 Upper middle income IBRD
## 825 Upper middle income IBRD
## 826 Upper middle income IBRD
## 827 Upper middle income IBRD
## 828 Upper middle income IBRD
## 829 Upper middle income IBRD
## 830 Upper middle income IBRD
## 831 Upper middle income IBRD
## 832 Upper middle income IBRD
## 833 Upper middle income IBRD
## 834 Upper middle income IBRD
## 835 Upper middle income IBRD
## 836 Upper middle income IBRD
## 837 Upper middle income IBRD
## 838 Upper middle income IBRD
## 839 Upper middle income IBRD
## 840 Upper middle income IBRD
## 841 Upper middle income IBRD
## 842 Upper middle income IBRD
## 843 Upper middle income IBRD
## 844 Upper middle income IBRD
## 845 Upper middle income IBRD
## 846 Upper middle income IBRD
## 847 Upper middle income IBRD
## 848 Upper middle income IBRD
## 849 Upper middle income IBRD
## 850 Upper middle income IBRD
## 851 Upper middle income IBRD
## 852 Upper middle income IBRD
## 853 Upper middle income IBRD
## 854 Upper middle income IBRD
## 855 Upper middle income IBRD
## 856 Upper middle income IBRD
## 857 Upper middle income IBRD
## 858 Upper middle income IBRD
## 859 Upper middle income IBRD
## 860 Upper middle income IBRD
## 861 Upper middle income IBRD
## 862 Upper middle income IBRD
## 863 Upper middle income IBRD
## 864 Upper middle income IBRD
## 865 Upper middle income IBRD
## 866 Upper middle income IBRD
## 867 Upper middle income IBRD
## 868 Upper middle income IBRD
## 869 High income Not classified
## 870 High income Not classified
## 871 High income Not classified
## 872 High income Not classified
## 873 High income Not classified
## 874 High income Not classified
## 875 High income Not classified
## 876 High income Not classified
## 877 High income Not classified
## 878 High income Not classified
## 879 High income Not classified
## 880 High income Not classified
## 881 High income Not classified
## 882 High income Not classified
## 883 High income Not classified
## 884 High income Not classified
## 885 High income Not classified
## 886 High income Not classified
## 887 High income Not classified
## 888 High income Not classified
## 889 High income Not classified
## 890 High income Not classified
## 891 High income Not classified
## 892 High income Not classified
## 893 High income Not classified
## 894 High income Not classified
## 895 High income Not classified
## 896 High income Not classified
## 897 High income Not classified
## 898 High income Not classified
## 899 High income Not classified
## 900 High income Not classified
## 901 High income Not classified
## 902 High income Not classified
## 903 High income Not classified
## 904 High income Not classified
## 905 High income Not classified
## 906 High income Not classified
## 907 High income Not classified
## 908 High income Not classified
## 909 High income Not classified
## 910 High income Not classified
## 911 High income Not classified
## 912 High income Not classified
## 913 High income Not classified
## 914 High income Not classified
## 915 High income Not classified
## 916 High income Not classified
## 917 High income Not classified
## 918 High income Not classified
## 919 High income Not classified
## 920 High income Not classified
## 921 High income Not classified
## 922 High income Not classified
## 923 High income Not classified
## 924 High income Not classified
## 925 High income Not classified
## 926 High income Not classified
## 927 High income Not classified
## 928 High income Not classified
## 929 High income Not classified
## 930 High income Not classified
## 931 Lower middle income IDA
## 932 Lower middle income IDA
## 933 Lower middle income IDA
## 934 Lower middle income IDA
## 935 Lower middle income IDA
## 936 Lower middle income IDA
## 937 Lower middle income IDA
## 938 Lower middle income IDA
## 939 Lower middle income IDA
## 940 Lower middle income IDA
## 941 Lower middle income IDA
## 942 Lower middle income IDA
## 943 Lower middle income IDA
## 944 Lower middle income IDA
## 945 Lower middle income IDA
## 946 Lower middle income IDA
## 947 Lower middle income IDA
## 948 Lower middle income IDA
## 949 Lower middle income IDA
## 950 Lower middle income IDA
## 951 Lower middle income IDA
## 952 Lower middle income IDA
## 953 Lower middle income IDA
## 954 Lower middle income IDA
## 955 Lower middle income IDA
## 956 Lower middle income IDA
## 957 Lower middle income IDA
## 958 Lower middle income IDA
## 959 Lower middle income IDA
## 960 Lower middle income IDA
## 961 Lower middle income IDA
## 962 Lower middle income IDA
## 963 Lower middle income IDA
## 964 Lower middle income IDA
## 965 Lower middle income IDA
## 966 Lower middle income IDA
## 967 Lower middle income IDA
## 968 Lower middle income IDA
## 969 Lower middle income IDA
## 970 Lower middle income IDA
## 971 Lower middle income IDA
## 972 Lower middle income IDA
## 973 Lower middle income IDA
## 974 Lower middle income IDA
## 975 Lower middle income IDA
## 976 Lower middle income IDA
## 977 Lower middle income IDA
## 978 Lower middle income IDA
## 979 Lower middle income IDA
## 980 Lower middle income IDA
## 981 Lower middle income IDA
## 982 Lower middle income IDA
## 983 Lower middle income IDA
## 984 Lower middle income IDA
## 985 Lower middle income IDA
## 986 Lower middle income IDA
## 987 Lower middle income IDA
## 988 Lower middle income IDA
## 989 Lower middle income IDA
## 990 Lower middle income IDA
## 991 Lower middle income IDA
## 992 Lower middle income IDA
## 993 High income Not classified
## 994 High income Not classified
## 995 High income Not classified
## 996 High income Not classified
## 997 High income Not classified
## 998 High income Not classified
## 999 High income Not classified
## 1000 High income Not classified
## 1001 High income Not classified
## 1002 High income Not classified
## 1003 High income Not classified
## 1004 High income Not classified
## 1005 High income Not classified
## 1006 High income Not classified
## 1007 High income Not classified
## 1008 High income Not classified
## 1009 High income Not classified
## 1010 High income Not classified
## 1011 High income Not classified
## 1012 High income Not classified
## 1013 High income Not classified
## 1014 High income Not classified
## 1015 High income Not classified
## 1016 High income Not classified
## 1017 High income Not classified
## 1018 High income Not classified
## 1019 High income Not classified
## 1020 High income Not classified
## 1021 High income Not classified
## 1022 High income Not classified
## 1023 High income Not classified
## 1024 High income Not classified
## 1025 High income Not classified
## 1026 High income Not classified
## 1027 High income Not classified
## 1028 High income Not classified
## 1029 High income Not classified
## 1030 High income Not classified
## 1031 High income Not classified
## 1032 High income Not classified
## 1033 High income Not classified
## 1034 High income Not classified
## 1035 High income Not classified
## 1036 High income Not classified
## 1037 High income Not classified
## 1038 High income Not classified
## 1039 High income Not classified
## 1040 High income Not classified
## 1041 High income Not classified
## 1042 High income Not classified
## 1043 High income Not classified
## 1044 High income Not classified
## 1045 High income Not classified
## 1046 High income Not classified
## 1047 High income Not classified
## 1048 High income Not classified
## 1049 High income Not classified
## 1050 High income Not classified
## 1051 High income Not classified
## 1052 High income Not classified
## 1053 High income Not classified
## 1054 High income Not classified
## 1055 Low income IDA
## 1056 Low income IDA
## 1057 Low income IDA
## 1058 Low income IDA
## 1059 Low income IDA
## 1060 Low income IDA
## 1061 Low income IDA
## 1062 Low income IDA
## 1063 Low income IDA
## 1064 Low income IDA
## 1065 Low income IDA
## 1066 Low income IDA
## 1067 Low income IDA
## 1068 Low income IDA
## 1069 Low income IDA
## 1070 Low income IDA
## 1071 Low income IDA
## 1072 Low income IDA
## 1073 Low income IDA
## 1074 Low income IDA
## 1075 Low income IDA
## 1076 Low income IDA
## 1077 Low income IDA
## 1078 Low income IDA
## 1079 Low income IDA
## 1080 Low income IDA
## 1081 Low income IDA
## 1082 Low income IDA
## 1083 Low income IDA
## 1084 Low income IDA
## 1085 Low income IDA
## 1086 Low income IDA
## 1087 Low income IDA
## 1088 Low income IDA
## 1089 Low income IDA
## 1090 Low income IDA
## 1091 Low income IDA
## 1092 Low income IDA
## 1093 Low income IDA
## 1094 Low income IDA
## 1095 Low income IDA
## 1096 Low income IDA
## 1097 Low income IDA
## 1098 Low income IDA
## 1099 Low income IDA
## 1100 Low income IDA
## 1101 Low income IDA
## 1102 Low income IDA
## 1103 Low income IDA
## 1104 Low income IDA
## 1105 Low income IDA
## 1106 Low income IDA
## 1107 Low income IDA
## 1108 Low income IDA
## 1109 Low income IDA
## 1110 Low income IDA
## 1111 Low income IDA
## 1112 Low income IDA
## 1113 Low income IDA
## 1114 Low income IDA
## 1115 Low income IDA
## 1116 Low income IDA
## 1117 Upper middle income IBRD
## 1118 Upper middle income IBRD
## 1119 Upper middle income IBRD
## 1120 Upper middle income IBRD
## 1121 Upper middle income IBRD
## 1122 Upper middle income IBRD
## 1123 Upper middle income IBRD
## 1124 Upper middle income IBRD
## 1125 Upper middle income IBRD
## 1126 Upper middle income IBRD
## 1127 Upper middle income IBRD
## 1128 Upper middle income IBRD
## 1129 Upper middle income IBRD
## 1130 Upper middle income IBRD
## 1131 Upper middle income IBRD
## 1132 Upper middle income IBRD
## 1133 Upper middle income IBRD
## 1134 Upper middle income IBRD
## 1135 Upper middle income IBRD
## 1136 Upper middle income IBRD
## 1137 Upper middle income IBRD
## 1138 Upper middle income IBRD
## 1139 Upper middle income IBRD
## 1140 Upper middle income IBRD
## 1141 Upper middle income IBRD
## 1142 Upper middle income IBRD
## 1143 Upper middle income IBRD
## 1144 Upper middle income IBRD
## 1145 Upper middle income IBRD
## 1146 Upper middle income IBRD
## 1147 Upper middle income IBRD
## 1148 Upper middle income IBRD
## 1149 Upper middle income IBRD
## 1150 Upper middle income IBRD
## 1151 Upper middle income IBRD
## 1152 Upper middle income IBRD
## 1153 Upper middle income IBRD
## 1154 Upper middle income IBRD
## 1155 Upper middle income IBRD
## 1156 Upper middle income IBRD
## 1157 Upper middle income IBRD
## 1158 Upper middle income IBRD
## 1159 Upper middle income IBRD
## 1160 Upper middle income IBRD
## 1161 Upper middle income IBRD
## 1162 Upper middle income IBRD
## 1163 Upper middle income IBRD
## 1164 Upper middle income IBRD
## 1165 Upper middle income IBRD
## 1166 Upper middle income IBRD
## 1167 Upper middle income IBRD
## 1168 Upper middle income IBRD
## 1169 Upper middle income IBRD
## 1170 Upper middle income IBRD
## 1171 Upper middle income IBRD
## 1172 Upper middle income IBRD
## 1173 Upper middle income IBRD
## 1174 Upper middle income IBRD
## 1175 Upper middle income IBRD
## 1176 Upper middle income IBRD
## 1177 Upper middle income IBRD
## 1178 Upper middle income IBRD
## 1179 High income Not classified
## 1180 High income Not classified
## 1181 High income Not classified
## 1182 High income Not classified
## 1183 High income Not classified
## 1184 High income Not classified
## 1185 High income Not classified
## 1186 High income Not classified
## 1187 High income Not classified
## 1188 High income Not classified
## 1189 High income Not classified
## 1190 High income Not classified
## 1191 High income Not classified
## 1192 High income Not classified
## 1193 High income Not classified
## 1194 High income Not classified
## 1195 High income Not classified
## 1196 High income Not classified
## 1197 High income Not classified
## 1198 High income Not classified
## 1199 High income Not classified
## 1200 High income Not classified
## 1201 High income Not classified
## 1202 High income Not classified
## 1203 High income Not classified
## 1204 High income Not classified
## 1205 High income Not classified
## 1206 High income Not classified
## 1207 High income Not classified
## 1208 High income Not classified
## 1209 High income Not classified
## 1210 High income Not classified
## 1211 High income Not classified
## 1212 High income Not classified
## 1213 High income Not classified
## 1214 High income Not classified
## 1215 High income Not classified
## 1216 High income Not classified
## 1217 High income Not classified
## 1218 High income Not classified
## 1219 High income Not classified
## 1220 High income Not classified
## 1221 High income Not classified
## 1222 High income Not classified
## 1223 High income Not classified
## 1224 High income Not classified
## 1225 High income Not classified
## 1226 High income Not classified
## 1227 High income Not classified
## 1228 High income Not classified
## 1229 High income Not classified
## 1230 High income Not classified
## 1231 High income Not classified
## 1232 High income Not classified
## 1233 High income Not classified
## 1234 High income Not classified
## 1235 High income Not classified
## 1236 High income Not classified
## 1237 High income Not classified
## 1238 High income Not classified
## 1239 High income Not classified
## 1240 High income Not classified
## 1241 Low income IDA
## 1242 Low income IDA
## 1243 Low income IDA
## 1244 Low income IDA
## 1245 Low income IDA
## 1246 Low income IDA
## 1247 Low income IDA
## 1248 Low income IDA
## 1249 Low income IDA
## 1250 Low income IDA
## 1251 Low income IDA
## 1252 Low income IDA
## 1253 Low income IDA
## 1254 Low income IDA
## 1255 Low income IDA
## 1256 Low income IDA
## 1257 Low income IDA
## 1258 Low income IDA
## 1259 Low income IDA
## 1260 Low income IDA
## 1261 Low income IDA
## 1262 Low income IDA
## 1263 Low income IDA
## 1264 Low income IDA
## 1265 Low income IDA
## 1266 Low income IDA
## 1267 Low income IDA
## 1268 Low income IDA
## 1269 Low income IDA
## 1270 Low income IDA
## 1271 Low income IDA
## 1272 Low income IDA
## 1273 Low income IDA
## 1274 Low income IDA
## 1275 Low income IDA
## 1276 Low income IDA
## 1277 Low income IDA
## 1278 Low income IDA
## 1279 Low income IDA
## 1280 Low income IDA
## 1281 Low income IDA
## 1282 Low income IDA
## 1283 Low income IDA
## 1284 Low income IDA
## 1285 Low income IDA
## 1286 Low income IDA
## 1287 Low income IDA
## 1288 Low income IDA
## 1289 Low income IDA
## 1290 Low income IDA
## 1291 Low income IDA
## 1292 Low income IDA
## 1293 Low income IDA
## 1294 Low income IDA
## 1295 Low income IDA
## 1296 Low income IDA
## 1297 Low income IDA
## 1298 Low income IDA
## 1299 Low income IDA
## 1300 Low income IDA
## 1301 Low income IDA
## 1302 Low income IDA
## 1303 Lower middle income IDA
## 1304 Lower middle income IDA
## 1305 Lower middle income IDA
## 1306 Lower middle income IDA
## 1307 Lower middle income IDA
## 1308 Lower middle income IDA
## 1309 Lower middle income IDA
## 1310 Lower middle income IDA
## 1311 Lower middle income IDA
## 1312 Lower middle income IDA
## 1313 Lower middle income IDA
## 1314 Lower middle income IDA
## 1315 Lower middle income IDA
## 1316 Lower middle income IDA
## 1317 Lower middle income IDA
## 1318 Lower middle income IDA
## 1319 Lower middle income IDA
## 1320 Lower middle income IDA
## 1321 Lower middle income IDA
## 1322 Lower middle income IDA
## 1323 Lower middle income IDA
## 1324 Lower middle income IDA
## 1325 Lower middle income IDA
## 1326 Lower middle income IDA
## 1327 Lower middle income IDA
## 1328 Lower middle income IDA
## 1329 Lower middle income IDA
## 1330 Lower middle income IDA
## 1331 Lower middle income IDA
## 1332 Lower middle income IDA
## 1333 Lower middle income IDA
## 1334 Lower middle income IDA
## 1335 Lower middle income IDA
## 1336 Lower middle income IDA
## 1337 Lower middle income IDA
## 1338 Lower middle income IDA
## 1339 Lower middle income IDA
## 1340 Lower middle income IDA
## 1341 Lower middle income IDA
## 1342 Lower middle income IDA
## 1343 Lower middle income IDA
## 1344 Lower middle income IDA
## 1345 Lower middle income IDA
## 1346 Lower middle income IDA
## 1347 Lower middle income IDA
## 1348 Lower middle income IDA
## 1349 Lower middle income IDA
## 1350 Lower middle income IDA
## 1351 Lower middle income IDA
## 1352 Lower middle income IDA
## 1353 Lower middle income IDA
## 1354 Lower middle income IDA
## 1355 Lower middle income IDA
## 1356 Lower middle income IDA
## 1357 Lower middle income IDA
## 1358 Lower middle income IDA
## 1359 Lower middle income IDA
## 1360 Lower middle income IDA
## 1361 Lower middle income IDA
## 1362 Lower middle income IDA
## 1363 Lower middle income IDA
## 1364 Lower middle income IDA
## 1365 High income Not classified
## 1366 High income Not classified
## 1367 High income Not classified
## 1368 High income Not classified
## 1369 High income Not classified
## 1370 High income Not classified
## 1371 High income Not classified
## 1372 High income Not classified
## 1373 High income Not classified
## 1374 High income Not classified
## 1375 High income Not classified
## 1376 High income Not classified
## 1377 High income Not classified
## 1378 High income Not classified
## 1379 High income Not classified
## 1380 High income Not classified
## 1381 High income Not classified
## 1382 High income Not classified
## 1383 High income Not classified
## 1384 High income Not classified
## 1385 High income Not classified
## 1386 High income Not classified
## 1387 High income Not classified
## 1388 High income Not classified
## 1389 High income Not classified
## 1390 High income Not classified
## 1391 High income Not classified
## 1392 High income Not classified
## 1393 High income Not classified
## 1394 High income Not classified
## 1395 High income Not classified
## 1396 High income Not classified
## 1397 High income Not classified
## 1398 High income Not classified
## 1399 High income Not classified
## 1400 High income Not classified
## 1401 High income Not classified
## 1402 High income Not classified
## 1403 High income Not classified
## 1404 High income Not classified
## 1405 High income Not classified
## 1406 High income Not classified
## 1407 High income Not classified
## 1408 High income Not classified
## 1409 High income Not classified
## 1410 High income Not classified
## 1411 High income Not classified
## 1412 High income Not classified
## 1413 High income Not classified
## 1414 High income Not classified
## 1415 High income Not classified
## 1416 High income Not classified
## 1417 High income Not classified
## 1418 High income Not classified
## 1419 High income Not classified
## 1420 High income Not classified
## 1421 High income Not classified
## 1422 High income Not classified
## 1423 High income Not classified
## 1424 High income Not classified
## 1425 High income Not classified
## 1426 High income Not classified
## 1427 High income Not classified
## 1428 High income Not classified
## 1429 High income Not classified
## 1430 High income Not classified
## 1431 High income Not classified
## 1432 High income Not classified
## 1433 High income Not classified
## 1434 High income Not classified
## 1435 High income Not classified
## 1436 High income Not classified
## 1437 High income Not classified
## 1438 High income Not classified
## 1439 High income Not classified
## 1440 High income Not classified
## 1441 High income Not classified
## 1442 High income Not classified
## 1443 High income Not classified
## 1444 High income Not classified
## 1445 High income Not classified
## 1446 High income Not classified
## 1447 High income Not classified
## 1448 High income Not classified
## 1449 High income Not classified
## 1450 High income Not classified
## 1451 High income Not classified
## 1452 High income Not classified
## 1453 High income Not classified
## 1454 High income Not classified
## 1455 High income Not classified
## 1456 High income Not classified
## 1457 High income Not classified
## 1458 High income Not classified
## 1459 High income Not classified
## 1460 High income Not classified
## 1461 High income Not classified
## 1462 High income Not classified
## 1463 High income Not classified
## 1464 High income Not classified
## 1465 High income Not classified
## 1466 High income Not classified
## 1467 High income Not classified
## 1468 High income Not classified
## 1469 High income Not classified
## 1470 High income Not classified
## 1471 High income Not classified
## 1472 High income Not classified
## 1473 High income Not classified
## 1474 High income Not classified
## 1475 High income Not classified
## 1476 High income Not classified
## 1477 High income Not classified
## 1478 High income Not classified
## 1479 High income Not classified
## 1480 High income Not classified
## 1481 High income Not classified
## 1482 High income Not classified
## 1483 High income Not classified
## 1484 High income Not classified
## 1485 High income Not classified
## 1486 High income Not classified
## 1487 High income Not classified
## 1488 High income Not classified
## 1489 Lower middle income IBRD
## 1490 Lower middle income IBRD
## 1491 Lower middle income IBRD
## 1492 Lower middle income IBRD
## 1493 Lower middle income IBRD
## 1494 Lower middle income IBRD
## 1495 Lower middle income IBRD
## 1496 Lower middle income IBRD
## 1497 Lower middle income IBRD
## 1498 Lower middle income IBRD
## 1499 Lower middle income IBRD
## 1500 Lower middle income IBRD
## 1501 Lower middle income IBRD
## 1502 Lower middle income IBRD
## 1503 Lower middle income IBRD
## 1504 Lower middle income IBRD
## 1505 Lower middle income IBRD
## 1506 Lower middle income IBRD
## 1507 Lower middle income IBRD
## 1508 Lower middle income IBRD
## 1509 Lower middle income IBRD
## 1510 Lower middle income IBRD
## 1511 Lower middle income IBRD
## 1512 Lower middle income IBRD
## 1513 Lower middle income IBRD
## 1514 Lower middle income IBRD
## 1515 Lower middle income IBRD
## 1516 Lower middle income IBRD
## 1517 Lower middle income IBRD
## 1518 Lower middle income IBRD
## 1519 Lower middle income IBRD
## 1520 Lower middle income IBRD
## 1521 Lower middle income IBRD
## 1522 Lower middle income IBRD
## 1523 Lower middle income IBRD
## 1524 Lower middle income IBRD
## 1525 Lower middle income IBRD
## 1526 Lower middle income IBRD
## 1527 Lower middle income IBRD
## 1528 Lower middle income IBRD
## 1529 Lower middle income IBRD
## 1530 Lower middle income IBRD
## 1531 Lower middle income IBRD
## 1532 Lower middle income IBRD
## 1533 Lower middle income IBRD
## 1534 Lower middle income IBRD
## 1535 Lower middle income IBRD
## 1536 Lower middle income IBRD
## 1537 Lower middle income IBRD
## 1538 Lower middle income IBRD
## 1539 Lower middle income IBRD
## 1540 Lower middle income IBRD
## 1541 Lower middle income IBRD
## 1542 Lower middle income IBRD
## 1543 Lower middle income IBRD
## 1544 Lower middle income IBRD
## 1545 Lower middle income IBRD
## 1546 Lower middle income IBRD
## 1547 Lower middle income IBRD
## 1548 Lower middle income IBRD
## 1549 Lower middle income IBRD
## 1550 Lower middle income IBRD
## 1551 Upper middle income IBRD
## 1552 Upper middle income IBRD
## 1553 Upper middle income IBRD
## 1554 Upper middle income IBRD
## 1555 Upper middle income IBRD
## 1556 Upper middle income IBRD
## 1557 Upper middle income IBRD
## 1558 Upper middle income IBRD
## 1559 Upper middle income IBRD
## 1560 Upper middle income IBRD
## 1561 Upper middle income IBRD
## 1562 Upper middle income IBRD
## 1563 Upper middle income IBRD
## 1564 Upper middle income IBRD
## 1565 Upper middle income IBRD
## 1566 Upper middle income IBRD
## 1567 Upper middle income IBRD
## 1568 Upper middle income IBRD
## 1569 Upper middle income IBRD
## 1570 Upper middle income IBRD
## 1571 Upper middle income IBRD
## 1572 Upper middle income IBRD
## 1573 Upper middle income IBRD
## 1574 Upper middle income IBRD
## 1575 Upper middle income IBRD
## 1576 Upper middle income IBRD
## 1577 Upper middle income IBRD
## 1578 Upper middle income IBRD
## 1579 Upper middle income IBRD
## 1580 Upper middle income IBRD
## 1581 Upper middle income IBRD
## 1582 Upper middle income IBRD
## 1583 Upper middle income IBRD
## 1584 Upper middle income IBRD
## 1585 Upper middle income IBRD
## 1586 Upper middle income IBRD
## 1587 Upper middle income IBRD
## 1588 Upper middle income IBRD
## 1589 Upper middle income IBRD
## 1590 Upper middle income IBRD
## 1591 Upper middle income IBRD
## 1592 Upper middle income IBRD
## 1593 Upper middle income IBRD
## 1594 Upper middle income IBRD
## 1595 Upper middle income IBRD
## 1596 Upper middle income IBRD
## 1597 Upper middle income IBRD
## 1598 Upper middle income IBRD
## 1599 Upper middle income IBRD
## 1600 Upper middle income IBRD
## 1601 Upper middle income IBRD
## 1602 Upper middle income IBRD
## 1603 Upper middle income IBRD
## 1604 Upper middle income IBRD
## 1605 Upper middle income IBRD
## 1606 Upper middle income IBRD
## 1607 Upper middle income IBRD
## 1608 Upper middle income IBRD
## 1609 Upper middle income IBRD
## 1610 Upper middle income IBRD
## 1611 Upper middle income IBRD
## 1612 Upper middle income IBRD
## 1613 High income Not classified
## 1614 High income Not classified
## 1615 High income Not classified
## 1616 High income Not classified
## 1617 High income Not classified
## 1618 High income Not classified
## 1619 High income Not classified
## 1620 High income Not classified
## 1621 High income Not classified
## 1622 High income Not classified
## 1623 High income Not classified
## 1624 High income Not classified
## 1625 High income Not classified
## 1626 High income Not classified
## 1627 High income Not classified
## 1628 High income Not classified
## 1629 High income Not classified
## 1630 High income Not classified
## 1631 High income Not classified
## 1632 High income Not classified
## 1633 High income Not classified
## 1634 High income Not classified
## 1635 High income Not classified
## 1636 High income Not classified
## 1637 High income Not classified
## 1638 High income Not classified
## 1639 High income Not classified
## 1640 High income Not classified
## 1641 High income Not classified
## 1642 High income Not classified
## 1643 High income Not classified
## 1644 High income Not classified
## 1645 High income Not classified
## 1646 High income Not classified
## 1647 High income Not classified
## 1648 High income Not classified
## 1649 High income Not classified
## 1650 High income Not classified
## 1651 High income Not classified
## 1652 High income Not classified
## 1653 High income Not classified
## 1654 High income Not classified
## 1655 High income Not classified
## 1656 High income Not classified
## 1657 High income Not classified
## 1658 High income Not classified
## 1659 High income Not classified
## 1660 High income Not classified
## 1661 High income Not classified
## 1662 High income Not classified
## 1663 High income Not classified
## 1664 High income Not classified
## 1665 High income Not classified
## 1666 High income Not classified
## 1667 High income Not classified
## 1668 High income Not classified
## 1669 High income Not classified
## 1670 High income Not classified
## 1671 High income Not classified
## 1672 High income Not classified
## 1673 High income Not classified
## 1674 High income Not classified
## 1675 Lower middle income IDA
## 1676 Lower middle income IDA
## 1677 Lower middle income IDA
## 1678 Lower middle income IDA
## 1679 Lower middle income IDA
## 1680 Lower middle income IDA
## 1681 Lower middle income IDA
## 1682 Lower middle income IDA
## 1683 Lower middle income IDA
## 1684 Lower middle income IDA
## 1685 Lower middle income IDA
## 1686 Lower middle income IDA
## 1687 Lower middle income IDA
## 1688 Lower middle income IDA
## 1689 Lower middle income IDA
## 1690 Lower middle income IDA
## 1691 Lower middle income IDA
## 1692 Lower middle income IDA
## 1693 Lower middle income IDA
## 1694 Lower middle income IDA
## 1695 Lower middle income IDA
## 1696 Lower middle income IDA
## 1697 Lower middle income IDA
## 1698 Lower middle income IDA
## 1699 Lower middle income IDA
## 1700 Lower middle income IDA
## 1701 Lower middle income IDA
## 1702 Lower middle income IDA
## 1703 Lower middle income IDA
## 1704 Lower middle income IDA
## 1705 Lower middle income IDA
## 1706 Lower middle income IDA
## 1707 Lower middle income IDA
## 1708 Lower middle income IDA
## 1709 Lower middle income IDA
## 1710 Lower middle income IDA
## 1711 Lower middle income IDA
## 1712 Lower middle income IDA
## 1713 Lower middle income IDA
## 1714 Lower middle income IDA
## 1715 Lower middle income IDA
## 1716 Lower middle income IDA
## 1717 Lower middle income IDA
## 1718 Lower middle income IDA
## 1719 Lower middle income IDA
## 1720 Lower middle income IDA
## 1721 Lower middle income IDA
## 1722 Lower middle income IDA
## 1723 Lower middle income IDA
## 1724 Lower middle income IDA
## 1725 Lower middle income IDA
## 1726 Lower middle income IDA
## 1727 Lower middle income IDA
## 1728 Lower middle income IDA
## 1729 Lower middle income IDA
## 1730 Lower middle income IDA
## 1731 Lower middle income IDA
## 1732 Lower middle income IDA
## 1733 Lower middle income IDA
## 1734 Lower middle income IDA
## 1735 Lower middle income IDA
## 1736 Lower middle income IDA
## 1737 Upper middle income IBRD
## 1738 Upper middle income IBRD
## 1739 Upper middle income IBRD
## 1740 Upper middle income IBRD
## 1741 Upper middle income IBRD
## 1742 Upper middle income IBRD
## 1743 Upper middle income IBRD
## 1744 Upper middle income IBRD
## 1745 Upper middle income IBRD
## 1746 Upper middle income IBRD
## 1747 Upper middle income IBRD
## 1748 Upper middle income IBRD
## 1749 Upper middle income IBRD
## 1750 Upper middle income IBRD
## 1751 Upper middle income IBRD
## 1752 Upper middle income IBRD
## 1753 Upper middle income IBRD
## 1754 Upper middle income IBRD
## 1755 Upper middle income IBRD
## 1756 Upper middle income IBRD
## 1757 Upper middle income IBRD
## 1758 Upper middle income IBRD
## 1759 Upper middle income IBRD
## 1760 Upper middle income IBRD
## 1761 Upper middle income IBRD
## 1762 Upper middle income IBRD
## 1763 Upper middle income IBRD
## 1764 Upper middle income IBRD
## 1765 Upper middle income IBRD
## 1766 Upper middle income IBRD
## 1767 Upper middle income IBRD
## 1768 Upper middle income IBRD
## 1769 Upper middle income IBRD
## 1770 Upper middle income IBRD
## 1771 Upper middle income IBRD
## 1772 Upper middle income IBRD
## 1773 Upper middle income IBRD
## 1774 Upper middle income IBRD
## 1775 Upper middle income IBRD
## 1776 Upper middle income IBRD
## 1777 Upper middle income IBRD
## 1778 Upper middle income IBRD
## 1779 Upper middle income IBRD
## 1780 Upper middle income IBRD
## 1781 Upper middle income IBRD
## 1782 Upper middle income IBRD
## 1783 Upper middle income IBRD
## 1784 Upper middle income IBRD
## 1785 Upper middle income IBRD
## 1786 Upper middle income IBRD
## 1787 Upper middle income IBRD
## 1788 Upper middle income IBRD
## 1789 Upper middle income IBRD
## 1790 Upper middle income IBRD
## 1791 Upper middle income IBRD
## 1792 Upper middle income IBRD
## 1793 Upper middle income IBRD
## 1794 Upper middle income IBRD
## 1795 Upper middle income IBRD
## 1796 Upper middle income IBRD
## 1797 Upper middle income IBRD
## 1798 Upper middle income IBRD
## 1799 Upper middle income IBRD
## 1800 Upper middle income IBRD
## 1801 Upper middle income IBRD
## 1802 Upper middle income IBRD
## 1803 Upper middle income IBRD
## 1804 Upper middle income IBRD
## 1805 Upper middle income IBRD
## 1806 Upper middle income IBRD
## 1807 Upper middle income IBRD
## 1808 Upper middle income IBRD
## 1809 Upper middle income IBRD
## 1810 Upper middle income IBRD
## 1811 Upper middle income IBRD
## 1812 Upper middle income IBRD
## 1813 Upper middle income IBRD
## 1814 Upper middle income IBRD
## 1815 Upper middle income IBRD
## 1816 Upper middle income IBRD
## 1817 Upper middle income IBRD
## 1818 Upper middle income IBRD
## 1819 Upper middle income IBRD
## 1820 Upper middle income IBRD
## 1821 Upper middle income IBRD
## 1822 Upper middle income IBRD
## 1823 Upper middle income IBRD
## 1824 Upper middle income IBRD
## 1825 Upper middle income IBRD
## 1826 Upper middle income IBRD
## 1827 Upper middle income IBRD
## 1828 Upper middle income IBRD
## 1829 Upper middle income IBRD
## 1830 Upper middle income IBRD
## 1831 Upper middle income IBRD
## 1832 Upper middle income IBRD
## 1833 Upper middle income IBRD
## 1834 Upper middle income IBRD
## 1835 Upper middle income IBRD
## 1836 Upper middle income IBRD
## 1837 Upper middle income IBRD
## 1838 Upper middle income IBRD
## 1839 Upper middle income IBRD
## 1840 Upper middle income IBRD
## 1841 Upper middle income IBRD
## 1842 Upper middle income IBRD
## 1843 Upper middle income IBRD
## 1844 Upper middle income IBRD
## 1845 Upper middle income IBRD
## 1846 Upper middle income IBRD
## 1847 Upper middle income IBRD
## 1848 Upper middle income IBRD
## 1849 Upper middle income IBRD
## 1850 Upper middle income IBRD
## 1851 Upper middle income IBRD
## 1852 Upper middle income IBRD
## 1853 Upper middle income IBRD
## 1854 Upper middle income IBRD
## 1855 Upper middle income IBRD
## 1856 Upper middle income IBRD
## 1857 Upper middle income IBRD
## 1858 Upper middle income IBRD
## 1859 Upper middle income IBRD
## 1860 Upper middle income IBRD
## 1861 Upper middle income IBRD
## 1862 Upper middle income IBRD
## 1863 Upper middle income IBRD
## 1864 Upper middle income IBRD
## 1865 Upper middle income IBRD
## 1866 Upper middle income IBRD
## 1867 Upper middle income IBRD
## 1868 Upper middle income IBRD
## 1869 Upper middle income IBRD
## 1870 Upper middle income IBRD
## 1871 Upper middle income IBRD
## 1872 Upper middle income IBRD
## 1873 Upper middle income IBRD
## 1874 Upper middle income IBRD
## 1875 Upper middle income IBRD
## 1876 Upper middle income IBRD
## 1877 Upper middle income IBRD
## 1878 Upper middle income IBRD
## 1879 Upper middle income IBRD
## 1880 Upper middle income IBRD
## 1881 Upper middle income IBRD
## 1882 Upper middle income IBRD
## 1883 Upper middle income IBRD
## 1884 Upper middle income IBRD
## 1885 Upper middle income IBRD
## 1886 Upper middle income IBRD
## 1887 Upper middle income IBRD
## 1888 Upper middle income IBRD
## 1889 Upper middle income IBRD
## 1890 Upper middle income IBRD
## 1891 Upper middle income IBRD
## 1892 Upper middle income IBRD
## 1893 Upper middle income IBRD
## 1894 Upper middle income IBRD
## 1895 Upper middle income IBRD
## 1896 Upper middle income IBRD
## 1897 Upper middle income IBRD
## 1898 Upper middle income IBRD
## 1899 Upper middle income IBRD
## 1900 Upper middle income IBRD
## 1901 Upper middle income IBRD
## 1902 Upper middle income IBRD
## 1903 Upper middle income IBRD
## 1904 Upper middle income IBRD
## 1905 Upper middle income IBRD
## 1906 Upper middle income IBRD
## 1907 Upper middle income IBRD
## 1908 Upper middle income IBRD
## 1909 Upper middle income IBRD
## 1910 Upper middle income IBRD
## 1911 Upper middle income IBRD
## 1912 Upper middle income IBRD
## 1913 Upper middle income IBRD
## 1914 Upper middle income IBRD
## 1915 Upper middle income IBRD
## 1916 Upper middle income IBRD
## 1917 Upper middle income IBRD
## 1918 Upper middle income IBRD
## 1919 Upper middle income IBRD
## 1920 Upper middle income IBRD
## 1921 Upper middle income IBRD
## 1922 Upper middle income IBRD
## 1923 High income Not classified
## 1924 High income Not classified
## 1925 High income Not classified
## 1926 High income Not classified
## 1927 High income Not classified
## 1928 High income Not classified
## 1929 High income Not classified
## 1930 High income Not classified
## 1931 High income Not classified
## 1932 High income Not classified
## 1933 High income Not classified
## 1934 High income Not classified
## 1935 High income Not classified
## 1936 High income Not classified
## 1937 High income Not classified
## 1938 High income Not classified
## 1939 High income Not classified
## 1940 High income Not classified
## 1941 High income Not classified
## 1942 High income Not classified
## 1943 High income Not classified
## 1944 High income Not classified
## 1945 High income Not classified
## 1946 High income Not classified
## 1947 High income Not classified
## 1948 High income Not classified
## 1949 High income Not classified
## 1950 High income Not classified
## 1951 High income Not classified
## 1952 High income Not classified
## 1953 High income Not classified
## 1954 High income Not classified
## 1955 High income Not classified
## 1956 High income Not classified
## 1957 High income Not classified
## 1958 High income Not classified
## 1959 High income Not classified
## 1960 High income Not classified
## 1961 High income Not classified
## 1962 High income Not classified
## 1963 High income Not classified
## 1964 High income Not classified
## 1965 High income Not classified
## 1966 High income Not classified
## 1967 High income Not classified
## 1968 High income Not classified
## 1969 High income Not classified
## 1970 High income Not classified
## 1971 High income Not classified
## 1972 High income Not classified
## 1973 High income Not classified
## 1974 High income Not classified
## 1975 High income Not classified
## 1976 High income Not classified
## 1977 High income Not classified
## 1978 High income Not classified
## 1979 High income Not classified
## 1980 High income Not classified
## 1981 High income Not classified
## 1982 High income Not classified
## 1983 High income Not classified
## 1984 High income Not classified
## 1985 Low income IDA
## 1986 Low income IDA
## 1987 Low income IDA
## 1988 Low income IDA
## 1989 Low income IDA
## 1990 Low income IDA
## 1991 Low income IDA
## 1992 Low income IDA
## 1993 Low income IDA
## 1994 Low income IDA
## 1995 Low income IDA
## 1996 Low income IDA
## 1997 Low income IDA
## 1998 Low income IDA
## 1999 Low income IDA
## 2000 Low income IDA
## 2001 Low income IDA
## 2002 Low income IDA
## 2003 Low income IDA
## 2004 Low income IDA
## 2005 Low income IDA
## 2006 Low income IDA
## 2007 Low income IDA
## 2008 Low income IDA
## 2009 Low income IDA
## 2010 Low income IDA
## 2011 Low income IDA
## 2012 Low income IDA
## 2013 Low income IDA
## 2014 Low income IDA
## 2015 Low income IDA
## 2016 Low income IDA
## 2017 Low income IDA
## 2018 Low income IDA
## 2019 Low income IDA
## 2020 Low income IDA
## 2021 Low income IDA
## 2022 Low income IDA
## 2023 Low income IDA
## 2024 Low income IDA
## 2025 Low income IDA
## 2026 Low income IDA
## 2027 Low income IDA
## 2028 Low income IDA
## 2029 Low income IDA
## 2030 Low income IDA
## 2031 Low income IDA
## 2032 Low income IDA
## 2033 Low income IDA
## 2034 Low income IDA
## 2035 Low income IDA
## 2036 Low income IDA
## 2037 Low income IDA
## 2038 Low income IDA
## 2039 Low income IDA
## 2040 Low income IDA
## 2041 Low income IDA
## 2042 Low income IDA
## 2043 Low income IDA
## 2044 Low income IDA
## 2045 Low income IDA
## 2046 Low income IDA
## 2047 Low income IDA
## 2048 Low income IDA
## 2049 Low income IDA
## 2050 Low income IDA
## 2051 Low income IDA
## 2052 Low income IDA
## 2053 Low income IDA
## 2054 Low income IDA
## 2055 Low income IDA
## 2056 Low income IDA
## 2057 Low income IDA
## 2058 Low income IDA
## 2059 Low income IDA
## 2060 Low income IDA
## 2061 Low income IDA
## 2062 Low income IDA
## 2063 Low income IDA
## 2064 Low income IDA
## 2065 Low income IDA
## 2066 Low income IDA
## 2067 Low income IDA
## 2068 Low income IDA
## 2069 Low income IDA
## 2070 Low income IDA
## 2071 Low income IDA
## 2072 Low income IDA
## 2073 Low income IDA
## 2074 Low income IDA
## 2075 Low income IDA
## 2076 Low income IDA
## 2077 Low income IDA
## 2078 Low income IDA
## 2079 Low income IDA
## 2080 Low income IDA
## 2081 Low income IDA
## 2082 Low income IDA
## 2083 Low income IDA
## 2084 Low income IDA
## 2085 Low income IDA
## 2086 Low income IDA
## 2087 Low income IDA
## 2088 Low income IDA
## 2089 Low income IDA
## 2090 Low income IDA
## 2091 Low income IDA
## 2092 Low income IDA
## 2093 Low income IDA
## 2094 Low income IDA
## 2095 Low income IDA
## 2096 Low income IDA
## 2097 Low income IDA
## 2098 Low income IDA
## 2099 Low income IDA
## 2100 Low income IDA
## 2101 Low income IDA
## 2102 Low income IDA
## 2103 Low income IDA
## 2104 Low income IDA
## 2105 Low income IDA
## 2106 Low income IDA
## 2107 Low income IDA
## 2108 Low income IDA
## 2109 Lower middle income Blend
## 2110 Lower middle income Blend
## 2111 Lower middle income Blend
## 2112 Lower middle income Blend
## 2113 Lower middle income Blend
## 2114 Lower middle income Blend
## 2115 Lower middle income Blend
## 2116 Lower middle income Blend
## 2117 Lower middle income Blend
## 2118 Lower middle income Blend
## 2119 Lower middle income Blend
## 2120 Lower middle income Blend
## 2121 Lower middle income Blend
## 2122 Lower middle income Blend
## 2123 Lower middle income Blend
## 2124 Lower middle income Blend
## 2125 Lower middle income Blend
## 2126 Lower middle income Blend
## 2127 Lower middle income Blend
## 2128 Lower middle income Blend
## 2129 Lower middle income Blend
## 2130 Lower middle income Blend
## 2131 Lower middle income Blend
## 2132 Lower middle income Blend
## 2133 Lower middle income Blend
## 2134 Lower middle income Blend
## 2135 Lower middle income Blend
## 2136 Lower middle income Blend
## 2137 Lower middle income Blend
## 2138 Lower middle income Blend
## 2139 Lower middle income Blend
## 2140 Lower middle income Blend
## 2141 Lower middle income Blend
## 2142 Lower middle income Blend
## 2143 Lower middle income Blend
## 2144 Lower middle income Blend
## 2145 Lower middle income Blend
## 2146 Lower middle income Blend
## 2147 Lower middle income Blend
## 2148 Lower middle income Blend
## 2149 Lower middle income Blend
## 2150 Lower middle income Blend
## 2151 Lower middle income Blend
## 2152 Lower middle income Blend
## 2153 Lower middle income Blend
## 2154 Lower middle income Blend
## 2155 Lower middle income Blend
## 2156 Lower middle income Blend
## 2157 Lower middle income Blend
## 2158 Lower middle income Blend
## 2159 Lower middle income Blend
## 2160 Lower middle income Blend
## 2161 Lower middle income Blend
## 2162 Lower middle income Blend
## 2163 Lower middle income Blend
## 2164 Lower middle income Blend
## 2165 Lower middle income Blend
## 2166 Lower middle income Blend
## 2167 Lower middle income Blend
## 2168 Lower middle income Blend
## 2169 Lower middle income Blend
## 2170 Lower middle income Blend
## 2171 High income Not classified
## 2172 High income Not classified
## 2173 High income Not classified
## 2174 High income Not classified
## 2175 High income Not classified
## 2176 High income Not classified
## 2177 High income Not classified
## 2178 High income Not classified
## 2179 High income Not classified
## 2180 High income Not classified
## 2181 High income Not classified
## 2182 High income Not classified
## 2183 High income Not classified
## 2184 High income Not classified
## 2185 High income Not classified
## 2186 High income Not classified
## 2187 High income Not classified
## 2188 High income Not classified
## 2189 High income Not classified
## 2190 High income Not classified
## 2191 High income Not classified
## 2192 High income Not classified
## 2193 High income Not classified
## 2194 High income Not classified
## 2195 High income Not classified
## 2196 High income Not classified
## 2197 High income Not classified
## 2198 High income Not classified
## 2199 High income Not classified
## 2200 High income Not classified
## 2201 High income Not classified
## 2202 High income Not classified
## 2203 High income Not classified
## 2204 High income Not classified
## 2205 High income Not classified
## 2206 High income Not classified
## 2207 High income Not classified
## 2208 High income Not classified
## 2209 High income Not classified
## 2210 High income Not classified
## 2211 High income Not classified
## 2212 High income Not classified
## 2213 High income Not classified
## 2214 High income Not classified
## 2215 High income Not classified
## 2216 High income Not classified
## 2217 High income Not classified
## 2218 High income Not classified
## 2219 High income Not classified
## 2220 High income Not classified
## 2221 High income Not classified
## 2222 High income Not classified
## 2223 High income Not classified
## 2224 High income Not classified
## 2225 High income Not classified
## 2226 High income Not classified
## 2227 High income Not classified
## 2228 High income Not classified
## 2229 High income Not classified
## 2230 High income Not classified
## 2231 High income Not classified
## 2232 High income Not classified
## 2233 Lower middle income IDA
## 2234 Lower middle income IDA
## 2235 Lower middle income IDA
## 2236 Lower middle income IDA
## 2237 Lower middle income IDA
## 2238 Lower middle income IDA
## 2239 Lower middle income IDA
## 2240 Lower middle income IDA
## 2241 Lower middle income IDA
## 2242 Lower middle income IDA
## 2243 Lower middle income IDA
## 2244 Lower middle income IDA
## 2245 Lower middle income IDA
## 2246 Lower middle income IDA
## 2247 Lower middle income IDA
## 2248 Lower middle income IDA
## 2249 Lower middle income IDA
## 2250 Lower middle income IDA
## 2251 Lower middle income IDA
## 2252 Lower middle income IDA
## 2253 Lower middle income IDA
## 2254 Lower middle income IDA
## 2255 Lower middle income IDA
## 2256 Lower middle income IDA
## 2257 Lower middle income IDA
## 2258 Lower middle income IDA
## 2259 Lower middle income IDA
## 2260 Lower middle income IDA
## 2261 Lower middle income IDA
## 2262 Lower middle income IDA
## 2263 Lower middle income IDA
## 2264 Lower middle income IDA
## 2265 Lower middle income IDA
## 2266 Lower middle income IDA
## 2267 Lower middle income IDA
## 2268 Lower middle income IDA
## 2269 Lower middle income IDA
## 2270 Lower middle income IDA
## 2271 Lower middle income IDA
## 2272 Lower middle income IDA
## 2273 Lower middle income IDA
## 2274 Lower middle income IDA
## 2275 Lower middle income IDA
## 2276 Lower middle income IDA
## 2277 Lower middle income IDA
## 2278 Lower middle income IDA
## 2279 Lower middle income IDA
## 2280 Lower middle income IDA
## 2281 Lower middle income IDA
## 2282 Lower middle income IDA
## 2283 Lower middle income IDA
## 2284 Lower middle income IDA
## 2285 Lower middle income IDA
## 2286 Lower middle income IDA
## 2287 Lower middle income IDA
## 2288 Lower middle income IDA
## 2289 Lower middle income IDA
## 2290 Lower middle income IDA
## 2291 Lower middle income IDA
## 2292 Lower middle income IDA
## 2293 Lower middle income IDA
## 2294 Lower middle income IDA
## 2295 High income IBRD
## 2296 High income IBRD
## 2297 High income IBRD
## 2298 High income IBRD
## 2299 High income IBRD
## 2300 High income IBRD
## 2301 High income IBRD
## 2302 High income IBRD
## 2303 High income IBRD
## 2304 High income IBRD
## 2305 High income IBRD
## 2306 High income IBRD
## 2307 High income IBRD
## 2308 High income IBRD
## 2309 High income IBRD
## 2310 High income IBRD
## 2311 High income IBRD
## 2312 High income IBRD
## 2313 High income IBRD
## 2314 High income IBRD
## 2315 High income IBRD
## 2316 High income IBRD
## 2317 High income IBRD
## 2318 High income IBRD
## 2319 High income IBRD
## 2320 High income IBRD
## 2321 High income IBRD
## 2322 High income IBRD
## 2323 High income IBRD
## 2324 High income IBRD
## 2325 High income IBRD
## 2326 High income IBRD
## 2327 High income IBRD
## 2328 High income IBRD
## 2329 High income IBRD
## 2330 High income IBRD
## 2331 High income IBRD
## 2332 High income IBRD
## 2333 High income IBRD
## 2334 High income IBRD
## 2335 High income IBRD
## 2336 High income IBRD
## 2337 High income IBRD
## 2338 High income IBRD
## 2339 High income IBRD
## 2340 High income IBRD
## 2341 High income IBRD
## 2342 High income IBRD
## 2343 High income IBRD
## 2344 High income IBRD
## 2345 High income IBRD
## 2346 High income IBRD
## 2347 High income IBRD
## 2348 High income IBRD
## 2349 High income IBRD
## 2350 High income IBRD
## 2351 High income IBRD
## 2352 High income IBRD
## 2353 High income IBRD
## 2354 High income IBRD
## 2355 High income IBRD
## 2356 High income IBRD
## 2357 Lower middle income Blend
## 2358 Lower middle income Blend
## 2359 Lower middle income Blend
## 2360 Lower middle income Blend
## 2361 Lower middle income Blend
## 2362 Lower middle income Blend
## 2363 Lower middle income Blend
## 2364 Lower middle income Blend
## 2365 Lower middle income Blend
## 2366 Lower middle income Blend
## 2367 Lower middle income Blend
## 2368 Lower middle income Blend
## 2369 Lower middle income Blend
## 2370 Lower middle income Blend
## 2371 Lower middle income Blend
## 2372 Lower middle income Blend
## 2373 Lower middle income Blend
## 2374 Lower middle income Blend
## 2375 Lower middle income Blend
## 2376 Lower middle income Blend
## 2377 Lower middle income Blend
## 2378 Lower middle income Blend
## 2379 Lower middle income Blend
## 2380 Lower middle income Blend
## 2381 Lower middle income Blend
## 2382 Lower middle income Blend
## 2383 Lower middle income Blend
## 2384 Lower middle income Blend
## 2385 Lower middle income Blend
## 2386 Lower middle income Blend
## 2387 Lower middle income Blend
## 2388 Lower middle income Blend
## 2389 Lower middle income Blend
## 2390 Lower middle income Blend
## 2391 Lower middle income Blend
## 2392 Lower middle income Blend
## 2393 Lower middle income Blend
## 2394 Lower middle income Blend
## 2395 Lower middle income Blend
## 2396 Lower middle income Blend
## 2397 Lower middle income Blend
## 2398 Lower middle income Blend
## 2399 Lower middle income Blend
## 2400 Lower middle income Blend
## 2401 Lower middle income Blend
## 2402 Lower middle income Blend
## 2403 Lower middle income Blend
## 2404 Lower middle income Blend
## 2405 Lower middle income Blend
## 2406 Lower middle income Blend
## 2407 Lower middle income Blend
## 2408 Lower middle income Blend
## 2409 Lower middle income Blend
## 2410 Lower middle income Blend
## 2411 Lower middle income Blend
## 2412 Lower middle income Blend
## 2413 Lower middle income Blend
## 2414 Lower middle income Blend
## 2415 Lower middle income Blend
## 2416 Lower middle income Blend
## 2417 Lower middle income Blend
## 2418 Lower middle income Blend
## 2419 Upper middle income IBRD
## 2420 Upper middle income IBRD
## 2421 Upper middle income IBRD
## 2422 Upper middle income IBRD
## 2423 Upper middle income IBRD
## 2424 Upper middle income IBRD
## 2425 Upper middle income IBRD
## 2426 Upper middle income IBRD
## 2427 Upper middle income IBRD
## 2428 Upper middle income IBRD
## 2429 Upper middle income IBRD
## 2430 Upper middle income IBRD
## 2431 Upper middle income IBRD
## 2432 Upper middle income IBRD
## 2433 Upper middle income IBRD
## 2434 Upper middle income IBRD
## 2435 Upper middle income IBRD
## 2436 Upper middle income IBRD
## 2437 Upper middle income IBRD
## 2438 Upper middle income IBRD
## 2439 Upper middle income IBRD
## 2440 Upper middle income IBRD
## 2441 Upper middle income IBRD
## 2442 Upper middle income IBRD
## 2443 Upper middle income IBRD
## 2444 Upper middle income IBRD
## 2445 Upper middle income IBRD
## 2446 Upper middle income IBRD
## 2447 Upper middle income IBRD
## 2448 Upper middle income IBRD
## 2449 Upper middle income IBRD
## 2450 Upper middle income IBRD
## 2451 Upper middle income IBRD
## 2452 Upper middle income IBRD
## 2453 Upper middle income IBRD
## 2454 Upper middle income IBRD
## 2455 Upper middle income IBRD
## 2456 Upper middle income IBRD
## 2457 Upper middle income IBRD
## 2458 Upper middle income IBRD
## 2459 Upper middle income IBRD
## 2460 Upper middle income IBRD
## 2461 Upper middle income IBRD
## 2462 Upper middle income IBRD
## 2463 Upper middle income IBRD
## 2464 Upper middle income IBRD
## 2465 Upper middle income IBRD
## 2466 Upper middle income IBRD
## 2467 Upper middle income IBRD
## 2468 Upper middle income IBRD
## 2469 Upper middle income IBRD
## 2470 Upper middle income IBRD
## 2471 Upper middle income IBRD
## 2472 Upper middle income IBRD
## 2473 Upper middle income IBRD
## 2474 Upper middle income IBRD
## 2475 Upper middle income IBRD
## 2476 Upper middle income IBRD
## 2477 Upper middle income IBRD
## 2478 Upper middle income IBRD
## 2479 Upper middle income IBRD
## 2480 Upper middle income IBRD
## 2481 Upper middle income IBRD
## 2482 Upper middle income IBRD
## 2483 Upper middle income IBRD
## 2484 Upper middle income IBRD
## 2485 Upper middle income IBRD
## 2486 Upper middle income IBRD
## 2487 Upper middle income IBRD
## 2488 Upper middle income IBRD
## 2489 Upper middle income IBRD
## 2490 Upper middle income IBRD
## 2491 Upper middle income IBRD
## 2492 Upper middle income IBRD
## 2493 Upper middle income IBRD
## 2494 Upper middle income IBRD
## 2495 Upper middle income IBRD
## 2496 Upper middle income IBRD
## 2497 Upper middle income IBRD
## 2498 Upper middle income IBRD
## 2499 Upper middle income IBRD
## 2500 Upper middle income IBRD
## 2501 Upper middle income IBRD
## 2502 Upper middle income IBRD
## 2503 Upper middle income IBRD
## 2504 Upper middle income IBRD
## 2505 Upper middle income IBRD
## 2506 Upper middle income IBRD
## 2507 Upper middle income IBRD
## 2508 Upper middle income IBRD
## 2509 Upper middle income IBRD
## 2510 Upper middle income IBRD
## 2511 Upper middle income IBRD
## 2512 Upper middle income IBRD
## 2513 Upper middle income IBRD
## 2514 Upper middle income IBRD
## 2515 Upper middle income IBRD
## 2516 Upper middle income IBRD
## 2517 Upper middle income IBRD
## 2518 Upper middle income IBRD
## 2519 Upper middle income IBRD
## 2520 Upper middle income IBRD
## 2521 Upper middle income IBRD
## 2522 Upper middle income IBRD
## 2523 Upper middle income IBRD
## 2524 Upper middle income IBRD
## 2525 Upper middle income IBRD
## 2526 Upper middle income IBRD
## 2527 Upper middle income IBRD
## 2528 Upper middle income IBRD
## 2529 Upper middle income IBRD
## 2530 Upper middle income IBRD
## 2531 Upper middle income IBRD
## 2532 Upper middle income IBRD
## 2533 Upper middle income IBRD
## 2534 Upper middle income IBRD
## 2535 Upper middle income IBRD
## 2536 Upper middle income IBRD
## 2537 Upper middle income IBRD
## 2538 Upper middle income IBRD
## 2539 Upper middle income IBRD
## 2540 Upper middle income IBRD
## 2541 Upper middle income IBRD
## 2542 Upper middle income IBRD
## 2543 Upper middle income IBRD
## 2544 Upper middle income IBRD
## 2545 Upper middle income IBRD
## 2546 Upper middle income IBRD
## 2547 Upper middle income IBRD
## 2548 Upper middle income IBRD
## 2549 Upper middle income IBRD
## 2550 Upper middle income IBRD
## 2551 Upper middle income IBRD
## 2552 Upper middle income IBRD
## 2553 Upper middle income IBRD
## 2554 Upper middle income IBRD
## 2555 Upper middle income IBRD
## 2556 Upper middle income IBRD
## 2557 Upper middle income IBRD
## 2558 Upper middle income IBRD
## 2559 Upper middle income IBRD
## 2560 Upper middle income IBRD
## 2561 Upper middle income IBRD
## 2562 Upper middle income IBRD
## 2563 Upper middle income IBRD
## 2564 Upper middle income IBRD
## 2565 Upper middle income IBRD
## 2566 Upper middle income IBRD
## 2567 Upper middle income IBRD
## 2568 Upper middle income IBRD
## 2569 Upper middle income IBRD
## 2570 Upper middle income IBRD
## 2571 Upper middle income IBRD
## 2572 Upper middle income IBRD
## 2573 Upper middle income IBRD
## 2574 Upper middle income IBRD
## 2575 Upper middle income IBRD
## 2576 Upper middle income IBRD
## 2577 Upper middle income IBRD
## 2578 Upper middle income IBRD
## 2579 Upper middle income IBRD
## 2580 Upper middle income IBRD
## 2581 Upper middle income IBRD
## 2582 Upper middle income IBRD
## 2583 Upper middle income IBRD
## 2584 Upper middle income IBRD
## 2585 Upper middle income IBRD
## 2586 Upper middle income IBRD
## 2587 Upper middle income IBRD
## 2588 Upper middle income IBRD
## 2589 Upper middle income IBRD
## 2590 Upper middle income IBRD
## 2591 Upper middle income IBRD
## 2592 Upper middle income IBRD
## 2593 Upper middle income IBRD
## 2594 Upper middle income IBRD
## 2595 Upper middle income IBRD
## 2596 Upper middle income IBRD
## 2597 Upper middle income IBRD
## 2598 Upper middle income IBRD
## 2599 Upper middle income IBRD
## 2600 Upper middle income IBRD
## 2601 Upper middle income IBRD
## 2602 Upper middle income IBRD
## 2603 Upper middle income IBRD
## 2604 Upper middle income IBRD
## 2605 Upper middle income Not classified
## 2606 Upper middle income Not classified
## 2607 Upper middle income Not classified
## 2608 Upper middle income Not classified
## 2609 Upper middle income Not classified
## 2610 Upper middle income Not classified
## 2611 Upper middle income Not classified
## 2612 Upper middle income Not classified
## 2613 Upper middle income Not classified
## 2614 Upper middle income Not classified
## 2615 Upper middle income Not classified
## 2616 Upper middle income Not classified
## 2617 Upper middle income Not classified
## 2618 Upper middle income Not classified
## 2619 Upper middle income Not classified
## 2620 Upper middle income Not classified
## 2621 Upper middle income Not classified
## 2622 Upper middle income Not classified
## 2623 Upper middle income Not classified
## 2624 Upper middle income Not classified
## 2625 Upper middle income Not classified
## 2626 Upper middle income Not classified
## 2627 Upper middle income Not classified
## 2628 Upper middle income Not classified
## 2629 Upper middle income Not classified
## 2630 Upper middle income Not classified
## 2631 Upper middle income Not classified
## 2632 Upper middle income Not classified
## 2633 Upper middle income Not classified
## 2634 Upper middle income Not classified
## 2635 Upper middle income Not classified
## 2636 Upper middle income Not classified
## 2637 Upper middle income Not classified
## 2638 Upper middle income Not classified
## 2639 Upper middle income Not classified
## 2640 Upper middle income Not classified
## 2641 Upper middle income Not classified
## 2642 Upper middle income Not classified
## 2643 Upper middle income Not classified
## 2644 Upper middle income Not classified
## 2645 Upper middle income Not classified
## 2646 Upper middle income Not classified
## 2647 Upper middle income Not classified
## 2648 Upper middle income Not classified
## 2649 Upper middle income Not classified
## 2650 Upper middle income Not classified
## 2651 Upper middle income Not classified
## 2652 Upper middle income Not classified
## 2653 Upper middle income Not classified
## 2654 Upper middle income Not classified
## 2655 Upper middle income Not classified
## 2656 Upper middle income Not classified
## 2657 Upper middle income Not classified
## 2658 Upper middle income Not classified
## 2659 Upper middle income Not classified
## 2660 Upper middle income Not classified
## 2661 Upper middle income Not classified
## 2662 Upper middle income Not classified
## 2663 Upper middle income Not classified
## 2664 Upper middle income Not classified
## 2665 Upper middle income Not classified
## 2666 Upper middle income Not classified
## 2667 Lower middle income Blend
## 2668 Lower middle income Blend
## 2669 Lower middle income Blend
## 2670 Lower middle income Blend
## 2671 Lower middle income Blend
## 2672 Lower middle income Blend
## 2673 Lower middle income Blend
## 2674 Lower middle income Blend
## 2675 Lower middle income Blend
## 2676 Lower middle income Blend
## 2677 Lower middle income Blend
## 2678 Lower middle income Blend
## 2679 Lower middle income Blend
## 2680 Lower middle income Blend
## 2681 Lower middle income Blend
## 2682 Lower middle income Blend
## 2683 Lower middle income Blend
## 2684 Lower middle income Blend
## 2685 Lower middle income Blend
## 2686 Lower middle income Blend
## 2687 Lower middle income Blend
## 2688 Lower middle income Blend
## 2689 Lower middle income Blend
## 2690 Lower middle income Blend
## 2691 Lower middle income Blend
## 2692 Lower middle income Blend
## 2693 Lower middle income Blend
## 2694 Lower middle income Blend
## 2695 Lower middle income Blend
## 2696 Lower middle income Blend
## 2697 Lower middle income Blend
## 2698 Lower middle income Blend
## 2699 Lower middle income Blend
## 2700 Lower middle income Blend
## 2701 Lower middle income Blend
## 2702 Lower middle income Blend
## 2703 Lower middle income Blend
## 2704 Lower middle income Blend
## 2705 Lower middle income Blend
## 2706 Lower middle income Blend
## 2707 Lower middle income Blend
## 2708 Lower middle income Blend
## 2709 Lower middle income Blend
## 2710 Lower middle income Blend
## 2711 Lower middle income Blend
## 2712 Lower middle income Blend
## 2713 Lower middle income Blend
## 2714 Lower middle income Blend
## 2715 Lower middle income Blend
## 2716 Lower middle income Blend
## 2717 Lower middle income Blend
## 2718 Lower middle income Blend
## 2719 Lower middle income Blend
## 2720 Lower middle income Blend
## 2721 Lower middle income Blend
## 2722 Lower middle income Blend
## 2723 Lower middle income Blend
## 2724 Lower middle income Blend
## 2725 Lower middle income Blend
## 2726 Lower middle income Blend
## 2727 Lower middle income Blend
## 2728 Lower middle income Blend
## 2729 High income Not classified
## 2730 High income Not classified
## 2731 High income Not classified
## 2732 High income Not classified
## 2733 High income Not classified
## 2734 High income Not classified
## 2735 High income Not classified
## 2736 High income Not classified
## 2737 High income Not classified
## 2738 High income Not classified
## 2739 High income Not classified
## 2740 High income Not classified
## 2741 High income Not classified
## 2742 High income Not classified
## 2743 High income Not classified
## 2744 High income Not classified
## 2745 High income Not classified
## 2746 High income Not classified
## 2747 High income Not classified
## 2748 High income Not classified
## 2749 High income Not classified
## 2750 High income Not classified
## 2751 High income Not classified
## 2752 High income Not classified
## 2753 High income Not classified
## 2754 High income Not classified
## 2755 High income Not classified
## 2756 High income Not classified
## 2757 High income Not classified
## 2758 High income Not classified
## 2759 High income Not classified
## 2760 High income Not classified
## 2761 High income Not classified
## 2762 High income Not classified
## 2763 High income Not classified
## 2764 High income Not classified
## 2765 High income Not classified
## 2766 High income Not classified
## 2767 High income Not classified
## 2768 High income Not classified
## 2769 High income Not classified
## 2770 High income Not classified
## 2771 High income Not classified
## 2772 High income Not classified
## 2773 High income Not classified
## 2774 High income Not classified
## 2775 High income Not classified
## 2776 High income Not classified
## 2777 High income Not classified
## 2778 High income Not classified
## 2779 High income Not classified
## 2780 High income Not classified
## 2781 High income Not classified
## 2782 High income Not classified
## 2783 High income Not classified
## 2784 High income Not classified
## 2785 High income Not classified
## 2786 High income Not classified
## 2787 High income Not classified
## 2788 High income Not classified
## 2789 High income Not classified
## 2790 High income Not classified
## 2791 High income Not classified
## 2792 High income Not classified
## 2793 High income Not classified
## 2794 High income Not classified
## 2795 High income Not classified
## 2796 High income Not classified
## 2797 High income Not classified
## 2798 High income Not classified
## 2799 High income Not classified
## 2800 High income Not classified
## 2801 High income Not classified
## 2802 High income Not classified
## 2803 High income Not classified
## 2804 High income Not classified
## 2805 High income Not classified
## 2806 High income Not classified
## 2807 High income Not classified
## 2808 High income Not classified
## 2809 High income Not classified
## 2810 High income Not classified
## 2811 High income Not classified
## 2812 High income Not classified
## 2813 High income Not classified
## 2814 High income Not classified
## 2815 High income Not classified
## 2816 High income Not classified
## 2817 High income Not classified
## 2818 High income Not classified
## 2819 High income Not classified
## 2820 High income Not classified
## 2821 High income Not classified
## 2822 High income Not classified
## 2823 High income Not classified
## 2824 High income Not classified
## 2825 High income Not classified
## 2826 High income Not classified
## 2827 High income Not classified
## 2828 High income Not classified
## 2829 High income Not classified
## 2830 High income Not classified
## 2831 High income Not classified
## 2832 High income Not classified
## 2833 High income Not classified
## 2834 High income Not classified
## 2835 High income Not classified
## 2836 High income Not classified
## 2837 High income Not classified
## 2838 High income Not classified
## 2839 High income Not classified
## 2840 High income Not classified
## 2841 High income Not classified
## 2842 High income Not classified
## 2843 High income Not classified
## 2844 High income Not classified
## 2845 High income Not classified
## 2846 High income Not classified
## 2847 High income Not classified
## 2848 High income Not classified
## 2849 High income Not classified
## 2850 High income Not classified
## 2851 High income Not classified
## 2852 High income Not classified
## 2853 High income Not classified
## 2854 High income Not classified
## 2855 High income Not classified
## 2856 High income Not classified
## 2857 High income Not classified
## 2858 High income Not classified
## 2859 High income Not classified
## 2860 High income Not classified
## 2861 High income Not classified
## 2862 High income Not classified
## 2863 High income Not classified
## 2864 High income Not classified
## 2865 High income Not classified
## 2866 High income Not classified
## 2867 High income Not classified
## 2868 High income Not classified
## 2869 High income Not classified
## 2870 High income Not classified
## 2871 High income Not classified
## 2872 High income Not classified
## 2873 High income Not classified
## 2874 High income Not classified
## 2875 High income Not classified
## 2876 High income Not classified
## 2877 High income Not classified
## 2878 High income Not classified
## 2879 High income Not classified
## 2880 High income Not classified
## 2881 High income Not classified
## 2882 High income Not classified
## 2883 High income Not classified
## 2884 High income Not classified
## 2885 High income Not classified
## 2886 High income Not classified
## 2887 High income Not classified
## 2888 High income Not classified
## 2889 High income Not classified
## 2890 High income Not classified
## 2891 High income Not classified
## 2892 High income Not classified
## 2893 High income Not classified
## 2894 High income Not classified
## 2895 High income Not classified
## 2896 High income Not classified
## 2897 High income Not classified
## 2898 High income Not classified
## 2899 High income Not classified
## 2900 High income Not classified
## 2901 High income Not classified
## 2902 High income Not classified
## 2903 High income Not classified
## 2904 High income Not classified
## 2905 High income Not classified
## 2906 High income Not classified
## 2907 High income Not classified
## 2908 High income Not classified
## 2909 High income Not classified
## 2910 High income Not classified
## 2911 High income Not classified
## 2912 High income Not classified
## 2913 High income Not classified
## 2914 High income Not classified
## 2915 Lower middle income IDA
## 2916 Lower middle income IDA
## 2917 Lower middle income IDA
## 2918 Lower middle income IDA
## 2919 Lower middle income IDA
## 2920 Lower middle income IDA
## 2921 Lower middle income IDA
## 2922 Lower middle income IDA
## 2923 Lower middle income IDA
## 2924 Lower middle income IDA
## 2925 Lower middle income IDA
## 2926 Lower middle income IDA
## 2927 Lower middle income IDA
## 2928 Lower middle income IDA
## 2929 Lower middle income IDA
## 2930 Lower middle income IDA
## 2931 Lower middle income IDA
## 2932 Lower middle income IDA
## 2933 Lower middle income IDA
## 2934 Lower middle income IDA
## 2935 Lower middle income IDA
## 2936 Lower middle income IDA
## 2937 Lower middle income IDA
## 2938 Lower middle income IDA
## 2939 Lower middle income IDA
## 2940 Lower middle income IDA
## 2941 Lower middle income IDA
## 2942 Lower middle income IDA
## 2943 Lower middle income IDA
## 2944 Lower middle income IDA
## 2945 Lower middle income IDA
## 2946 Lower middle income IDA
## 2947 Lower middle income IDA
## 2948 Lower middle income IDA
## 2949 Lower middle income IDA
## 2950 Lower middle income IDA
## 2951 Lower middle income IDA
## 2952 Lower middle income IDA
## 2953 Lower middle income IDA
## 2954 Lower middle income IDA
## 2955 Lower middle income IDA
## 2956 Lower middle income IDA
## 2957 Lower middle income IDA
## 2958 Lower middle income IDA
## 2959 Lower middle income IDA
## 2960 Lower middle income IDA
## 2961 Lower middle income IDA
## 2962 Lower middle income IDA
## 2963 Lower middle income IDA
## 2964 Lower middle income IDA
## 2965 Lower middle income IDA
## 2966 Lower middle income IDA
## 2967 Lower middle income IDA
## 2968 Lower middle income IDA
## 2969 Lower middle income IDA
## 2970 Lower middle income IDA
## 2971 Lower middle income IDA
## 2972 Lower middle income IDA
## 2973 Lower middle income IDA
## 2974 Lower middle income IDA
## 2975 Lower middle income IDA
## 2976 Lower middle income IDA
## 2977 High income Not classified
## 2978 High income Not classified
## 2979 High income Not classified
## 2980 High income Not classified
## 2981 High income Not classified
## 2982 High income Not classified
## 2983 High income Not classified
## 2984 High income Not classified
## 2985 High income Not classified
## 2986 High income Not classified
## 2987 High income Not classified
## 2988 High income Not classified
## 2989 High income Not classified
## 2990 High income Not classified
## 2991 High income Not classified
## 2992 High income Not classified
## 2993 High income Not classified
## 2994 High income Not classified
## 2995 High income Not classified
## 2996 High income Not classified
## 2997 High income Not classified
## 2998 High income Not classified
## 2999 High income Not classified
## 3000 High income Not classified
## 3001 High income Not classified
## 3002 High income Not classified
## 3003 High income Not classified
## 3004 High income Not classified
## 3005 High income Not classified
## 3006 High income Not classified
## 3007 High income Not classified
## 3008 High income Not classified
## 3009 High income Not classified
## 3010 High income Not classified
## 3011 High income Not classified
## 3012 High income Not classified
## 3013 High income Not classified
## 3014 High income Not classified
## 3015 High income Not classified
## 3016 High income Not classified
## 3017 High income Not classified
## 3018 High income Not classified
## 3019 High income Not classified
## 3020 High income Not classified
## 3021 High income Not classified
## 3022 High income Not classified
## 3023 High income Not classified
## 3024 High income Not classified
## 3025 High income Not classified
## 3026 High income Not classified
## 3027 High income Not classified
## 3028 High income Not classified
## 3029 High income Not classified
## 3030 High income Not classified
## 3031 High income Not classified
## 3032 High income Not classified
## 3033 High income Not classified
## 3034 High income Not classified
## 3035 High income Not classified
## 3036 High income Not classified
## 3037 High income Not classified
## 3038 High income Not classified
## 3039 Upper middle income Blend
## 3040 Upper middle income Blend
## 3041 Upper middle income Blend
## 3042 Upper middle income Blend
## 3043 Upper middle income Blend
## 3044 Upper middle income Blend
## 3045 Upper middle income Blend
## 3046 Upper middle income Blend
## 3047 Upper middle income Blend
## 3048 Upper middle income Blend
## 3049 Upper middle income Blend
## 3050 Upper middle income Blend
## 3051 Upper middle income Blend
## 3052 Upper middle income Blend
## 3053 Upper middle income Blend
## 3054 Upper middle income Blend
## 3055 Upper middle income Blend
## 3056 Upper middle income Blend
## 3057 Upper middle income Blend
## 3058 Upper middle income Blend
## 3059 Upper middle income Blend
## 3060 Upper middle income Blend
## 3061 Upper middle income Blend
## 3062 Upper middle income Blend
## 3063 Upper middle income Blend
## 3064 Upper middle income Blend
## 3065 Upper middle income Blend
## 3066 Upper middle income Blend
## 3067 Upper middle income Blend
## 3068 Upper middle income Blend
## 3069 Upper middle income Blend
## 3070 Upper middle income Blend
## 3071 Upper middle income Blend
## 3072 Upper middle income Blend
## 3073 Upper middle income Blend
## 3074 Upper middle income Blend
## 3075 Upper middle income Blend
## 3076 Upper middle income Blend
## 3077 Upper middle income Blend
## 3078 Upper middle income Blend
## 3079 Upper middle income Blend
## 3080 Upper middle income Blend
## 3081 Upper middle income Blend
## 3082 Upper middle income Blend
## 3083 Upper middle income Blend
## 3084 Upper middle income Blend
## 3085 Upper middle income Blend
## 3086 Upper middle income Blend
## 3087 Upper middle income Blend
## 3088 Upper middle income Blend
## 3089 Upper middle income Blend
## 3090 Upper middle income Blend
## 3091 Upper middle income Blend
## 3092 Upper middle income Blend
## 3093 Upper middle income Blend
## 3094 Upper middle income Blend
## 3095 Upper middle income Blend
## 3096 Upper middle income Blend
## 3097 Upper middle income Blend
## 3098 Upper middle income Blend
## 3099 Upper middle income Blend
## 3100 Upper middle income Blend
## 3101 Upper middle income IBRD
## 3102 Upper middle income IBRD
## 3103 Upper middle income IBRD
## 3104 Upper middle income IBRD
## 3105 Upper middle income IBRD
## 3106 Upper middle income IBRD
## 3107 Upper middle income IBRD
## 3108 Upper middle income IBRD
## 3109 Upper middle income IBRD
## 3110 Upper middle income IBRD
## 3111 Upper middle income IBRD
## 3112 Upper middle income IBRD
## 3113 Upper middle income IBRD
## 3114 Upper middle income IBRD
## 3115 Upper middle income IBRD
## 3116 Upper middle income IBRD
## 3117 Upper middle income IBRD
## 3118 Upper middle income IBRD
## 3119 Upper middle income IBRD
## 3120 Upper middle income IBRD
## 3121 Upper middle income IBRD
## 3122 Upper middle income IBRD
## 3123 Upper middle income IBRD
## 3124 Upper middle income IBRD
## 3125 Upper middle income IBRD
## 3126 Upper middle income IBRD
## 3127 Upper middle income IBRD
## 3128 Upper middle income IBRD
## 3129 Upper middle income IBRD
## 3130 Upper middle income IBRD
## 3131 Upper middle income IBRD
## 3132 Upper middle income IBRD
## 3133 Upper middle income IBRD
## 3134 Upper middle income IBRD
## 3135 Upper middle income IBRD
## 3136 Upper middle income IBRD
## 3137 Upper middle income IBRD
## 3138 Upper middle income IBRD
## 3139 Upper middle income IBRD
## 3140 Upper middle income IBRD
## 3141 Upper middle income IBRD
## 3142 Upper middle income IBRD
## 3143 Upper middle income IBRD
## 3144 Upper middle income IBRD
## 3145 Upper middle income IBRD
## 3146 Upper middle income IBRD
## 3147 Upper middle income IBRD
## 3148 Upper middle income IBRD
## 3149 Upper middle income IBRD
## 3150 Upper middle income IBRD
## 3151 Upper middle income IBRD
## 3152 Upper middle income IBRD
## 3153 Upper middle income IBRD
## 3154 Upper middle income IBRD
## 3155 Upper middle income IBRD
## 3156 Upper middle income IBRD
## 3157 Upper middle income IBRD
## 3158 Upper middle income IBRD
## 3159 Upper middle income IBRD
## 3160 Upper middle income IBRD
## 3161 Upper middle income IBRD
## 3162 Upper middle income IBRD
## 3163 Lower middle income IBRD
## 3164 Lower middle income IBRD
## 3165 Lower middle income IBRD
## 3166 Lower middle income IBRD
## 3167 Lower middle income IBRD
## 3168 Lower middle income IBRD
## 3169 Lower middle income IBRD
## 3170 Lower middle income IBRD
## 3171 Lower middle income IBRD
## 3172 Lower middle income IBRD
## 3173 Lower middle income IBRD
## 3174 Lower middle income IBRD
## 3175 Lower middle income IBRD
## 3176 Lower middle income IBRD
## 3177 Lower middle income IBRD
## 3178 Lower middle income IBRD
## 3179 Lower middle income IBRD
## 3180 Lower middle income IBRD
## 3181 Lower middle income IBRD
## 3182 Lower middle income IBRD
## 3183 Lower middle income IBRD
## 3184 Lower middle income IBRD
## 3185 Lower middle income IBRD
## 3186 Lower middle income IBRD
## 3187 Lower middle income IBRD
## 3188 Lower middle income IBRD
## 3189 Lower middle income IBRD
## 3190 Lower middle income IBRD
## 3191 Lower middle income IBRD
## 3192 Lower middle income IBRD
## 3193 Lower middle income IBRD
## 3194 Lower middle income IBRD
## 3195 Lower middle income IBRD
## 3196 Lower middle income IBRD
## 3197 Lower middle income IBRD
## 3198 Lower middle income IBRD
## 3199 Lower middle income IBRD
## 3200 Lower middle income IBRD
## 3201 Lower middle income IBRD
## 3202 Lower middle income IBRD
## 3203 Lower middle income IBRD
## 3204 Lower middle income IBRD
## 3205 Lower middle income IBRD
## 3206 Lower middle income IBRD
## 3207 Lower middle income IBRD
## 3208 Lower middle income IBRD
## 3209 Lower middle income IBRD
## 3210 Lower middle income IBRD
## 3211 Lower middle income IBRD
## 3212 Lower middle income IBRD
## 3213 Lower middle income IBRD
## 3214 Lower middle income IBRD
## 3215 Lower middle income IBRD
## 3216 Lower middle income IBRD
## 3217 Lower middle income IBRD
## 3218 Lower middle income IBRD
## 3219 Lower middle income IBRD
## 3220 Lower middle income IBRD
## 3221 Lower middle income IBRD
## 3222 Lower middle income IBRD
## 3223 Lower middle income IBRD
## 3224 Lower middle income IBRD
## 3225 Upper middle income IBRD
## 3226 Upper middle income IBRD
## 3227 Upper middle income IBRD
## 3228 Upper middle income IBRD
## 3229 Upper middle income IBRD
## 3230 Upper middle income IBRD
## 3231 Upper middle income IBRD
## 3232 Upper middle income IBRD
## 3233 Upper middle income IBRD
## 3234 Upper middle income IBRD
## 3235 Upper middle income IBRD
## 3236 Upper middle income IBRD
## 3237 Upper middle income IBRD
## 3238 Upper middle income IBRD
## 3239 Upper middle income IBRD
## 3240 Upper middle income IBRD
## 3241 Upper middle income IBRD
## 3242 Upper middle income IBRD
## 3243 Upper middle income IBRD
## 3244 Upper middle income IBRD
## 3245 Upper middle income IBRD
## 3246 Upper middle income IBRD
## 3247 Upper middle income IBRD
## 3248 Upper middle income IBRD
## 3249 Upper middle income IBRD
## 3250 Upper middle income IBRD
## 3251 Upper middle income IBRD
## 3252 Upper middle income IBRD
## 3253 Upper middle income IBRD
## 3254 Upper middle income IBRD
## 3255 Upper middle income IBRD
## 3256 Upper middle income IBRD
## 3257 Upper middle income IBRD
## 3258 Upper middle income IBRD
## 3259 Upper middle income IBRD
## 3260 Upper middle income IBRD
## 3261 Upper middle income IBRD
## 3262 Upper middle income IBRD
## 3263 Upper middle income IBRD
## 3264 Upper middle income IBRD
## 3265 Upper middle income IBRD
## 3266 Upper middle income IBRD
## 3267 Upper middle income IBRD
## 3268 Upper middle income IBRD
## 3269 Upper middle income IBRD
## 3270 Upper middle income IBRD
## 3271 Upper middle income IBRD
## 3272 Upper middle income IBRD
## 3273 Upper middle income IBRD
## 3274 Upper middle income IBRD
## 3275 Upper middle income IBRD
## 3276 Upper middle income IBRD
## 3277 Upper middle income IBRD
## 3278 Upper middle income IBRD
## 3279 Upper middle income IBRD
## 3280 Upper middle income IBRD
## 3281 Upper middle income IBRD
## 3282 Upper middle income IBRD
## 3283 Upper middle income IBRD
## 3284 Upper middle income IBRD
## 3285 Upper middle income IBRD
## 3286 Upper middle income IBRD
## 3287 High income Not classified
## 3288 High income Not classified
## 3289 High income Not classified
## 3290 High income Not classified
## 3291 High income Not classified
## 3292 High income Not classified
## 3293 High income Not classified
## 3294 High income Not classified
## 3295 High income Not classified
## 3296 High income Not classified
## 3297 High income Not classified
## 3298 High income Not classified
## 3299 High income Not classified
## 3300 High income Not classified
## 3301 High income Not classified
## 3302 High income Not classified
## 3303 High income Not classified
## 3304 High income Not classified
## 3305 High income Not classified
## 3306 High income Not classified
## 3307 High income Not classified
## 3308 High income Not classified
## 3309 High income Not classified
## 3310 High income Not classified
## 3311 High income Not classified
## 3312 High income Not classified
## 3313 High income Not classified
## 3314 High income Not classified
## 3315 High income Not classified
## 3316 High income Not classified
## 3317 High income Not classified
## 3318 High income Not classified
## 3319 High income Not classified
## 3320 High income Not classified
## 3321 High income Not classified
## 3322 High income Not classified
## 3323 High income Not classified
## 3324 High income Not classified
## 3325 High income Not classified
## 3326 High income Not classified
## 3327 High income Not classified
## 3328 High income Not classified
## 3329 High income Not classified
## 3330 High income Not classified
## 3331 High income Not classified
## 3332 High income Not classified
## 3333 High income Not classified
## 3334 High income Not classified
## 3335 High income Not classified
## 3336 High income Not classified
## 3337 High income Not classified
## 3338 High income Not classified
## 3339 High income Not classified
## 3340 High income Not classified
## 3341 High income Not classified
## 3342 High income Not classified
## 3343 High income Not classified
## 3344 High income Not classified
## 3345 High income Not classified
## 3346 High income Not classified
## 3347 High income Not classified
## 3348 High income Not classified
## 3349 Lower middle income IBRD
## 3350 Lower middle income IBRD
## 3351 Lower middle income IBRD
## 3352 Lower middle income IBRD
## 3353 Lower middle income IBRD
## 3354 Lower middle income IBRD
## 3355 Lower middle income IBRD
## 3356 Lower middle income IBRD
## 3357 Lower middle income IBRD
## 3358 Lower middle income IBRD
## 3359 Lower middle income IBRD
## 3360 Lower middle income IBRD
## 3361 Lower middle income IBRD
## 3362 Lower middle income IBRD
## 3363 Lower middle income IBRD
## 3364 Lower middle income IBRD
## 3365 Lower middle income IBRD
## 3366 Lower middle income IBRD
## 3367 Lower middle income IBRD
## 3368 Lower middle income IBRD
## 3369 Lower middle income IBRD
## 3370 Lower middle income IBRD
## 3371 Lower middle income IBRD
## 3372 Lower middle income IBRD
## 3373 Lower middle income IBRD
## 3374 Lower middle income IBRD
## 3375 Lower middle income IBRD
## 3376 Lower middle income IBRD
## 3377 Lower middle income IBRD
## 3378 Lower middle income IBRD
## 3379 Lower middle income IBRD
## 3380 Lower middle income IBRD
## 3381 Lower middle income IBRD
## 3382 Lower middle income IBRD
## 3383 Lower middle income IBRD
## 3384 Lower middle income IBRD
## 3385 Lower middle income IBRD
## 3386 Lower middle income IBRD
## 3387 Lower middle income IBRD
## 3388 Lower middle income IBRD
## 3389 Lower middle income IBRD
## 3390 Lower middle income IBRD
## 3391 Lower middle income IBRD
## 3392 Lower middle income IBRD
## 3393 Lower middle income IBRD
## 3394 Lower middle income IBRD
## 3395 Lower middle income IBRD
## 3396 Lower middle income IBRD
## 3397 Lower middle income IBRD
## 3398 Lower middle income IBRD
## 3399 Lower middle income IBRD
## 3400 Lower middle income IBRD
## 3401 Lower middle income IBRD
## 3402 Lower middle income IBRD
## 3403 Lower middle income IBRD
## 3404 Lower middle income IBRD
## 3405 Lower middle income IBRD
## 3406 Lower middle income IBRD
## 3407 Lower middle income IBRD
## 3408 Lower middle income IBRD
## 3409 Lower middle income IBRD
## 3410 Lower middle income IBRD
## 3411 Low income IDA
## 3412 Low income IDA
## 3413 Low income IDA
## 3414 Low income IDA
## 3415 Low income IDA
## 3416 Low income IDA
## 3417 Low income IDA
## 3418 Low income IDA
## 3419 Low income IDA
## 3420 Low income IDA
## 3421 Low income IDA
## 3422 Low income IDA
## 3423 Low income IDA
## 3424 Low income IDA
## 3425 Low income IDA
## 3426 Low income IDA
## 3427 Low income IDA
## 3428 Low income IDA
## 3429 Low income IDA
## 3430 Low income IDA
## 3431 Low income IDA
## 3432 Low income IDA
## 3433 Low income IDA
## 3434 Low income IDA
## 3435 Low income IDA
## 3436 Low income IDA
## 3437 Low income IDA
## 3438 Low income IDA
## 3439 Low income IDA
## 3440 Low income IDA
## 3441 Low income IDA
## 3442 Low income IDA
## 3443 Low income IDA
## 3444 Low income IDA
## 3445 Low income IDA
## 3446 Low income IDA
## 3447 Low income IDA
## 3448 Low income IDA
## 3449 Low income IDA
## 3450 Low income IDA
## 3451 Low income IDA
## 3452 Low income IDA
## 3453 Low income IDA
## 3454 Low income IDA
## 3455 Low income IDA
## 3456 Low income IDA
## 3457 Low income IDA
## 3458 Low income IDA
## 3459 Low income IDA
## 3460 Low income IDA
## 3461 Low income IDA
## 3462 Low income IDA
## 3463 Low income IDA
## 3464 Low income IDA
## 3465 Low income IDA
## 3466 Low income IDA
## 3467 Low income IDA
## 3468 Low income IDA
## 3469 Low income IDA
## 3470 Low income IDA
## 3471 Low income IDA
## 3472 Low income IDA
## 3473 High income Not classified
## 3474 High income Not classified
## 3475 High income Not classified
## 3476 High income Not classified
## 3477 High income Not classified
## 3478 High income Not classified
## 3479 High income Not classified
## 3480 High income Not classified
## 3481 High income Not classified
## 3482 High income Not classified
## 3483 High income Not classified
## 3484 High income Not classified
## 3485 High income Not classified
## 3486 High income Not classified
## 3487 High income Not classified
## 3488 High income Not classified
## 3489 High income Not classified
## 3490 High income Not classified
## 3491 High income Not classified
## 3492 High income Not classified
## 3493 High income Not classified
## 3494 High income Not classified
## 3495 High income Not classified
## 3496 High income Not classified
## 3497 High income Not classified
## 3498 High income Not classified
## 3499 High income Not classified
## 3500 High income Not classified
## 3501 High income Not classified
## 3502 High income Not classified
## 3503 High income Not classified
## 3504 High income Not classified
## 3505 High income Not classified
## 3506 High income Not classified
## 3507 High income Not classified
## 3508 High income Not classified
## 3509 High income Not classified
## 3510 High income Not classified
## 3511 High income Not classified
## 3512 High income Not classified
## 3513 High income Not classified
## 3514 High income Not classified
## 3515 High income Not classified
## 3516 High income Not classified
## 3517 High income Not classified
## 3518 High income Not classified
## 3519 High income Not classified
## 3520 High income Not classified
## 3521 High income Not classified
## 3522 High income Not classified
## 3523 High income Not classified
## 3524 High income Not classified
## 3525 High income Not classified
## 3526 High income Not classified
## 3527 High income Not classified
## 3528 High income Not classified
## 3529 High income Not classified
## 3530 High income Not classified
## 3531 High income Not classified
## 3532 High income Not classified
## 3533 High income Not classified
## 3534 High income Not classified
## 3535 Low income IDA
## 3536 Low income IDA
## 3537 Low income IDA
## 3538 Low income IDA
## 3539 Low income IDA
## 3540 Low income IDA
## 3541 Low income IDA
## 3542 Low income IDA
## 3543 Low income IDA
## 3544 Low income IDA
## 3545 Low income IDA
## 3546 Low income IDA
## 3547 Low income IDA
## 3548 Low income IDA
## 3549 Low income IDA
## 3550 Low income IDA
## 3551 Low income IDA
## 3552 Low income IDA
## 3553 Low income IDA
## 3554 Low income IDA
## 3555 Low income IDA
## 3556 Low income IDA
## 3557 Low income IDA
## 3558 Low income IDA
## 3559 Low income IDA
## 3560 Low income IDA
## 3561 Low income IDA
## 3562 Low income IDA
## 3563 Low income IDA
## 3564 Low income IDA
## 3565 Low income IDA
## 3566 Low income IDA
## 3567 Low income IDA
## 3568 Low income IDA
## 3569 Low income IDA
## 3570 Low income IDA
## 3571 Low income IDA
## 3572 Low income IDA
## 3573 Low income IDA
## 3574 Low income IDA
## 3575 Low income IDA
## 3576 Low income IDA
## 3577 Low income IDA
## 3578 Low income IDA
## 3579 Low income IDA
## 3580 Low income IDA
## 3581 Low income IDA
## 3582 Low income IDA
## 3583 Low income IDA
## 3584 Low income IDA
## 3585 Low income IDA
## 3586 Low income IDA
## 3587 Low income IDA
## 3588 Low income IDA
## 3589 Low income IDA
## 3590 Low income IDA
## 3591 Low income IDA
## 3592 Low income IDA
## 3593 Low income IDA
## 3594 Low income IDA
## 3595 Low income IDA
## 3596 Low income IDA
## 3597 High income Not classified
## 3598 High income Not classified
## 3599 High income Not classified
## 3600 High income Not classified
## 3601 High income Not classified
## 3602 High income Not classified
## 3603 High income Not classified
## 3604 High income Not classified
## 3605 High income Not classified
## 3606 High income Not classified
## 3607 High income Not classified
## 3608 High income Not classified
## 3609 High income Not classified
## 3610 High income Not classified
## 3611 High income Not classified
## 3612 High income Not classified
## 3613 High income Not classified
## 3614 High income Not classified
## 3615 High income Not classified
## 3616 High income Not classified
## 3617 High income Not classified
## 3618 High income Not classified
## 3619 High income Not classified
## 3620 High income Not classified
## 3621 High income Not classified
## 3622 High income Not classified
## 3623 High income Not classified
## 3624 High income Not classified
## 3625 High income Not classified
## 3626 High income Not classified
## 3627 High income Not classified
## 3628 High income Not classified
## 3629 High income Not classified
## 3630 High income Not classified
## 3631 High income Not classified
## 3632 High income Not classified
## 3633 High income Not classified
## 3634 High income Not classified
## 3635 High income Not classified
## 3636 High income Not classified
## 3637 High income Not classified
## 3638 High income Not classified
## 3639 High income Not classified
## 3640 High income Not classified
## 3641 High income Not classified
## 3642 High income Not classified
## 3643 High income Not classified
## 3644 High income Not classified
## 3645 High income Not classified
## 3646 High income Not classified
## 3647 High income Not classified
## 3648 High income Not classified
## 3649 High income Not classified
## 3650 High income Not classified
## 3651 High income Not classified
## 3652 High income Not classified
## 3653 High income Not classified
## 3654 High income Not classified
## 3655 High income Not classified
## 3656 High income Not classified
## 3657 High income Not classified
## 3658 High income Not classified
## 3659 Upper middle income Blend
## 3660 Upper middle income Blend
## 3661 Upper middle income Blend
## 3662 Upper middle income Blend
## 3663 Upper middle income Blend
## 3664 Upper middle income Blend
## 3665 Upper middle income Blend
## 3666 Upper middle income Blend
## 3667 Upper middle income Blend
## 3668 Upper middle income Blend
## 3669 Upper middle income Blend
## 3670 Upper middle income Blend
## 3671 Upper middle income Blend
## 3672 Upper middle income Blend
## 3673 Upper middle income Blend
## 3674 Upper middle income Blend
## 3675 Upper middle income Blend
## 3676 Upper middle income Blend
## 3677 Upper middle income Blend
## 3678 Upper middle income Blend
## 3679 Upper middle income Blend
## 3680 Upper middle income Blend
## 3681 Upper middle income Blend
## 3682 Upper middle income Blend
## 3683 Upper middle income Blend
## 3684 Upper middle income Blend
## 3685 Upper middle income Blend
## 3686 Upper middle income Blend
## 3687 Upper middle income Blend
## 3688 Upper middle income Blend
## 3689 Upper middle income Blend
## 3690 Upper middle income Blend
## 3691 Upper middle income Blend
## 3692 Upper middle income Blend
## 3693 Upper middle income Blend
## 3694 Upper middle income Blend
## 3695 Upper middle income Blend
## 3696 Upper middle income Blend
## 3697 Upper middle income Blend
## 3698 Upper middle income Blend
## 3699 Upper middle income Blend
## 3700 Upper middle income Blend
## 3701 Upper middle income Blend
## 3702 Upper middle income Blend
## 3703 Upper middle income Blend
## 3704 Upper middle income Blend
## 3705 Upper middle income Blend
## 3706 Upper middle income Blend
## 3707 Upper middle income Blend
## 3708 Upper middle income Blend
## 3709 Upper middle income Blend
## 3710 Upper middle income Blend
## 3711 Upper middle income Blend
## 3712 Upper middle income Blend
## 3713 Upper middle income Blend
## 3714 Upper middle income Blend
## 3715 Upper middle income Blend
## 3716 Upper middle income Blend
## 3717 Upper middle income Blend
## 3718 Upper middle income Blend
## 3719 Upper middle income Blend
## 3720 Upper middle income Blend
## 3721 Lower middle income IDA
## 3722 Lower middle income IDA
## 3723 Lower middle income IDA
## 3724 Lower middle income IDA
## 3725 Lower middle income IDA
## 3726 Lower middle income IDA
## 3727 Lower middle income IDA
## 3728 Lower middle income IDA
## 3729 Lower middle income IDA
## 3730 Lower middle income IDA
## 3731 Lower middle income IDA
## 3732 Lower middle income IDA
## 3733 Lower middle income IDA
## 3734 Lower middle income IDA
## 3735 Lower middle income IDA
## 3736 Lower middle income IDA
## 3737 Lower middle income IDA
## 3738 Lower middle income IDA
## 3739 Lower middle income IDA
## 3740 Lower middle income IDA
## 3741 Lower middle income IDA
## 3742 Lower middle income IDA
## 3743 Lower middle income IDA
## 3744 Lower middle income IDA
## 3745 Lower middle income IDA
## 3746 Lower middle income IDA
## 3747 Lower middle income IDA
## 3748 Lower middle income IDA
## 3749 Lower middle income IDA
## 3750 Lower middle income IDA
## 3751 Lower middle income IDA
## 3752 Lower middle income IDA
## 3753 Lower middle income IDA
## 3754 Lower middle income IDA
## 3755 Lower middle income IDA
## 3756 Lower middle income IDA
## 3757 Lower middle income IDA
## 3758 Lower middle income IDA
## 3759 Lower middle income IDA
## 3760 Lower middle income IDA
## 3761 Lower middle income IDA
## 3762 Lower middle income IDA
## 3763 Lower middle income IDA
## 3764 Lower middle income IDA
## 3765 Lower middle income IDA
## 3766 Lower middle income IDA
## 3767 Lower middle income IDA
## 3768 Lower middle income IDA
## 3769 Lower middle income IDA
## 3770 Lower middle income IDA
## 3771 Lower middle income IDA
## 3772 Lower middle income IDA
## 3773 Lower middle income IDA
## 3774 Lower middle income IDA
## 3775 Lower middle income IDA
## 3776 Lower middle income IDA
## 3777 Lower middle income IDA
## 3778 Lower middle income IDA
## 3779 Lower middle income IDA
## 3780 Lower middle income IDA
## 3781 Lower middle income IDA
## 3782 Lower middle income IDA
## 3783 High income Not classified
## 3784 High income Not classified
## 3785 High income Not classified
## 3786 High income Not classified
## 3787 High income Not classified
## 3788 High income Not classified
## 3789 High income Not classified
## 3790 High income Not classified
## 3791 High income Not classified
## 3792 High income Not classified
## 3793 High income Not classified
## 3794 High income Not classified
## 3795 High income Not classified
## 3796 High income Not classified
## 3797 High income Not classified
## 3798 High income Not classified
## 3799 High income Not classified
## 3800 High income Not classified
## 3801 High income Not classified
## 3802 High income Not classified
## 3803 High income Not classified
## 3804 High income Not classified
## 3805 High income Not classified
## 3806 High income Not classified
## 3807 High income Not classified
## 3808 High income Not classified
## 3809 High income Not classified
## 3810 High income Not classified
## 3811 High income Not classified
## 3812 High income Not classified
## 3813 High income Not classified
## 3814 High income Not classified
## 3815 High income Not classified
## 3816 High income Not classified
## 3817 High income Not classified
## 3818 High income Not classified
## 3819 High income Not classified
## 3820 High income Not classified
## 3821 High income Not classified
## 3822 High income Not classified
## 3823 High income Not classified
## 3824 High income Not classified
## 3825 High income Not classified
## 3826 High income Not classified
## 3827 High income Not classified
## 3828 High income Not classified
## 3829 High income Not classified
## 3830 High income Not classified
## 3831 High income Not classified
## 3832 High income Not classified
## 3833 High income Not classified
## 3834 High income Not classified
## 3835 High income Not classified
## 3836 High income Not classified
## 3837 High income Not classified
## 3838 High income Not classified
## 3839 High income Not classified
## 3840 High income Not classified
## 3841 High income Not classified
## 3842 High income Not classified
## 3843 High income Not classified
## 3844 High income Not classified
## 3845 High income Not classified
## 3846 High income Not classified
## 3847 High income Not classified
## 3848 High income Not classified
## 3849 High income Not classified
## 3850 High income Not classified
## 3851 High income Not classified
## 3852 High income Not classified
## 3853 High income Not classified
## 3854 High income Not classified
## 3855 High income Not classified
## 3856 High income Not classified
## 3857 High income Not classified
## 3858 High income Not classified
## 3859 High income Not classified
## 3860 High income Not classified
## 3861 High income Not classified
## 3862 High income Not classified
## 3863 High income Not classified
## 3864 High income Not classified
## 3865 High income Not classified
## 3866 High income Not classified
## 3867 High income Not classified
## 3868 High income Not classified
## 3869 High income Not classified
## 3870 High income Not classified
## 3871 High income Not classified
## 3872 High income Not classified
## 3873 High income Not classified
## 3874 High income Not classified
## 3875 High income Not classified
## 3876 High income Not classified
## 3877 High income Not classified
## 3878 High income Not classified
## 3879 High income Not classified
## 3880 High income Not classified
## 3881 High income Not classified
## 3882 High income Not classified
## 3883 High income Not classified
## 3884 High income Not classified
## 3885 High income Not classified
## 3886 High income Not classified
## 3887 High income Not classified
## 3888 High income Not classified
## 3889 High income Not classified
## 3890 High income Not classified
## 3891 High income Not classified
## 3892 High income Not classified
## 3893 High income Not classified
## 3894 High income Not classified
## 3895 High income Not classified
## 3896 High income Not classified
## 3897 High income Not classified
## 3898 High income Not classified
## 3899 High income Not classified
## 3900 High income Not classified
## 3901 High income Not classified
## 3902 High income Not classified
## 3903 High income Not classified
## 3904 High income Not classified
## 3905 High income Not classified
## 3906 High income Not classified
## 3907 Upper middle income IBRD
## 3908 Upper middle income IBRD
## 3909 Upper middle income IBRD
## 3910 Upper middle income IBRD
## 3911 Upper middle income IBRD
## 3912 Upper middle income IBRD
## 3913 Upper middle income IBRD
## 3914 Upper middle income IBRD
## 3915 Upper middle income IBRD
## 3916 Upper middle income IBRD
## 3917 Upper middle income IBRD
## 3918 Upper middle income IBRD
## 3919 Upper middle income IBRD
## 3920 Upper middle income IBRD
## 3921 Upper middle income IBRD
## 3922 Upper middle income IBRD
## 3923 Upper middle income IBRD
## 3924 Upper middle income IBRD
## 3925 Upper middle income IBRD
## 3926 Upper middle income IBRD
## 3927 Upper middle income IBRD
## 3928 Upper middle income IBRD
## 3929 Upper middle income IBRD
## 3930 Upper middle income IBRD
## 3931 Upper middle income IBRD
## 3932 Upper middle income IBRD
## 3933 Upper middle income IBRD
## 3934 Upper middle income IBRD
## 3935 Upper middle income IBRD
## 3936 Upper middle income IBRD
## 3937 Upper middle income IBRD
## 3938 Upper middle income IBRD
## 3939 Upper middle income IBRD
## 3940 Upper middle income IBRD
## 3941 Upper middle income IBRD
## 3942 Upper middle income IBRD
## 3943 Upper middle income IBRD
## 3944 Upper middle income IBRD
## 3945 Upper middle income IBRD
## 3946 Upper middle income IBRD
## 3947 Upper middle income IBRD
## 3948 Upper middle income IBRD
## 3949 Upper middle income IBRD
## 3950 Upper middle income IBRD
## 3951 Upper middle income IBRD
## 3952 Upper middle income IBRD
## 3953 Upper middle income IBRD
## 3954 Upper middle income IBRD
## 3955 Upper middle income IBRD
## 3956 Upper middle income IBRD
## 3957 Upper middle income IBRD
## 3958 Upper middle income IBRD
## 3959 Upper middle income IBRD
## 3960 Upper middle income IBRD
## 3961 Upper middle income IBRD
## 3962 Upper middle income IBRD
## 3963 Upper middle income IBRD
## 3964 Upper middle income IBRD
## 3965 Upper middle income IBRD
## 3966 Upper middle income IBRD
## 3967 Upper middle income IBRD
## 3968 Upper middle income IBRD
## 3969 High income Not classified
## 3970 High income Not classified
## 3971 High income Not classified
## 3972 High income Not classified
## 3973 High income Not classified
## 3974 High income Not classified
## 3975 High income Not classified
## 3976 High income Not classified
## 3977 High income Not classified
## 3978 High income Not classified
## 3979 High income Not classified
## 3980 High income Not classified
## 3981 High income Not classified
## 3982 High income Not classified
## 3983 High income Not classified
## 3984 High income Not classified
## 3985 High income Not classified
## 3986 High income Not classified
## 3987 High income Not classified
## 3988 High income Not classified
## 3989 High income Not classified
## 3990 High income Not classified
## 3991 High income Not classified
## 3992 High income Not classified
## 3993 High income Not classified
## 3994 High income Not classified
## 3995 High income Not classified
## 3996 High income Not classified
## 3997 High income Not classified
## 3998 High income Not classified
## 3999 High income Not classified
## 4000 High income Not classified
## 4001 High income Not classified
## 4002 High income Not classified
## 4003 High income Not classified
## 4004 High income Not classified
## 4005 High income Not classified
## 4006 High income Not classified
## 4007 High income Not classified
## 4008 High income Not classified
## 4009 High income Not classified
## 4010 High income Not classified
## 4011 High income Not classified
## 4012 High income Not classified
## 4013 High income Not classified
## 4014 High income Not classified
## 4015 High income Not classified
## 4016 High income Not classified
## 4017 High income Not classified
## 4018 High income Not classified
## 4019 High income Not classified
## 4020 High income Not classified
## 4021 High income Not classified
## 4022 High income Not classified
## 4023 High income Not classified
## 4024 High income Not classified
## 4025 High income Not classified
## 4026 High income Not classified
## 4027 High income Not classified
## 4028 High income Not classified
## 4029 High income Not classified
## 4030 High income Not classified
## 4031 Upper middle income Blend
## 4032 Upper middle income Blend
## 4033 Upper middle income Blend
## 4034 Upper middle income Blend
## 4035 Upper middle income Blend
## 4036 Upper middle income Blend
## 4037 Upper middle income Blend
## 4038 Upper middle income Blend
## 4039 Upper middle income Blend
## 4040 Upper middle income Blend
## 4041 Upper middle income Blend
## 4042 Upper middle income Blend
## 4043 Upper middle income Blend
## 4044 Upper middle income Blend
## 4045 Upper middle income Blend
## 4046 Upper middle income Blend
## 4047 Upper middle income Blend
## 4048 Upper middle income Blend
## 4049 Upper middle income Blend
## 4050 Upper middle income Blend
## 4051 Upper middle income Blend
## 4052 Upper middle income Blend
## 4053 Upper middle income Blend
## 4054 Upper middle income Blend
## 4055 Upper middle income Blend
## 4056 Upper middle income Blend
## 4057 Upper middle income Blend
## 4058 Upper middle income Blend
## 4059 Upper middle income Blend
## 4060 Upper middle income Blend
## 4061 Upper middle income Blend
## 4062 Upper middle income Blend
## 4063 Upper middle income Blend
## 4064 Upper middle income Blend
## 4065 Upper middle income Blend
## 4066 Upper middle income Blend
## 4067 Upper middle income Blend
## 4068 Upper middle income Blend
## 4069 Upper middle income Blend
## 4070 Upper middle income Blend
## 4071 Upper middle income Blend
## 4072 Upper middle income Blend
## 4073 Upper middle income Blend
## 4074 Upper middle income Blend
## 4075 Upper middle income Blend
## 4076 Upper middle income Blend
## 4077 Upper middle income Blend
## 4078 Upper middle income Blend
## 4079 Upper middle income Blend
## 4080 Upper middle income Blend
## 4081 Upper middle income Blend
## 4082 Upper middle income Blend
## 4083 Upper middle income Blend
## 4084 Upper middle income Blend
## 4085 Upper middle income Blend
## 4086 Upper middle income Blend
## 4087 Upper middle income Blend
## 4088 Upper middle income Blend
## 4089 Upper middle income Blend
## 4090 Upper middle income Blend
## 4091 Upper middle income Blend
## 4092 Upper middle income Blend
## 4093 Upper middle income IBRD
## 4094 Upper middle income IBRD
## 4095 Upper middle income IBRD
## 4096 Upper middle income IBRD
## 4097 Upper middle income IBRD
## 4098 Upper middle income IBRD
## 4099 Upper middle income IBRD
## 4100 Upper middle income IBRD
## 4101 Upper middle income IBRD
## 4102 Upper middle income IBRD
## 4103 Upper middle income IBRD
## 4104 Upper middle income IBRD
## 4105 Upper middle income IBRD
## 4106 Upper middle income IBRD
## 4107 Upper middle income IBRD
## 4108 Upper middle income IBRD
## 4109 Upper middle income IBRD
## 4110 Upper middle income IBRD
## 4111 Upper middle income IBRD
## 4112 Upper middle income IBRD
## 4113 Upper middle income IBRD
## 4114 Upper middle income IBRD
## 4115 Upper middle income IBRD
## 4116 Upper middle income IBRD
## 4117 Upper middle income IBRD
## 4118 Upper middle income IBRD
## 4119 Upper middle income IBRD
## 4120 Upper middle income IBRD
## 4121 Upper middle income IBRD
## 4122 Upper middle income IBRD
## 4123 Upper middle income IBRD
## 4124 Upper middle income IBRD
## 4125 Upper middle income IBRD
## 4126 Upper middle income IBRD
## 4127 Upper middle income IBRD
## 4128 Upper middle income IBRD
## 4129 Upper middle income IBRD
## 4130 Upper middle income IBRD
## 4131 Upper middle income IBRD
## 4132 Upper middle income IBRD
## 4133 Upper middle income IBRD
## 4134 Upper middle income IBRD
## 4135 Upper middle income IBRD
## 4136 Upper middle income IBRD
## 4137 Upper middle income IBRD
## 4138 Upper middle income IBRD
## 4139 Upper middle income IBRD
## 4140 Upper middle income IBRD
## 4141 Upper middle income IBRD
## 4142 Upper middle income IBRD
## 4143 Upper middle income IBRD
## 4144 Upper middle income IBRD
## 4145 Upper middle income IBRD
## 4146 Upper middle income IBRD
## 4147 Upper middle income IBRD
## 4148 Upper middle income IBRD
## 4149 Upper middle income IBRD
## 4150 Upper middle income IBRD
## 4151 Upper middle income IBRD
## 4152 Upper middle income IBRD
## 4153 Upper middle income IBRD
## 4154 Upper middle income IBRD
## 4155 Lower middle income IDA
## 4156 Lower middle income IDA
## 4157 Lower middle income IDA
## 4158 Lower middle income IDA
## 4159 Lower middle income IDA
## 4160 Lower middle income IDA
## 4161 Lower middle income IDA
## 4162 Lower middle income IDA
## 4163 Lower middle income IDA
## 4164 Lower middle income IDA
## 4165 Lower middle income IDA
## 4166 Lower middle income IDA
## 4167 Lower middle income IDA
## 4168 Lower middle income IDA
## 4169 Lower middle income IDA
## 4170 Lower middle income IDA
## 4171 Lower middle income IDA
## 4172 Lower middle income IDA
## 4173 Lower middle income IDA
## 4174 Lower middle income IDA
## 4175 Lower middle income IDA
## 4176 Lower middle income IDA
## 4177 Lower middle income IDA
## 4178 Lower middle income IDA
## 4179 Lower middle income IDA
## 4180 Lower middle income IDA
## 4181 Lower middle income IDA
## 4182 Lower middle income IDA
## 4183 Lower middle income IDA
## 4184 Lower middle income IDA
## 4185 Lower middle income IDA
## 4186 Lower middle income IDA
## 4187 Lower middle income IDA
## 4188 Lower middle income IDA
## 4189 Lower middle income IDA
## 4190 Lower middle income IDA
## 4191 Lower middle income IDA
## 4192 Lower middle income IDA
## 4193 Lower middle income IDA
## 4194 Lower middle income IDA
## 4195 Lower middle income IDA
## 4196 Lower middle income IDA
## 4197 Lower middle income IDA
## 4198 Lower middle income IDA
## 4199 Lower middle income IDA
## 4200 Lower middle income IDA
## 4201 Lower middle income IDA
## 4202 Lower middle income IDA
## 4203 Lower middle income IDA
## 4204 Lower middle income IDA
## 4205 Lower middle income IDA
## 4206 Lower middle income IDA
## 4207 Lower middle income IDA
## 4208 Lower middle income IDA
## 4209 Lower middle income IDA
## 4210 Lower middle income IDA
## 4211 Lower middle income IDA
## 4212 Lower middle income IDA
## 4213 Lower middle income IDA
## 4214 Lower middle income IDA
## 4215 Lower middle income IDA
## 4216 Lower middle income IDA
## 4217 High income Not classified
## 4218 High income Not classified
## 4219 High income Not classified
## 4220 High income Not classified
## 4221 High income Not classified
## 4222 High income Not classified
## 4223 High income Not classified
## 4224 High income Not classified
## 4225 High income Not classified
## 4226 High income Not classified
## 4227 High income Not classified
## 4228 High income Not classified
## 4229 High income Not classified
## 4230 High income Not classified
## 4231 High income Not classified
## 4232 High income Not classified
## 4233 High income Not classified
## 4234 High income Not classified
## 4235 High income Not classified
## 4236 High income Not classified
## 4237 High income Not classified
## 4238 High income Not classified
## 4239 High income Not classified
## 4240 High income Not classified
## 4241 High income Not classified
## 4242 High income Not classified
## 4243 High income Not classified
## 4244 High income Not classified
## 4245 High income Not classified
## 4246 High income Not classified
## 4247 High income Not classified
## 4248 High income Not classified
## 4249 High income Not classified
## 4250 High income Not classified
## 4251 High income Not classified
## 4252 High income Not classified
## 4253 High income Not classified
## 4254 High income Not classified
## 4255 High income Not classified
## 4256 High income Not classified
## 4257 High income Not classified
## 4258 High income Not classified
## 4259 High income Not classified
## 4260 High income Not classified
## 4261 High income Not classified
## 4262 High income Not classified
## 4263 High income Not classified
## 4264 High income Not classified
## 4265 High income Not classified
## 4266 High income Not classified
## 4267 High income Not classified
## 4268 High income Not classified
## 4269 High income Not classified
## 4270 High income Not classified
## 4271 High income Not classified
## 4272 High income Not classified
## 4273 High income Not classified
## 4274 High income Not classified
## 4275 High income Not classified
## 4276 High income Not classified
## 4277 High income Not classified
## 4278 High income Not classified
## 4279 High income Not classified
## 4280 High income Not classified
## 4281 High income Not classified
## 4282 High income Not classified
## 4283 High income Not classified
## 4284 High income Not classified
## 4285 High income Not classified
## 4286 High income Not classified
## 4287 High income Not classified
## 4288 High income Not classified
## 4289 High income Not classified
## 4290 High income Not classified
## 4291 High income Not classified
## 4292 High income Not classified
## 4293 High income Not classified
## 4294 High income Not classified
## 4295 High income Not classified
## 4296 High income Not classified
## 4297 High income Not classified
## 4298 High income Not classified
## 4299 High income Not classified
## 4300 High income Not classified
## 4301 High income Not classified
## 4302 High income Not classified
## 4303 High income Not classified
## 4304 High income Not classified
## 4305 High income Not classified
## 4306 High income Not classified
## 4307 High income Not classified
## 4308 High income Not classified
## 4309 High income Not classified
## 4310 High income Not classified
## 4311 High income Not classified
## 4312 High income Not classified
## 4313 High income Not classified
## 4314 High income Not classified
## 4315 High income Not classified
## 4316 High income Not classified
## 4317 High income Not classified
## 4318 High income Not classified
## 4319 High income Not classified
## 4320 High income Not classified
## 4321 High income Not classified
## 4322 High income Not classified
## 4323 High income Not classified
## 4324 High income Not classified
## 4325 High income Not classified
## 4326 High income Not classified
## 4327 High income Not classified
## 4328 High income Not classified
## 4329 High income Not classified
## 4330 High income Not classified
## 4331 High income Not classified
## 4332 High income Not classified
## 4333 High income Not classified
## 4334 High income Not classified
## 4335 High income Not classified
## 4336 High income Not classified
## 4337 High income Not classified
## 4338 High income Not classified
## 4339 High income Not classified
## 4340 High income Not classified
## 4341 Low income IDA
## 4342 Low income IDA
## 4343 Low income IDA
## 4344 Low income IDA
## 4345 Low income IDA
## 4346 Low income IDA
## 4347 Low income IDA
## 4348 Low income IDA
## 4349 Low income IDA
## 4350 Low income IDA
## 4351 Low income IDA
## 4352 Low income IDA
## 4353 Low income IDA
## 4354 Low income IDA
## 4355 Low income IDA
## 4356 Low income IDA
## 4357 Low income IDA
## 4358 Low income IDA
## 4359 Low income IDA
## 4360 Low income IDA
## 4361 Low income IDA
## 4362 Low income IDA
## 4363 Low income IDA
## 4364 Low income IDA
## 4365 Low income IDA
## 4366 Low income IDA
## 4367 Low income IDA
## 4368 Low income IDA
## 4369 Low income IDA
## 4370 Low income IDA
## 4371 Low income IDA
## 4372 Low income IDA
## 4373 Low income IDA
## 4374 Low income IDA
## 4375 Low income IDA
## 4376 Low income IDA
## 4377 Low income IDA
## 4378 Low income IDA
## 4379 Low income IDA
## 4380 Low income IDA
## 4381 Low income IDA
## 4382 Low income IDA
## 4383 Low income IDA
## 4384 Low income IDA
## 4385 Low income IDA
## 4386 Low income IDA
## 4387 Low income IDA
## 4388 Low income IDA
## 4389 Low income IDA
## 4390 Low income IDA
## 4391 Low income IDA
## 4392 Low income IDA
## 4393 Low income IDA
## 4394 Low income IDA
## 4395 Low income IDA
## 4396 Low income IDA
## 4397 Low income IDA
## 4398 Low income IDA
## 4399 Low income IDA
## 4400 Low income IDA
## 4401 Low income IDA
## 4402 Low income IDA
## 4403 Low income IDA
## 4404 Low income IDA
## 4405 Low income IDA
## 4406 Low income IDA
## 4407 Low income IDA
## 4408 Low income IDA
## 4409 Low income IDA
## 4410 Low income IDA
## 4411 Low income IDA
## 4412 Low income IDA
## 4413 Low income IDA
## 4414 Low income IDA
## 4415 Low income IDA
## 4416 Low income IDA
## 4417 Low income IDA
## 4418 Low income IDA
## 4419 Low income IDA
## 4420 Low income IDA
## 4421 Low income IDA
## 4422 Low income IDA
## 4423 Low income IDA
## 4424 Low income IDA
## 4425 Low income IDA
## 4426 Low income IDA
## 4427 Low income IDA
## 4428 Low income IDA
## 4429 Low income IDA
## 4430 Low income IDA
## 4431 Low income IDA
## 4432 Low income IDA
## 4433 Low income IDA
## 4434 Low income IDA
## 4435 Low income IDA
## 4436 Low income IDA
## 4437 Low income IDA
## 4438 Low income IDA
## 4439 Low income IDA
## 4440 Low income IDA
## 4441 Low income IDA
## 4442 Low income IDA
## 4443 Low income IDA
## 4444 Low income IDA
## 4445 Low income IDA
## 4446 Low income IDA
## 4447 Low income IDA
## 4448 Low income IDA
## 4449 Low income IDA
## 4450 Low income IDA
## 4451 Low income IDA
## 4452 Low income IDA
## 4453 Low income IDA
## 4454 Low income IDA
## 4455 Low income IDA
## 4456 Low income IDA
## 4457 Low income IDA
## 4458 Low income IDA
## 4459 Low income IDA
## 4460 Low income IDA
## 4461 Low income IDA
## 4462 Low income IDA
## 4463 Low income IDA
## 4464 Low income IDA
## 4465 Upper middle income IBRD
## 4466 Upper middle income IBRD
## 4467 Upper middle income IBRD
## 4468 Upper middle income IBRD
## 4469 Upper middle income IBRD
## 4470 Upper middle income IBRD
## 4471 Upper middle income IBRD
## 4472 Upper middle income IBRD
## 4473 Upper middle income IBRD
## 4474 Upper middle income IBRD
## 4475 Upper middle income IBRD
## 4476 Upper middle income IBRD
## 4477 Upper middle income IBRD
## 4478 Upper middle income IBRD
## 4479 Upper middle income IBRD
## 4480 Upper middle income IBRD
## 4481 Upper middle income IBRD
## 4482 Upper middle income IBRD
## 4483 Upper middle income IBRD
## 4484 Upper middle income IBRD
## 4485 Upper middle income IBRD
## 4486 Upper middle income IBRD
## 4487 Upper middle income IBRD
## 4488 Upper middle income IBRD
## 4489 Upper middle income IBRD
## 4490 Upper middle income IBRD
## 4491 Upper middle income IBRD
## 4492 Upper middle income IBRD
## 4493 Upper middle income IBRD
## 4494 Upper middle income IBRD
## 4495 Upper middle income IBRD
## 4496 Upper middle income IBRD
## 4497 Upper middle income IBRD
## 4498 Upper middle income IBRD
## 4499 Upper middle income IBRD
## 4500 Upper middle income IBRD
## 4501 Upper middle income IBRD
## 4502 Upper middle income IBRD
## 4503 Upper middle income IBRD
## 4504 Upper middle income IBRD
## 4505 Upper middle income IBRD
## 4506 Upper middle income IBRD
## 4507 Upper middle income IBRD
## 4508 Upper middle income IBRD
## 4509 Upper middle income IBRD
## 4510 Upper middle income IBRD
## 4511 Upper middle income IBRD
## 4512 Upper middle income IBRD
## 4513 Upper middle income IBRD
## 4514 Upper middle income IBRD
## 4515 Upper middle income IBRD
## 4516 Upper middle income IBRD
## 4517 Upper middle income IBRD
## 4518 Upper middle income IBRD
## 4519 Upper middle income IBRD
## 4520 Upper middle income IBRD
## 4521 Upper middle income IBRD
## 4522 Upper middle income IBRD
## 4523 Upper middle income IBRD
## 4524 Upper middle income IBRD
## 4525 Upper middle income IBRD
## 4526 Upper middle income IBRD
## 4527 High income Not classified
## 4528 High income Not classified
## 4529 High income Not classified
## 4530 High income Not classified
## 4531 High income Not classified
## 4532 High income Not classified
## 4533 High income Not classified
## 4534 High income Not classified
## 4535 High income Not classified
## 4536 High income Not classified
## 4537 High income Not classified
## 4538 High income Not classified
## 4539 High income Not classified
## 4540 High income Not classified
## 4541 High income Not classified
## 4542 High income Not classified
## 4543 High income Not classified
## 4544 High income Not classified
## 4545 High income Not classified
## 4546 High income Not classified
## 4547 High income Not classified
## 4548 High income Not classified
## 4549 High income Not classified
## 4550 High income Not classified
## 4551 High income Not classified
## 4552 High income Not classified
## 4553 High income Not classified
## 4554 High income Not classified
## 4555 High income Not classified
## 4556 High income Not classified
## 4557 High income Not classified
## 4558 High income Not classified
## 4559 High income Not classified
## 4560 High income Not classified
## 4561 High income Not classified
## 4562 High income Not classified
## 4563 High income Not classified
## 4564 High income Not classified
## 4565 High income Not classified
## 4566 High income Not classified
## 4567 High income Not classified
## 4568 High income Not classified
## 4569 High income Not classified
## 4570 High income Not classified
## 4571 High income Not classified
## 4572 High income Not classified
## 4573 High income Not classified
## 4574 High income Not classified
## 4575 High income Not classified
## 4576 High income Not classified
## 4577 High income Not classified
## 4578 High income Not classified
## 4579 High income Not classified
## 4580 High income Not classified
## 4581 High income Not classified
## 4582 High income Not classified
## 4583 High income Not classified
## 4584 High income Not classified
## 4585 High income Not classified
## 4586 High income Not classified
## 4587 High income Not classified
## 4588 High income Not classified
## 4589 Upper middle income IBRD
## 4590 Upper middle income IBRD
## 4591 Upper middle income IBRD
## 4592 Upper middle income IBRD
## 4593 Upper middle income IBRD
## 4594 Upper middle income IBRD
## 4595 Upper middle income IBRD
## 4596 Upper middle income IBRD
## 4597 Upper middle income IBRD
## 4598 Upper middle income IBRD
## 4599 Upper middle income IBRD
## 4600 Upper middle income IBRD
## 4601 Upper middle income IBRD
## 4602 Upper middle income IBRD
## 4603 Upper middle income IBRD
## 4604 Upper middle income IBRD
## 4605 Upper middle income IBRD
## 4606 Upper middle income IBRD
## 4607 Upper middle income IBRD
## 4608 Upper middle income IBRD
## 4609 Upper middle income IBRD
## 4610 Upper middle income IBRD
## 4611 Upper middle income IBRD
## 4612 Upper middle income IBRD
## 4613 Upper middle income IBRD
## 4614 Upper middle income IBRD
## 4615 Upper middle income IBRD
## 4616 Upper middle income IBRD
## 4617 Upper middle income IBRD
## 4618 Upper middle income IBRD
## 4619 Upper middle income IBRD
## 4620 Upper middle income IBRD
## 4621 Upper middle income IBRD
## 4622 Upper middle income IBRD
## 4623 Upper middle income IBRD
## 4624 Upper middle income IBRD
## 4625 Upper middle income IBRD
## 4626 Upper middle income IBRD
## 4627 Upper middle income IBRD
## 4628 Upper middle income IBRD
## 4629 Upper middle income IBRD
## 4630 Upper middle income IBRD
## 4631 Upper middle income IBRD
## 4632 Upper middle income IBRD
## 4633 Upper middle income IBRD
## 4634 Upper middle income IBRD
## 4635 Upper middle income IBRD
## 4636 Upper middle income IBRD
## 4637 Upper middle income IBRD
## 4638 Upper middle income IBRD
## 4639 Upper middle income IBRD
## 4640 Upper middle income IBRD
## 4641 Upper middle income IBRD
## 4642 Upper middle income IBRD
## 4643 Upper middle income IBRD
## 4644 Upper middle income IBRD
## 4645 Upper middle income IBRD
## 4646 Upper middle income IBRD
## 4647 Upper middle income IBRD
## 4648 Upper middle income IBRD
## 4649 Upper middle income IBRD
## 4650 Upper middle income IBRD
## 4651 High income Not classified
## 4652 High income Not classified
## 4653 High income Not classified
## 4654 High income Not classified
## 4655 High income Not classified
## 4656 High income Not classified
## 4657 High income Not classified
## 4658 High income Not classified
## 4659 High income Not classified
## 4660 High income Not classified
## 4661 High income Not classified
## 4662 High income Not classified
## 4663 High income Not classified
## 4664 High income Not classified
## 4665 High income Not classified
## 4666 High income Not classified
## 4667 High income Not classified
## 4668 High income Not classified
## 4669 High income Not classified
## 4670 High income Not classified
## 4671 High income Not classified
## 4672 High income Not classified
## 4673 High income Not classified
## 4674 High income Not classified
## 4675 High income Not classified
## 4676 High income Not classified
## 4677 High income Not classified
## 4678 High income Not classified
## 4679 High income Not classified
## 4680 High income Not classified
## 4681 High income Not classified
## 4682 High income Not classified
## 4683 High income Not classified
## 4684 High income Not classified
## 4685 High income Not classified
## 4686 High income Not classified
## 4687 High income Not classified
## 4688 High income Not classified
## 4689 High income Not classified
## 4690 High income Not classified
## 4691 High income Not classified
## 4692 High income Not classified
## 4693 High income Not classified
## 4694 High income Not classified
## 4695 High income Not classified
## 4696 High income Not classified
## 4697 High income Not classified
## 4698 High income Not classified
## 4699 High income Not classified
## 4700 High income Not classified
## 4701 High income Not classified
## 4702 High income Not classified
## 4703 High income Not classified
## 4704 High income Not classified
## 4705 High income Not classified
## 4706 High income Not classified
## 4707 High income Not classified
## 4708 High income Not classified
## 4709 High income Not classified
## 4710 High income Not classified
## 4711 High income Not classified
## 4712 High income Not classified
## 4713 Low income IDA
## 4714 Low income IDA
## 4715 Low income IDA
## 4716 Low income IDA
## 4717 Low income IDA
## 4718 Low income IDA
## 4719 Low income IDA
## 4720 Low income IDA
## 4721 Low income IDA
## 4722 Low income IDA
## 4723 Low income IDA
## 4724 Low income IDA
## 4725 Low income IDA
## 4726 Low income IDA
## 4727 Low income IDA
## 4728 Low income IDA
## 4729 Low income IDA
## 4730 Low income IDA
## 4731 Low income IDA
## 4732 Low income IDA
## 4733 Low income IDA
## 4734 Low income IDA
## 4735 Low income IDA
## 4736 Low income IDA
## 4737 Low income IDA
## 4738 Low income IDA
## 4739 Low income IDA
## 4740 Low income IDA
## 4741 Low income IDA
## 4742 Low income IDA
## 4743 Low income IDA
## 4744 Low income IDA
## 4745 Low income IDA
## 4746 Low income IDA
## 4747 Low income IDA
## 4748 Low income IDA
## 4749 Low income IDA
## 4750 Low income IDA
## 4751 Low income IDA
## 4752 Low income IDA
## 4753 Low income IDA
## 4754 Low income IDA
## 4755 Low income IDA
## 4756 Low income IDA
## 4757 Low income IDA
## 4758 Low income IDA
## 4759 Low income IDA
## 4760 Low income IDA
## 4761 Low income IDA
## 4762 Low income IDA
## 4763 Low income IDA
## 4764 Low income IDA
## 4765 Low income IDA
## 4766 Low income IDA
## 4767 Low income IDA
## 4768 Low income IDA
## 4769 Low income IDA
## 4770 Low income IDA
## 4771 Low income IDA
## 4772 Low income IDA
## 4773 Low income IDA
## 4774 Low income IDA
## 4775 Upper middle income IDA
## 4776 Upper middle income IDA
## 4777 Upper middle income IDA
## 4778 Upper middle income IDA
## 4779 Upper middle income IDA
## 4780 Upper middle income IDA
## 4781 Upper middle income IDA
## 4782 Upper middle income IDA
## 4783 Upper middle income IDA
## 4784 Upper middle income IDA
## 4785 Upper middle income IDA
## 4786 Upper middle income IDA
## 4787 Upper middle income IDA
## 4788 Upper middle income IDA
## 4789 Upper middle income IDA
## 4790 Upper middle income IDA
## 4791 Upper middle income IDA
## 4792 Upper middle income IDA
## 4793 Upper middle income IDA
## 4794 Upper middle income IDA
## 4795 Upper middle income IDA
## 4796 Upper middle income IDA
## 4797 Upper middle income IDA
## 4798 Upper middle income IDA
## 4799 Upper middle income IDA
## 4800 Upper middle income IDA
## 4801 Upper middle income IDA
## 4802 Upper middle income IDA
## 4803 Upper middle income IDA
## 4804 Upper middle income IDA
## 4805 Upper middle income IDA
## 4806 Upper middle income IDA
## 4807 Upper middle income IDA
## 4808 Upper middle income IDA
## 4809 Upper middle income IDA
## 4810 Upper middle income IDA
## 4811 Upper middle income IDA
## 4812 Upper middle income IDA
## 4813 Upper middle income IDA
## 4814 Upper middle income IDA
## 4815 Upper middle income IDA
## 4816 Upper middle income IDA
## 4817 Upper middle income IDA
## 4818 Upper middle income IDA
## 4819 Upper middle income IDA
## 4820 Upper middle income IDA
## 4821 Upper middle income IDA
## 4822 Upper middle income IDA
## 4823 Upper middle income IDA
## 4824 Upper middle income IDA
## 4825 Upper middle income IDA
## 4826 Upper middle income IDA
## 4827 Upper middle income IDA
## 4828 Upper middle income IDA
## 4829 Upper middle income IDA
## 4830 Upper middle income IDA
## 4831 Upper middle income IDA
## 4832 Upper middle income IDA
## 4833 Upper middle income IDA
## 4834 Upper middle income IDA
## 4835 Upper middle income IDA
## 4836 Upper middle income IDA
## 4837 High income Not classified
## 4838 High income Not classified
## 4839 High income Not classified
## 4840 High income Not classified
## 4841 High income Not classified
## 4842 High income Not classified
## 4843 High income Not classified
## 4844 High income Not classified
## 4845 High income Not classified
## 4846 High income Not classified
## 4847 High income Not classified
## 4848 High income Not classified
## 4849 High income Not classified
## 4850 High income Not classified
## 4851 High income Not classified
## 4852 High income Not classified
## 4853 High income Not classified
## 4854 High income Not classified
## 4855 High income Not classified
## 4856 High income Not classified
## 4857 High income Not classified
## 4858 High income Not classified
## 4859 High income Not classified
## 4860 High income Not classified
## 4861 High income Not classified
## 4862 High income Not classified
## 4863 High income Not classified
## 4864 High income Not classified
## 4865 High income Not classified
## 4866 High income Not classified
## 4867 High income Not classified
## 4868 High income Not classified
## 4869 High income Not classified
## 4870 High income Not classified
## 4871 High income Not classified
## 4872 High income Not classified
## 4873 High income Not classified
## 4874 High income Not classified
## 4875 High income Not classified
## 4876 High income Not classified
## 4877 High income Not classified
## 4878 High income Not classified
## 4879 High income Not classified
## 4880 High income Not classified
## 4881 High income Not classified
## 4882 High income Not classified
## 4883 High income Not classified
## 4884 High income Not classified
## 4885 High income Not classified
## 4886 High income Not classified
## 4887 High income Not classified
## 4888 High income Not classified
## 4889 High income Not classified
## 4890 High income Not classified
## 4891 High income Not classified
## 4892 High income Not classified
## 4893 High income Not classified
## 4894 High income Not classified
## 4895 High income Not classified
## 4896 High income Not classified
## 4897 High income Not classified
## 4898 High income Not classified
## 4899 Lower middle income IDA
## 4900 Lower middle income IDA
## 4901 Lower middle income IDA
## 4902 Lower middle income IDA
## 4903 Lower middle income IDA
## 4904 Lower middle income IDA
## 4905 Lower middle income IDA
## 4906 Lower middle income IDA
## 4907 Lower middle income IDA
## 4908 Lower middle income IDA
## 4909 Lower middle income IDA
## 4910 Lower middle income IDA
## 4911 Lower middle income IDA
## 4912 Lower middle income IDA
## 4913 Lower middle income IDA
## 4914 Lower middle income IDA
## 4915 Lower middle income IDA
## 4916 Lower middle income IDA
## 4917 Lower middle income IDA
## 4918 Lower middle income IDA
## 4919 Lower middle income IDA
## 4920 Lower middle income IDA
## 4921 Lower middle income IDA
## 4922 Lower middle income IDA
## 4923 Lower middle income IDA
## 4924 Lower middle income IDA
## 4925 Lower middle income IDA
## 4926 Lower middle income IDA
## 4927 Lower middle income IDA
## 4928 Lower middle income IDA
## 4929 Lower middle income IDA
## 4930 Lower middle income IDA
## 4931 Lower middle income IDA
## 4932 Lower middle income IDA
## 4933 Lower middle income IDA
## 4934 Lower middle income IDA
## 4935 Lower middle income IDA
## 4936 Lower middle income IDA
## 4937 Lower middle income IDA
## 4938 Lower middle income IDA
## 4939 Lower middle income IDA
## 4940 Lower middle income IDA
## 4941 Lower middle income IDA
## 4942 Lower middle income IDA
## 4943 Lower middle income IDA
## 4944 Lower middle income IDA
## 4945 Lower middle income IDA
## 4946 Lower middle income IDA
## 4947 Lower middle income IDA
## 4948 Lower middle income IDA
## 4949 Lower middle income IDA
## 4950 Lower middle income IDA
## 4951 Lower middle income IDA
## 4952 Lower middle income IDA
## 4953 Lower middle income IDA
## 4954 Lower middle income IDA
## 4955 Lower middle income IDA
## 4956 Lower middle income IDA
## 4957 Lower middle income IDA
## 4958 Lower middle income IDA
## 4959 Lower middle income IDA
## 4960 Lower middle income IDA
## 4961 High income IBRD
## 4962 High income IBRD
## 4963 High income IBRD
## 4964 High income IBRD
## 4965 High income IBRD
## 4966 High income IBRD
## 4967 High income IBRD
## 4968 High income IBRD
## 4969 High income IBRD
## 4970 High income IBRD
## 4971 High income IBRD
## 4972 High income IBRD
## 4973 High income IBRD
## 4974 High income IBRD
## 4975 High income IBRD
## 4976 High income IBRD
## 4977 High income IBRD
## 4978 High income IBRD
## 4979 High income IBRD
## 4980 High income IBRD
## 4981 High income IBRD
## 4982 High income IBRD
## 4983 High income IBRD
## 4984 High income IBRD
## 4985 High income IBRD
## 4986 High income IBRD
## 4987 High income IBRD
## 4988 High income IBRD
## 4989 High income IBRD
## 4990 High income IBRD
## 4991 High income IBRD
## 4992 High income IBRD
## 4993 High income IBRD
## 4994 High income IBRD
## 4995 High income IBRD
## 4996 High income IBRD
## 4997 High income IBRD
## 4998 High income IBRD
## 4999 High income IBRD
## 5000 High income IBRD
## 5001 High income IBRD
## 5002 High income IBRD
## 5003 High income IBRD
## 5004 High income IBRD
## 5005 High income IBRD
## 5006 High income IBRD
## 5007 High income IBRD
## 5008 High income IBRD
## 5009 High income IBRD
## 5010 High income IBRD
## 5011 High income IBRD
## 5012 High income IBRD
## 5013 High income IBRD
## 5014 High income IBRD
## 5015 High income IBRD
## 5016 High income IBRD
## 5017 High income IBRD
## 5018 High income IBRD
## 5019 High income IBRD
## 5020 High income IBRD
## 5021 High income IBRD
## 5022 High income IBRD
## 5023 Lower middle income IDA
## 5024 Lower middle income IDA
## 5025 Lower middle income IDA
## 5026 Lower middle income IDA
## 5027 Lower middle income IDA
## 5028 Lower middle income IDA
## 5029 Lower middle income IDA
## 5030 Lower middle income IDA
## 5031 Lower middle income IDA
## 5032 Lower middle income IDA
## 5033 Lower middle income IDA
## 5034 Lower middle income IDA
## 5035 Lower middle income IDA
## 5036 Lower middle income IDA
## 5037 Lower middle income IDA
## 5038 Lower middle income IDA
## 5039 Lower middle income IDA
## 5040 Lower middle income IDA
## 5041 Lower middle income IDA
## 5042 Lower middle income IDA
## 5043 Lower middle income IDA
## 5044 Lower middle income IDA
## 5045 Lower middle income IDA
## 5046 Lower middle income IDA
## 5047 Lower middle income IDA
## 5048 Lower middle income IDA
## 5049 Lower middle income IDA
## 5050 Lower middle income IDA
## 5051 Lower middle income IDA
## 5052 Lower middle income IDA
## 5053 Lower middle income IDA
## 5054 Lower middle income IDA
## 5055 Lower middle income IDA
## 5056 Lower middle income IDA
## 5057 Lower middle income IDA
## 5058 Lower middle income IDA
## 5059 Lower middle income IDA
## 5060 Lower middle income IDA
## 5061 Lower middle income IDA
## 5062 Lower middle income IDA
## 5063 Lower middle income IDA
## 5064 Lower middle income IDA
## 5065 Lower middle income IDA
## 5066 Lower middle income IDA
## 5067 Lower middle income IDA
## 5068 Lower middle income IDA
## 5069 Lower middle income IDA
## 5070 Lower middle income IDA
## 5071 Lower middle income IDA
## 5072 Lower middle income IDA
## 5073 Lower middle income IDA
## 5074 Lower middle income IDA
## 5075 Lower middle income IDA
## 5076 Lower middle income IDA
## 5077 Lower middle income IDA
## 5078 Lower middle income IDA
## 5079 Lower middle income IDA
## 5080 Lower middle income IDA
## 5081 Lower middle income IDA
## 5082 Lower middle income IDA
## 5083 Lower middle income IDA
## 5084 Lower middle income IDA
## 5085 High income Not classified
## 5086 High income Not classified
## 5087 High income Not classified
## 5088 High income Not classified
## 5089 High income Not classified
## 5090 High income Not classified
## 5091 High income Not classified
## 5092 High income Not classified
## 5093 High income Not classified
## 5094 High income Not classified
## 5095 High income Not classified
## 5096 High income Not classified
## 5097 High income Not classified
## 5098 High income Not classified
## 5099 High income Not classified
## 5100 High income Not classified
## 5101 High income Not classified
## 5102 High income Not classified
## 5103 High income Not classified
## 5104 High income Not classified
## 5105 High income Not classified
## 5106 High income Not classified
## 5107 High income Not classified
## 5108 High income Not classified
## 5109 High income Not classified
## 5110 High income Not classified
## 5111 High income Not classified
## 5112 High income Not classified
## 5113 High income Not classified
## 5114 High income Not classified
## 5115 High income Not classified
## 5116 High income Not classified
## 5117 High income Not classified
## 5118 High income Not classified
## 5119 High income Not classified
## 5120 High income Not classified
## 5121 High income Not classified
## 5122 High income Not classified
## 5123 High income Not classified
## 5124 High income Not classified
## 5125 High income Not classified
## 5126 High income Not classified
## 5127 High income Not classified
## 5128 High income Not classified
## 5129 High income Not classified
## 5130 High income Not classified
## 5131 High income Not classified
## 5132 High income Not classified
## 5133 High income Not classified
## 5134 High income Not classified
## 5135 High income Not classified
## 5136 High income Not classified
## 5137 High income Not classified
## 5138 High income Not classified
## 5139 High income Not classified
## 5140 High income Not classified
## 5141 High income Not classified
## 5142 High income Not classified
## 5143 High income Not classified
## 5144 High income Not classified
## 5145 High income Not classified
## 5146 High income Not classified
## 5147 Lower middle income IBRD
## 5148 Lower middle income IBRD
## 5149 Lower middle income IBRD
## 5150 Lower middle income IBRD
## 5151 Lower middle income IBRD
## 5152 Lower middle income IBRD
## 5153 Lower middle income IBRD
## 5154 Lower middle income IBRD
## 5155 Lower middle income IBRD
## 5156 Lower middle income IBRD
## 5157 Lower middle income IBRD
## 5158 Lower middle income IBRD
## 5159 Lower middle income IBRD
## 5160 Lower middle income IBRD
## 5161 Lower middle income IBRD
## 5162 Lower middle income IBRD
## 5163 Lower middle income IBRD
## 5164 Lower middle income IBRD
## 5165 Lower middle income IBRD
## 5166 Lower middle income IBRD
## 5167 Lower middle income IBRD
## 5168 Lower middle income IBRD
## 5169 Lower middle income IBRD
## 5170 Lower middle income IBRD
## 5171 Lower middle income IBRD
## 5172 Lower middle income IBRD
## 5173 Lower middle income IBRD
## 5174 Lower middle income IBRD
## 5175 Lower middle income IBRD
## 5176 Lower middle income IBRD
## 5177 Lower middle income IBRD
## 5178 Lower middle income IBRD
## 5179 Lower middle income IBRD
## 5180 Lower middle income IBRD
## 5181 Lower middle income IBRD
## 5182 Lower middle income IBRD
## 5183 Lower middle income IBRD
## 5184 Lower middle income IBRD
## 5185 Lower middle income IBRD
## 5186 Lower middle income IBRD
## 5187 Lower middle income IBRD
## 5188 Lower middle income IBRD
## 5189 Lower middle income IBRD
## 5190 Lower middle income IBRD
## 5191 Lower middle income IBRD
## 5192 Lower middle income IBRD
## 5193 Lower middle income IBRD
## 5194 Lower middle income IBRD
## 5195 Lower middle income IBRD
## 5196 Lower middle income IBRD
## 5197 Lower middle income IBRD
## 5198 Lower middle income IBRD
## 5199 Lower middle income IBRD
## 5200 Lower middle income IBRD
## 5201 Lower middle income IBRD
## 5202 Lower middle income IBRD
## 5203 Lower middle income IBRD
## 5204 Lower middle income IBRD
## 5205 Lower middle income IBRD
## 5206 Lower middle income IBRD
## 5207 Lower middle income IBRD
## 5208 Lower middle income IBRD
## 5209 High income Not classified
## 5210 High income Not classified
## 5211 High income Not classified
## 5212 High income Not classified
## 5213 High income Not classified
## 5214 High income Not classified
## 5215 High income Not classified
## 5216 High income Not classified
## 5217 High income Not classified
## 5218 High income Not classified
## 5219 High income Not classified
## 5220 High income Not classified
## 5221 High income Not classified
## 5222 High income Not classified
## 5223 High income Not classified
## 5224 High income Not classified
## 5225 High income Not classified
## 5226 High income Not classified
## 5227 High income Not classified
## 5228 High income Not classified
## 5229 High income Not classified
## 5230 High income Not classified
## 5231 High income Not classified
## 5232 High income Not classified
## 5233 High income Not classified
## 5234 High income Not classified
## 5235 High income Not classified
## 5236 High income Not classified
## 5237 High income Not classified
## 5238 High income Not classified
## 5239 High income Not classified
## 5240 High income Not classified
## 5241 High income Not classified
## 5242 High income Not classified
## 5243 High income Not classified
## 5244 High income Not classified
## 5245 High income Not classified
## 5246 High income Not classified
## 5247 High income Not classified
## 5248 High income Not classified
## 5249 High income Not classified
## 5250 High income Not classified
## 5251 High income Not classified
## 5252 High income Not classified
## 5253 High income Not classified
## 5254 High income Not classified
## 5255 High income Not classified
## 5256 High income Not classified
## 5257 High income Not classified
## 5258 High income Not classified
## 5259 High income Not classified
## 5260 High income Not classified
## 5261 High income Not classified
## 5262 High income Not classified
## 5263 High income Not classified
## 5264 High income Not classified
## 5265 High income Not classified
## 5266 High income Not classified
## 5267 High income Not classified
## 5268 High income Not classified
## 5269 High income Not classified
## 5270 High income Not classified
## 5271 High income Not classified
## 5272 High income Not classified
## 5273 High income Not classified
## 5274 High income Not classified
## 5275 High income Not classified
## 5276 High income Not classified
## 5277 High income Not classified
## 5278 High income Not classified
## 5279 High income Not classified
## 5280 High income Not classified
## 5281 High income Not classified
## 5282 High income Not classified
## 5283 High income Not classified
## 5284 High income Not classified
## 5285 High income Not classified
## 5286 High income Not classified
## 5287 High income Not classified
## 5288 High income Not classified
## 5289 High income Not classified
## 5290 High income Not classified
## 5291 High income Not classified
## 5292 High income Not classified
## 5293 High income Not classified
## 5294 High income Not classified
## 5295 High income Not classified
## 5296 High income Not classified
## 5297 High income Not classified
## 5298 High income Not classified
## 5299 High income Not classified
## 5300 High income Not classified
## 5301 High income Not classified
## 5302 High income Not classified
## 5303 High income Not classified
## 5304 High income Not classified
## 5305 High income Not classified
## 5306 High income Not classified
## 5307 High income Not classified
## 5308 High income Not classified
## 5309 High income Not classified
## 5310 High income Not classified
## 5311 High income Not classified
## 5312 High income Not classified
## 5313 High income Not classified
## 5314 High income Not classified
## 5315 High income Not classified
## 5316 High income Not classified
## 5317 High income Not classified
## 5318 High income Not classified
## 5319 High income Not classified
## 5320 High income Not classified
## 5321 High income Not classified
## 5322 High income Not classified
## 5323 High income Not classified
## 5324 High income Not classified
## 5325 High income Not classified
## 5326 High income Not classified
## 5327 High income Not classified
## 5328 High income Not classified
## 5329 High income Not classified
## 5330 High income Not classified
## 5331 High income Not classified
## 5332 High income Not classified
## 5333 High income Not classified
## 5334 High income Not classified
## 5335 High income Not classified
## 5336 High income Not classified
## 5337 High income Not classified
## 5338 High income Not classified
## 5339 High income Not classified
## 5340 High income Not classified
## 5341 High income Not classified
## 5342 High income Not classified
## 5343 High income Not classified
## 5344 High income Not classified
## 5345 High income Not classified
## 5346 High income Not classified
## 5347 High income Not classified
## 5348 High income Not classified
## 5349 High income Not classified
## 5350 High income Not classified
## 5351 High income Not classified
## 5352 High income Not classified
## 5353 High income Not classified
## 5354 High income Not classified
## 5355 High income Not classified
## 5356 High income Not classified
## 5357 High income Not classified
## 5358 High income Not classified
## 5359 High income Not classified
## 5360 High income Not classified
## 5361 High income Not classified
## 5362 High income Not classified
## 5363 High income Not classified
## 5364 High income Not classified
## 5365 High income Not classified
## 5366 High income Not classified
## 5367 High income Not classified
## 5368 High income Not classified
## 5369 High income Not classified
## 5370 High income Not classified
## 5371 High income Not classified
## 5372 High income Not classified
## 5373 High income Not classified
## 5374 High income Not classified
## 5375 High income Not classified
## 5376 High income Not classified
## 5377 High income Not classified
## 5378 High income Not classified
## 5379 High income Not classified
## 5380 High income Not classified
## 5381 High income Not classified
## 5382 High income Not classified
## 5383 High income Not classified
## 5384 High income Not classified
## 5385 High income Not classified
## 5386 High income Not classified
## 5387 High income Not classified
## 5388 High income Not classified
## 5389 High income Not classified
## 5390 High income Not classified
## 5391 High income Not classified
## 5392 High income Not classified
## 5393 High income Not classified
## 5394 High income Not classified
## 5395 Lower middle income IBRD
## 5396 Lower middle income IBRD
## 5397 Lower middle income IBRD
## 5398 Lower middle income IBRD
## 5399 Lower middle income IBRD
## 5400 Lower middle income IBRD
## 5401 Lower middle income IBRD
## 5402 Lower middle income IBRD
## 5403 Lower middle income IBRD
## 5404 Lower middle income IBRD
## 5405 Lower middle income IBRD
## 5406 Lower middle income IBRD
## 5407 Lower middle income IBRD
## 5408 Lower middle income IBRD
## 5409 Lower middle income IBRD
## 5410 Lower middle income IBRD
## 5411 Lower middle income IBRD
## 5412 Lower middle income IBRD
## 5413 Lower middle income IBRD
## 5414 Lower middle income IBRD
## 5415 Lower middle income IBRD
## 5416 Lower middle income IBRD
## 5417 Lower middle income IBRD
## 5418 Lower middle income IBRD
## 5419 Lower middle income IBRD
## 5420 Lower middle income IBRD
## 5421 Lower middle income IBRD
## 5422 Lower middle income IBRD
## 5423 Lower middle income IBRD
## 5424 Lower middle income IBRD
## 5425 Lower middle income IBRD
## 5426 Lower middle income IBRD
## 5427 Lower middle income IBRD
## 5428 Lower middle income IBRD
## 5429 Lower middle income IBRD
## 5430 Lower middle income IBRD
## 5431 Lower middle income IBRD
## 5432 Lower middle income IBRD
## 5433 Lower middle income IBRD
## 5434 Lower middle income IBRD
## 5435 Lower middle income IBRD
## 5436 Lower middle income IBRD
## 5437 Lower middle income IBRD
## 5438 Lower middle income IBRD
## 5439 Lower middle income IBRD
## 5440 Lower middle income IBRD
## 5441 Lower middle income IBRD
## 5442 Lower middle income IBRD
## 5443 Lower middle income IBRD
## 5444 Lower middle income IBRD
## 5445 Lower middle income IBRD
## 5446 Lower middle income IBRD
## 5447 Lower middle income IBRD
## 5448 Lower middle income IBRD
## 5449 Lower middle income IBRD
## 5450 Lower middle income IBRD
## 5451 Lower middle income IBRD
## 5452 Lower middle income IBRD
## 5453 Lower middle income IBRD
## 5454 Lower middle income IBRD
## 5455 Lower middle income IBRD
## 5456 Lower middle income IBRD
## 5457 Upper middle income IBRD
## 5458 Upper middle income IBRD
## 5459 Upper middle income IBRD
## 5460 Upper middle income IBRD
## 5461 Upper middle income IBRD
## 5462 Upper middle income IBRD
## 5463 Upper middle income IBRD
## 5464 Upper middle income IBRD
## 5465 Upper middle income IBRD
## 5466 Upper middle income IBRD
## 5467 Upper middle income IBRD
## 5468 Upper middle income IBRD
## 5469 Upper middle income IBRD
## 5470 Upper middle income IBRD
## 5471 Upper middle income IBRD
## 5472 Upper middle income IBRD
## 5473 Upper middle income IBRD
## 5474 Upper middle income IBRD
## 5475 Upper middle income IBRD
## 5476 Upper middle income IBRD
## 5477 Upper middle income IBRD
## 5478 Upper middle income IBRD
## 5479 Upper middle income IBRD
## 5480 Upper middle income IBRD
## 5481 Upper middle income IBRD
## 5482 Upper middle income IBRD
## 5483 Upper middle income IBRD
## 5484 Upper middle income IBRD
## 5485 Upper middle income IBRD
## 5486 Upper middle income IBRD
## 5487 Upper middle income IBRD
## 5488 Upper middle income IBRD
## 5489 Upper middle income IBRD
## 5490 Upper middle income IBRD
## 5491 Upper middle income IBRD
## 5492 Upper middle income IBRD
## 5493 Upper middle income IBRD
## 5494 Upper middle income IBRD
## 5495 Upper middle income IBRD
## 5496 Upper middle income IBRD
## 5497 Upper middle income IBRD
## 5498 Upper middle income IBRD
## 5499 Upper middle income IBRD
## 5500 Upper middle income IBRD
## 5501 Upper middle income IBRD
## 5502 Upper middle income IBRD
## 5503 Upper middle income IBRD
## 5504 Upper middle income IBRD
## 5505 Upper middle income IBRD
## 5506 Upper middle income IBRD
## 5507 Upper middle income IBRD
## 5508 Upper middle income IBRD
## 5509 Upper middle income IBRD
## 5510 Upper middle income IBRD
## 5511 Upper middle income IBRD
## 5512 Upper middle income IBRD
## 5513 Upper middle income IBRD
## 5514 Upper middle income IBRD
## 5515 Upper middle income IBRD
## 5516 Upper middle income IBRD
## 5517 Upper middle income IBRD
## 5518 Upper middle income IBRD
## 5519 Lower middle income IBRD
## 5520 Lower middle income IBRD
## 5521 Lower middle income IBRD
## 5522 Lower middle income IBRD
## 5523 Lower middle income IBRD
## 5524 Lower middle income IBRD
## 5525 Lower middle income IBRD
## 5526 Lower middle income IBRD
## 5527 Lower middle income IBRD
## 5528 Lower middle income IBRD
## 5529 Lower middle income IBRD
## 5530 Lower middle income IBRD
## 5531 Lower middle income IBRD
## 5532 Lower middle income IBRD
## 5533 Lower middle income IBRD
## 5534 Lower middle income IBRD
## 5535 Lower middle income IBRD
## 5536 Lower middle income IBRD
## 5537 Lower middle income IBRD
## 5538 Lower middle income IBRD
## 5539 Lower middle income IBRD
## 5540 Lower middle income IBRD
## 5541 Lower middle income IBRD
## 5542 Lower middle income IBRD
## 5543 Lower middle income IBRD
## 5544 Lower middle income IBRD
## 5545 Lower middle income IBRD
## 5546 Lower middle income IBRD
## 5547 Lower middle income IBRD
## 5548 Lower middle income IBRD
## 5549 Lower middle income IBRD
## 5550 Lower middle income IBRD
## 5551 Lower middle income IBRD
## 5552 Lower middle income IBRD
## 5553 Lower middle income IBRD
## 5554 Lower middle income IBRD
## 5555 Lower middle income IBRD
## 5556 Lower middle income IBRD
## 5557 Lower middle income IBRD
## 5558 Lower middle income IBRD
## 5559 Lower middle income IBRD
## 5560 Lower middle income IBRD
## 5561 Lower middle income IBRD
## 5562 Lower middle income IBRD
## 5563 Lower middle income IBRD
## 5564 Lower middle income IBRD
## 5565 Lower middle income IBRD
## 5566 Lower middle income IBRD
## 5567 Lower middle income IBRD
## 5568 Lower middle income IBRD
## 5569 Lower middle income IBRD
## 5570 Lower middle income IBRD
## 5571 Lower middle income IBRD
## 5572 Lower middle income IBRD
## 5573 Lower middle income IBRD
## 5574 Lower middle income IBRD
## 5575 Lower middle income IBRD
## 5576 Lower middle income IBRD
## 5577 Lower middle income IBRD
## 5578 Lower middle income IBRD
## 5579 Lower middle income IBRD
## 5580 Lower middle income IBRD
## 5581 High income Not classified
## 5582 High income Not classified
## 5583 High income Not classified
## 5584 High income Not classified
## 5585 High income Not classified
## 5586 High income Not classified
## 5587 High income Not classified
## 5588 High income Not classified
## 5589 High income Not classified
## 5590 High income Not classified
## 5591 High income Not classified
## 5592 High income Not classified
## 5593 High income Not classified
## 5594 High income Not classified
## 5595 High income Not classified
## 5596 High income Not classified
## 5597 High income Not classified
## 5598 High income Not classified
## 5599 High income Not classified
## 5600 High income Not classified
## 5601 High income Not classified
## 5602 High income Not classified
## 5603 High income Not classified
## 5604 High income Not classified
## 5605 High income Not classified
## 5606 High income Not classified
## 5607 High income Not classified
## 5608 High income Not classified
## 5609 High income Not classified
## 5610 High income Not classified
## 5611 High income Not classified
## 5612 High income Not classified
## 5613 High income Not classified
## 5614 High income Not classified
## 5615 High income Not classified
## 5616 High income Not classified
## 5617 High income Not classified
## 5618 High income Not classified
## 5619 High income Not classified
## 5620 High income Not classified
## 5621 High income Not classified
## 5622 High income Not classified
## 5623 High income Not classified
## 5624 High income Not classified
## 5625 High income Not classified
## 5626 High income Not classified
## 5627 High income Not classified
## 5628 High income Not classified
## 5629 High income Not classified
## 5630 High income Not classified
## 5631 High income Not classified
## 5632 High income Not classified
## 5633 High income Not classified
## 5634 High income Not classified
## 5635 High income Not classified
## 5636 High income Not classified
## 5637 High income Not classified
## 5638 High income Not classified
## 5639 High income Not classified
## 5640 High income Not classified
## 5641 High income Not classified
## 5642 High income Not classified
## 5643 High income Not classified
## 5644 High income Not classified
## 5645 High income Not classified
## 5646 High income Not classified
## 5647 High income Not classified
## 5648 High income Not classified
## 5649 High income Not classified
## 5650 High income Not classified
## 5651 High income Not classified
## 5652 High income Not classified
## 5653 High income Not classified
## 5654 High income Not classified
## 5655 High income Not classified
## 5656 High income Not classified
## 5657 High income Not classified
## 5658 High income Not classified
## 5659 High income Not classified
## 5660 High income Not classified
## 5661 High income Not classified
## 5662 High income Not classified
## 5663 High income Not classified
## 5664 High income Not classified
## 5665 High income Not classified
## 5666 High income Not classified
## 5667 High income Not classified
## 5668 High income Not classified
## 5669 High income Not classified
## 5670 High income Not classified
## 5671 High income Not classified
## 5672 High income Not classified
## 5673 High income Not classified
## 5674 High income Not classified
## 5675 High income Not classified
## 5676 High income Not classified
## 5677 High income Not classified
## 5678 High income Not classified
## 5679 High income Not classified
## 5680 High income Not classified
## 5681 High income Not classified
## 5682 High income Not classified
## 5683 High income Not classified
## 5684 High income Not classified
## 5685 High income Not classified
## 5686 High income Not classified
## 5687 High income Not classified
## 5688 High income Not classified
## 5689 High income Not classified
## 5690 High income Not classified
## 5691 High income Not classified
## 5692 High income Not classified
## 5693 High income Not classified
## 5694 High income Not classified
## 5695 High income Not classified
## 5696 High income Not classified
## 5697 High income Not classified
## 5698 High income Not classified
## 5699 High income Not classified
## 5700 High income Not classified
## 5701 High income Not classified
## 5702 High income Not classified
## 5703 High income Not classified
## 5704 High income Not classified
## 5705 High income Not classified
## 5706 High income Not classified
## 5707 High income Not classified
## 5708 High income Not classified
## 5709 High income Not classified
## 5710 High income Not classified
## 5711 High income Not classified
## 5712 High income Not classified
## 5713 High income Not classified
## 5714 High income Not classified
## 5715 High income Not classified
## 5716 High income Not classified
## 5717 High income Not classified
## 5718 High income Not classified
## 5719 High income Not classified
## 5720 High income Not classified
## 5721 High income Not classified
## 5722 High income Not classified
## 5723 High income Not classified
## 5724 High income Not classified
## 5725 High income Not classified
## 5726 High income Not classified
## 5727 High income Not classified
## 5728 High income Not classified
## 5729 High income Not classified
## 5730 High income Not classified
## 5731 High income Not classified
## 5732 High income Not classified
## 5733 High income Not classified
## 5734 High income Not classified
## 5735 High income Not classified
## 5736 High income Not classified
## 5737 High income Not classified
## 5738 High income Not classified
## 5739 High income Not classified
## 5740 High income Not classified
## 5741 High income Not classified
## 5742 High income Not classified
## 5743 High income Not classified
## 5744 High income Not classified
## 5745 High income Not classified
## 5746 High income Not classified
## 5747 High income Not classified
## 5748 High income Not classified
## 5749 High income Not classified
## 5750 High income Not classified
## 5751 High income Not classified
## 5752 High income Not classified
## 5753 High income Not classified
## 5754 High income Not classified
## 5755 High income Not classified
## 5756 High income Not classified
## 5757 High income Not classified
## 5758 High income Not classified
## 5759 High income Not classified
## 5760 High income Not classified
## 5761 High income Not classified
## 5762 High income Not classified
## 5763 High income Not classified
## 5764 High income Not classified
## 5765 High income Not classified
## 5766 High income Not classified
## 5767 Upper middle income IBRD
## 5768 Upper middle income IBRD
## 5769 Upper middle income IBRD
## 5770 Upper middle income IBRD
## 5771 Upper middle income IBRD
## 5772 Upper middle income IBRD
## 5773 Upper middle income IBRD
## 5774 Upper middle income IBRD
## 5775 Upper middle income IBRD
## 5776 Upper middle income IBRD
## 5777 Upper middle income IBRD
## 5778 Upper middle income IBRD
## 5779 Upper middle income IBRD
## 5780 Upper middle income IBRD
## 5781 Upper middle income IBRD
## 5782 Upper middle income IBRD
## 5783 Upper middle income IBRD
## 5784 Upper middle income IBRD
## 5785 Upper middle income IBRD
## 5786 Upper middle income IBRD
## 5787 Upper middle income IBRD
## 5788 Upper middle income IBRD
## 5789 Upper middle income IBRD
## 5790 Upper middle income IBRD
## 5791 Upper middle income IBRD
## 5792 Upper middle income IBRD
## 5793 Upper middle income IBRD
## 5794 Upper middle income IBRD
## 5795 Upper middle income IBRD
## 5796 Upper middle income IBRD
## 5797 Upper middle income IBRD
## 5798 Upper middle income IBRD
## 5799 Upper middle income IBRD
## 5800 Upper middle income IBRD
## 5801 Upper middle income IBRD
## 5802 Upper middle income IBRD
## 5803 Upper middle income IBRD
## 5804 Upper middle income IBRD
## 5805 Upper middle income IBRD
## 5806 Upper middle income IBRD
## 5807 Upper middle income IBRD
## 5808 Upper middle income IBRD
## 5809 Upper middle income IBRD
## 5810 Upper middle income IBRD
## 5811 Upper middle income IBRD
## 5812 Upper middle income IBRD
## 5813 Upper middle income IBRD
## 5814 Upper middle income IBRD
## 5815 Upper middle income IBRD
## 5816 Upper middle income IBRD
## 5817 Upper middle income IBRD
## 5818 Upper middle income IBRD
## 5819 Upper middle income IBRD
## 5820 Upper middle income IBRD
## 5821 Upper middle income IBRD
## 5822 Upper middle income IBRD
## 5823 Upper middle income IBRD
## 5824 Upper middle income IBRD
## 5825 Upper middle income IBRD
## 5826 Upper middle income IBRD
## 5827 Upper middle income IBRD
## 5828 Upper middle income IBRD
## 5829 Upper middle income IBRD
## 5830 Upper middle income IBRD
## 5831 Upper middle income IBRD
## 5832 Upper middle income IBRD
## 5833 Upper middle income IBRD
## 5834 Upper middle income IBRD
## 5835 Upper middle income IBRD
## 5836 Upper middle income IBRD
## 5837 Upper middle income IBRD
## 5838 Upper middle income IBRD
## 5839 Upper middle income IBRD
## 5840 Upper middle income IBRD
## 5841 Upper middle income IBRD
## 5842 Upper middle income IBRD
## 5843 Upper middle income IBRD
## 5844 Upper middle income IBRD
## 5845 Upper middle income IBRD
## 5846 Upper middle income IBRD
## 5847 Upper middle income IBRD
## 5848 Upper middle income IBRD
## 5849 Upper middle income IBRD
## 5850 Upper middle income IBRD
## 5851 Upper middle income IBRD
## 5852 Upper middle income IBRD
## 5853 Upper middle income IBRD
## 5854 Upper middle income IBRD
## 5855 Upper middle income IBRD
## 5856 Upper middle income IBRD
## 5857 Upper middle income IBRD
## 5858 Upper middle income IBRD
## 5859 Upper middle income IBRD
## 5860 Upper middle income IBRD
## 5861 Upper middle income IBRD
## 5862 Upper middle income IBRD
## 5863 Upper middle income IBRD
## 5864 Upper middle income IBRD
## 5865 Upper middle income IBRD
## 5866 Upper middle income IBRD
## 5867 Upper middle income IBRD
## 5868 Upper middle income IBRD
## 5869 Upper middle income IBRD
## 5870 Upper middle income IBRD
## 5871 Upper middle income IBRD
## 5872 Upper middle income IBRD
## 5873 Upper middle income IBRD
## 5874 Upper middle income IBRD
## 5875 Upper middle income IBRD
## 5876 Upper middle income IBRD
## 5877 Upper middle income IBRD
## 5878 Upper middle income IBRD
## 5879 Upper middle income IBRD
## 5880 Upper middle income IBRD
## 5881 Upper middle income IBRD
## 5882 Upper middle income IBRD
## 5883 Upper middle income IBRD
## 5884 Upper middle income IBRD
## 5885 Upper middle income IBRD
## 5886 Upper middle income IBRD
## 5887 Upper middle income IBRD
## 5888 Upper middle income IBRD
## 5889 Upper middle income IBRD
## 5890 Upper middle income IBRD
## 5891 High income Not classified
## 5892 High income Not classified
## 5893 High income Not classified
## 5894 High income Not classified
## 5895 High income Not classified
## 5896 High income Not classified
## 5897 High income Not classified
## 5898 High income Not classified
## 5899 High income Not classified
## 5900 High income Not classified
## 5901 High income Not classified
## 5902 High income Not classified
## 5903 High income Not classified
## 5904 High income Not classified
## 5905 High income Not classified
## 5906 High income Not classified
## 5907 High income Not classified
## 5908 High income Not classified
## 5909 High income Not classified
## 5910 High income Not classified
## 5911 High income Not classified
## 5912 High income Not classified
## 5913 High income Not classified
## 5914 High income Not classified
## 5915 High income Not classified
## 5916 High income Not classified
## 5917 High income Not classified
## 5918 High income Not classified
## 5919 High income Not classified
## 5920 High income Not classified
## 5921 High income Not classified
## 5922 High income Not classified
## 5923 High income Not classified
## 5924 High income Not classified
## 5925 High income Not classified
## 5926 High income Not classified
## 5927 High income Not classified
## 5928 High income Not classified
## 5929 High income Not classified
## 5930 High income Not classified
## 5931 High income Not classified
## 5932 High income Not classified
## 5933 High income Not classified
## 5934 High income Not classified
## 5935 High income Not classified
## 5936 High income Not classified
## 5937 High income Not classified
## 5938 High income Not classified
## 5939 High income Not classified
## 5940 High income Not classified
## 5941 High income Not classified
## 5942 High income Not classified
## 5943 High income Not classified
## 5944 High income Not classified
## 5945 High income Not classified
## 5946 High income Not classified
## 5947 High income Not classified
## 5948 High income Not classified
## 5949 High income Not classified
## 5950 High income Not classified
## 5951 High income Not classified
## 5952 High income Not classified
## 5953 Lower middle income Blend
## 5954 Lower middle income Blend
## 5955 Lower middle income Blend
## 5956 Lower middle income Blend
## 5957 Lower middle income Blend
## 5958 Lower middle income Blend
## 5959 Lower middle income Blend
## 5960 Lower middle income Blend
## 5961 Lower middle income Blend
## 5962 Lower middle income Blend
## 5963 Lower middle income Blend
## 5964 Lower middle income Blend
## 5965 Lower middle income Blend
## 5966 Lower middle income Blend
## 5967 Lower middle income Blend
## 5968 Lower middle income Blend
## 5969 Lower middle income Blend
## 5970 Lower middle income Blend
## 5971 Lower middle income Blend
## 5972 Lower middle income Blend
## 5973 Lower middle income Blend
## 5974 Lower middle income Blend
## 5975 Lower middle income Blend
## 5976 Lower middle income Blend
## 5977 Lower middle income Blend
## 5978 Lower middle income Blend
## 5979 Lower middle income Blend
## 5980 Lower middle income Blend
## 5981 Lower middle income Blend
## 5982 Lower middle income Blend
## 5983 Lower middle income Blend
## 5984 Lower middle income Blend
## 5985 Lower middle income Blend
## 5986 Lower middle income Blend
## 5987 Lower middle income Blend
## 5988 Lower middle income Blend
## 5989 Lower middle income Blend
## 5990 Lower middle income Blend
## 5991 Lower middle income Blend
## 5992 Lower middle income Blend
## 5993 Lower middle income Blend
## 5994 Lower middle income Blend
## 5995 Lower middle income Blend
## 5996 Lower middle income Blend
## 5997 Lower middle income Blend
## 5998 Lower middle income Blend
## 5999 Lower middle income Blend
## 6000 Lower middle income Blend
## 6001 Lower middle income Blend
## 6002 Lower middle income Blend
## 6003 Lower middle income Blend
## 6004 Lower middle income Blend
## 6005 Lower middle income Blend
## 6006 Lower middle income Blend
## 6007 Lower middle income Blend
## 6008 Lower middle income Blend
## 6009 Lower middle income Blend
## 6010 Lower middle income Blend
## 6011 Lower middle income Blend
## 6012 Lower middle income Blend
## 6013 Lower middle income Blend
## 6014 Lower middle income Blend
## 6015 Lower middle income IDA
## 6016 Lower middle income IDA
## 6017 Lower middle income IDA
## 6018 Lower middle income IDA
## 6019 Lower middle income IDA
## 6020 Lower middle income IDA
## 6021 Lower middle income IDA
## 6022 Lower middle income IDA
## 6023 Lower middle income IDA
## 6024 Lower middle income IDA
## 6025 Lower middle income IDA
## 6026 Lower middle income IDA
## 6027 Lower middle income IDA
## 6028 Lower middle income IDA
## 6029 Lower middle income IDA
## 6030 Lower middle income IDA
## 6031 Lower middle income IDA
## 6032 Lower middle income IDA
## 6033 Lower middle income IDA
## 6034 Lower middle income IDA
## 6035 Lower middle income IDA
## 6036 Lower middle income IDA
## 6037 Lower middle income IDA
## 6038 Lower middle income IDA
## 6039 Lower middle income IDA
## 6040 Lower middle income IDA
## 6041 Lower middle income IDA
## 6042 Lower middle income IDA
## 6043 Lower middle income IDA
## 6044 Lower middle income IDA
## 6045 Lower middle income IDA
## 6046 Lower middle income IDA
## 6047 Lower middle income IDA
## 6048 Lower middle income IDA
## 6049 Lower middle income IDA
## 6050 Lower middle income IDA
## 6051 Lower middle income IDA
## 6052 Lower middle income IDA
## 6053 Lower middle income IDA
## 6054 Lower middle income IDA
## 6055 Lower middle income IDA
## 6056 Lower middle income IDA
## 6057 Lower middle income IDA
## 6058 Lower middle income IDA
## 6059 Lower middle income IDA
## 6060 Lower middle income IDA
## 6061 Lower middle income IDA
## 6062 Lower middle income IDA
## 6063 Lower middle income IDA
## 6064 Lower middle income IDA
## 6065 Lower middle income IDA
## 6066 Lower middle income IDA
## 6067 Lower middle income IDA
## 6068 Lower middle income IDA
## 6069 Lower middle income IDA
## 6070 Lower middle income IDA
## 6071 Lower middle income IDA
## 6072 Lower middle income IDA
## 6073 Lower middle income IDA
## 6074 Lower middle income IDA
## 6075 Lower middle income IDA
## 6076 Lower middle income IDA
## 6077 Lower middle income IDA
## 6078 Lower middle income IDA
## 6079 Lower middle income IDA
## 6080 Lower middle income IDA
## 6081 Lower middle income IDA
## 6082 Lower middle income IDA
## 6083 Lower middle income IDA
## 6084 Lower middle income IDA
## 6085 Lower middle income IDA
## 6086 Lower middle income IDA
## 6087 Lower middle income IDA
## 6088 Lower middle income IDA
## 6089 Lower middle income IDA
## 6090 Lower middle income IDA
## 6091 Lower middle income IDA
## 6092 Lower middle income IDA
## 6093 Lower middle income IDA
## 6094 Lower middle income IDA
## 6095 Lower middle income IDA
## 6096 Lower middle income IDA
## 6097 Lower middle income IDA
## 6098 Lower middle income IDA
## 6099 Lower middle income IDA
## 6100 Lower middle income IDA
## 6101 Lower middle income IDA
## 6102 Lower middle income IDA
## 6103 Lower middle income IDA
## 6104 Lower middle income IDA
## 6105 Lower middle income IDA
## 6106 Lower middle income IDA
## 6107 Lower middle income IDA
## 6108 Lower middle income IDA
## 6109 Lower middle income IDA
## 6110 Lower middle income IDA
## 6111 Lower middle income IDA
## 6112 Lower middle income IDA
## 6113 Lower middle income IDA
## 6114 Lower middle income IDA
## 6115 Lower middle income IDA
## 6116 Lower middle income IDA
## 6117 Lower middle income IDA
## 6118 Lower middle income IDA
## 6119 Lower middle income IDA
## 6120 Lower middle income IDA
## 6121 Lower middle income IDA
## 6122 Lower middle income IDA
## 6123 Lower middle income IDA
## 6124 Lower middle income IDA
## 6125 Lower middle income IDA
## 6126 Lower middle income IDA
## 6127 Lower middle income IDA
## 6128 Lower middle income IDA
## 6129 Lower middle income IDA
## 6130 Lower middle income IDA
## 6131 Lower middle income IDA
## 6132 Lower middle income IDA
## 6133 Lower middle income IDA
## 6134 Lower middle income IDA
## 6135 Lower middle income IDA
## 6136 Lower middle income IDA
## 6137 Lower middle income IDA
## 6138 Lower middle income IDA
## 6139 Lower middle income IDA
## 6140 Lower middle income IDA
## 6141 Lower middle income IDA
## 6142 Lower middle income IDA
## 6143 Lower middle income IDA
## 6144 Lower middle income IDA
## 6145 Lower middle income IDA
## 6146 Lower middle income IDA
## 6147 Lower middle income IDA
## 6148 Lower middle income IDA
## 6149 Lower middle income IDA
## 6150 Lower middle income IDA
## 6151 Lower middle income IDA
## 6152 Lower middle income IDA
## 6153 Lower middle income IDA
## 6154 Lower middle income IDA
## 6155 Lower middle income IDA
## 6156 Lower middle income IDA
## 6157 Lower middle income IDA
## 6158 Lower middle income IDA
## 6159 Lower middle income IDA
## 6160 Lower middle income IDA
## 6161 Lower middle income IDA
## 6162 Lower middle income IDA
## 6163 Lower middle income IDA
## 6164 Lower middle income IDA
## 6165 Lower middle income IDA
## 6166 Lower middle income IDA
## 6167 Lower middle income IDA
## 6168 Lower middle income IDA
## 6169 Lower middle income IDA
## 6170 Lower middle income IDA
## 6171 Lower middle income IDA
## 6172 Lower middle income IDA
## 6173 Lower middle income IDA
## 6174 Lower middle income IDA
## 6175 Lower middle income IDA
## 6176 Lower middle income IDA
## 6177 Lower middle income IDA
## 6178 Lower middle income IDA
## 6179 Lower middle income IDA
## 6180 Lower middle income IDA
## 6181 Lower middle income IDA
## 6182 Lower middle income IDA
## 6183 Lower middle income IDA
## 6184 Lower middle income IDA
## 6185 Lower middle income IDA
## 6186 Lower middle income IDA
## 6187 Lower middle income IDA
## 6188 Lower middle income IDA
## 6189 Lower middle income IDA
## 6190 Lower middle income IDA
## 6191 Lower middle income IDA
## 6192 Lower middle income IDA
## 6193 Lower middle income IDA
## 6194 Lower middle income IDA
## 6195 Lower middle income IDA
## 6196 Lower middle income IDA
## 6197 Lower middle income IDA
## 6198 Lower middle income IDA
## 6199 Lower middle income IDA
## 6200 Lower middle income IDA
## 6201 Lower middle income IDA
## 6202 Lower middle income IDA
## 6203 Lower middle income IDA
## 6204 Lower middle income IDA
## 6205 Lower middle income IDA
## 6206 Lower middle income IDA
## 6207 Lower middle income IDA
## 6208 Lower middle income IDA
## 6209 Lower middle income IDA
## 6210 Lower middle income IDA
## 6211 Lower middle income IDA
## 6212 Lower middle income IDA
## 6213 Lower middle income IDA
## 6214 Lower middle income IDA
## 6215 Lower middle income IDA
## 6216 Lower middle income IDA
## 6217 Lower middle income IDA
## 6218 Lower middle income IDA
## 6219 Lower middle income IDA
## 6220 Lower middle income IDA
## 6221 Lower middle income IDA
## 6222 Lower middle income IDA
## 6223 Lower middle income IDA
## 6224 Lower middle income IDA
## 6225 Lower middle income IDA
## 6226 Lower middle income IDA
## 6227 Lower middle income IDA
## 6228 Lower middle income IDA
## 6229 Lower middle income IDA
## 6230 Lower middle income IDA
## 6231 Lower middle income IDA
## 6232 Lower middle income IDA
## 6233 Lower middle income IDA
## 6234 Lower middle income IDA
## 6235 Lower middle income IDA
## 6236 Lower middle income IDA
## 6237 Lower middle income IDA
## 6238 Lower middle income IDA
## 6239 Lower middle income IDA
## 6240 Lower middle income IDA
## 6241 Lower middle income IDA
## 6242 Lower middle income IDA
## 6243 Lower middle income IDA
## 6244 Lower middle income IDA
## 6245 Lower middle income IDA
## 6246 Lower middle income IDA
## 6247 Lower middle income IDA
## 6248 Lower middle income IDA
## 6249 Lower middle income IDA
## 6250 Lower middle income IDA
## 6251 Lower middle income IDA
## 6252 Lower middle income IDA
## 6253 Lower middle income IDA
## 6254 Lower middle income IDA
## 6255 Lower middle income IDA
## 6256 Lower middle income IDA
## 6257 Lower middle income IDA
## 6258 Lower middle income IDA
## 6259 Lower middle income IDA
## 6260 Lower middle income IDA
## 6261 Lower middle income IDA
## 6262 Lower middle income IDA
## 6263 High income IBRD
## 6264 High income IBRD
## 6265 High income IBRD
## 6266 High income IBRD
## 6267 High income IBRD
## 6268 High income IBRD
## 6269 High income IBRD
## 6270 High income IBRD
## 6271 High income IBRD
## 6272 High income IBRD
## 6273 High income IBRD
## 6274 High income IBRD
## 6275 High income IBRD
## 6276 High income IBRD
## 6277 High income IBRD
## 6278 High income IBRD
## 6279 High income IBRD
## 6280 High income IBRD
## 6281 High income IBRD
## 6282 High income IBRD
## 6283 High income IBRD
## 6284 High income IBRD
## 6285 High income IBRD
## 6286 High income IBRD
## 6287 High income IBRD
## 6288 High income IBRD
## 6289 High income IBRD
## 6290 High income IBRD
## 6291 High income IBRD
## 6292 High income IBRD
## 6293 High income IBRD
## 6294 High income IBRD
## 6295 High income IBRD
## 6296 High income IBRD
## 6297 High income IBRD
## 6298 High income IBRD
## 6299 High income IBRD
## 6300 High income IBRD
## 6301 High income IBRD
## 6302 High income IBRD
## 6303 High income IBRD
## 6304 High income IBRD
## 6305 High income IBRD
## 6306 High income IBRD
## 6307 High income IBRD
## 6308 High income IBRD
## 6309 High income IBRD
## 6310 High income IBRD
## 6311 High income IBRD
## 6312 High income IBRD
## 6313 High income IBRD
## 6314 High income IBRD
## 6315 High income IBRD
## 6316 High income IBRD
## 6317 High income IBRD
## 6318 High income IBRD
## 6319 High income IBRD
## 6320 High income IBRD
## 6321 High income IBRD
## 6322 High income IBRD
## 6323 High income IBRD
## 6324 High income IBRD
## 6325 Low income Not classified
## 6326 Low income Not classified
## 6327 Low income Not classified
## 6328 Low income Not classified
## 6329 Low income Not classified
## 6330 Low income Not classified
## 6331 Low income Not classified
## 6332 Low income Not classified
## 6333 Low income Not classified
## 6334 Low income Not classified
## 6335 Low income Not classified
## 6336 Low income Not classified
## 6337 Low income Not classified
## 6338 Low income Not classified
## 6339 Low income Not classified
## 6340 Low income Not classified
## 6341 Low income Not classified
## 6342 Low income Not classified
## 6343 Low income Not classified
## 6344 Low income Not classified
## 6345 Low income Not classified
## 6346 Low income Not classified
## 6347 Low income Not classified
## 6348 Low income Not classified
## 6349 Low income Not classified
## 6350 Low income Not classified
## 6351 Low income Not classified
## 6352 Low income Not classified
## 6353 Low income Not classified
## 6354 Low income Not classified
## 6355 Low income Not classified
## 6356 Low income Not classified
## 6357 Low income Not classified
## 6358 Low income Not classified
## 6359 Low income Not classified
## 6360 Low income Not classified
## 6361 Low income Not classified
## 6362 Low income Not classified
## 6363 Low income Not classified
## 6364 Low income Not classified
## 6365 Low income Not classified
## 6366 Low income Not classified
## 6367 Low income Not classified
## 6368 Low income Not classified
## 6369 Low income Not classified
## 6370 Low income Not classified
## 6371 Low income Not classified
## 6372 Low income Not classified
## 6373 Low income Not classified
## 6374 Low income Not classified
## 6375 Low income Not classified
## 6376 Low income Not classified
## 6377 Low income Not classified
## 6378 Low income Not classified
## 6379 Low income Not classified
## 6380 Low income Not classified
## 6381 Low income Not classified
## 6382 Low income Not classified
## 6383 Low income Not classified
## 6384 Low income Not classified
## 6385 Low income Not classified
## 6386 Low income Not classified
## 6387 High income Not classified
## 6388 High income Not classified
## 6389 High income Not classified
## 6390 High income Not classified
## 6391 High income Not classified
## 6392 High income Not classified
## 6393 High income Not classified
## 6394 High income Not classified
## 6395 High income Not classified
## 6396 High income Not classified
## 6397 High income Not classified
## 6398 High income Not classified
## 6399 High income Not classified
## 6400 High income Not classified
## 6401 High income Not classified
## 6402 High income Not classified
## 6403 High income Not classified
## 6404 High income Not classified
## 6405 High income Not classified
## 6406 High income Not classified
## 6407 High income Not classified
## 6408 High income Not classified
## 6409 High income Not classified
## 6410 High income Not classified
## 6411 High income Not classified
## 6412 High income Not classified
## 6413 High income Not classified
## 6414 High income Not classified
## 6415 High income Not classified
## 6416 High income Not classified
## 6417 High income Not classified
## 6418 High income Not classified
## 6419 High income Not classified
## 6420 High income Not classified
## 6421 High income Not classified
## 6422 High income Not classified
## 6423 High income Not classified
## 6424 High income Not classified
## 6425 High income Not classified
## 6426 High income Not classified
## 6427 High income Not classified
## 6428 High income Not classified
## 6429 High income Not classified
## 6430 High income Not classified
## 6431 High income Not classified
## 6432 High income Not classified
## 6433 High income Not classified
## 6434 High income Not classified
## 6435 High income Not classified
## 6436 High income Not classified
## 6437 High income Not classified
## 6438 High income Not classified
## 6439 High income Not classified
## 6440 High income Not classified
## 6441 High income Not classified
## 6442 High income Not classified
## 6443 High income Not classified
## 6444 High income Not classified
## 6445 High income Not classified
## 6446 High income Not classified
## 6447 High income Not classified
## 6448 High income Not classified
## 6449 High income Not classified
## 6450 High income Not classified
## 6451 High income Not classified
## 6452 High income Not classified
## 6453 High income Not classified
## 6454 High income Not classified
## 6455 High income Not classified
## 6456 High income Not classified
## 6457 High income Not classified
## 6458 High income Not classified
## 6459 High income Not classified
## 6460 High income Not classified
## 6461 High income Not classified
## 6462 High income Not classified
## 6463 High income Not classified
## 6464 High income Not classified
## 6465 High income Not classified
## 6466 High income Not classified
## 6467 High income Not classified
## 6468 High income Not classified
## 6469 High income Not classified
## 6470 High income Not classified
## 6471 High income Not classified
## 6472 High income Not classified
## 6473 High income Not classified
## 6474 High income Not classified
## 6475 High income Not classified
## 6476 High income Not classified
## 6477 High income Not classified
## 6478 High income Not classified
## 6479 High income Not classified
## 6480 High income Not classified
## 6481 High income Not classified
## 6482 High income Not classified
## 6483 High income Not classified
## 6484 High income Not classified
## 6485 High income Not classified
## 6486 High income Not classified
## 6487 High income Not classified
## 6488 High income Not classified
## 6489 High income Not classified
## 6490 High income Not classified
## 6491 High income Not classified
## 6492 High income Not classified
## 6493 High income Not classified
## 6494 High income Not classified
## 6495 High income Not classified
## 6496 High income Not classified
## 6497 High income Not classified
## 6498 High income Not classified
## 6499 High income Not classified
## 6500 High income Not classified
## 6501 High income Not classified
## 6502 High income Not classified
## 6503 High income Not classified
## 6504 High income Not classified
## 6505 High income Not classified
## 6506 High income Not classified
## 6507 High income Not classified
## 6508 High income Not classified
## 6509 High income Not classified
## 6510 High income Not classified
## 6511 High income Not classified
## 6512 High income Not classified
## 6513 High income Not classified
## 6514 High income Not classified
## 6515 High income Not classified
## 6516 High income Not classified
## 6517 High income Not classified
## 6518 High income Not classified
## 6519 High income Not classified
## 6520 High income Not classified
## 6521 High income Not classified
## 6522 High income Not classified
## 6523 High income Not classified
## 6524 High income Not classified
## 6525 High income Not classified
## 6526 High income Not classified
## 6527 High income Not classified
## 6528 High income Not classified
## 6529 High income Not classified
## 6530 High income Not classified
## 6531 High income Not classified
## 6532 High income Not classified
## 6533 High income Not classified
## 6534 High income Not classified
## 6535 High income Not classified
## 6536 High income Not classified
## 6537 High income Not classified
## 6538 High income Not classified
## 6539 High income Not classified
## 6540 High income Not classified
## 6541 High income Not classified
## 6542 High income Not classified
## 6543 High income Not classified
## 6544 High income Not classified
## 6545 High income Not classified
## 6546 High income Not classified
## 6547 High income Not classified
## 6548 High income Not classified
## 6549 High income Not classified
## 6550 High income Not classified
## 6551 High income Not classified
## 6552 High income Not classified
## 6553 High income Not classified
## 6554 High income Not classified
## 6555 High income Not classified
## 6556 High income Not classified
## 6557 High income Not classified
## 6558 High income Not classified
## 6559 High income Not classified
## 6560 High income Not classified
## 6561 High income Not classified
## 6562 High income Not classified
## 6563 High income Not classified
## 6564 High income Not classified
## 6565 High income Not classified
## 6566 High income Not classified
## 6567 High income Not classified
## 6568 High income Not classified
## 6569 High income Not classified
## 6570 High income Not classified
## 6571 High income Not classified
## 6572 High income Not classified
## 6573 Upper middle income IBRD
## 6574 Upper middle income IBRD
## 6575 Upper middle income IBRD
## 6576 Upper middle income IBRD
## 6577 Upper middle income IBRD
## 6578 Upper middle income IBRD
## 6579 Upper middle income IBRD
## 6580 Upper middle income IBRD
## 6581 Upper middle income IBRD
## 6582 Upper middle income IBRD
## 6583 Upper middle income IBRD
## 6584 Upper middle income IBRD
## 6585 Upper middle income IBRD
## 6586 Upper middle income IBRD
## 6587 Upper middle income IBRD
## 6588 Upper middle income IBRD
## 6589 Upper middle income IBRD
## 6590 Upper middle income IBRD
## 6591 Upper middle income IBRD
## 6592 Upper middle income IBRD
## 6593 Upper middle income IBRD
## 6594 Upper middle income IBRD
## 6595 Upper middle income IBRD
## 6596 Upper middle income IBRD
## 6597 Upper middle income IBRD
## 6598 Upper middle income IBRD
## 6599 Upper middle income IBRD
## 6600 Upper middle income IBRD
## 6601 Upper middle income IBRD
## 6602 Upper middle income IBRD
## 6603 Upper middle income IBRD
## 6604 Upper middle income IBRD
## 6605 Upper middle income IBRD
## 6606 Upper middle income IBRD
## 6607 Upper middle income IBRD
## 6608 Upper middle income IBRD
## 6609 Upper middle income IBRD
## 6610 Upper middle income IBRD
## 6611 Upper middle income IBRD
## 6612 Upper middle income IBRD
## 6613 Upper middle income IBRD
## 6614 Upper middle income IBRD
## 6615 Upper middle income IBRD
## 6616 Upper middle income IBRD
## 6617 Upper middle income IBRD
## 6618 Upper middle income IBRD
## 6619 Upper middle income IBRD
## 6620 Upper middle income IBRD
## 6621 Upper middle income IBRD
## 6622 Upper middle income IBRD
## 6623 Upper middle income IBRD
## 6624 Upper middle income IBRD
## 6625 Upper middle income IBRD
## 6626 Upper middle income IBRD
## 6627 Upper middle income IBRD
## 6628 Upper middle income IBRD
## 6629 Upper middle income IBRD
## 6630 Upper middle income IBRD
## 6631 Upper middle income IBRD
## 6632 Upper middle income IBRD
## 6633 Upper middle income IBRD
## 6634 Upper middle income IBRD
## 6635 Lower middle income IDA
## 6636 Lower middle income IDA
## 6637 Lower middle income IDA
## 6638 Lower middle income IDA
## 6639 Lower middle income IDA
## 6640 Lower middle income IDA
## 6641 Lower middle income IDA
## 6642 Lower middle income IDA
## 6643 Lower middle income IDA
## 6644 Lower middle income IDA
## 6645 Lower middle income IDA
## 6646 Lower middle income IDA
## 6647 Lower middle income IDA
## 6648 Lower middle income IDA
## 6649 Lower middle income IDA
## 6650 Lower middle income IDA
## 6651 Lower middle income IDA
## 6652 Lower middle income IDA
## 6653 Lower middle income IDA
## 6654 Lower middle income IDA
## 6655 Lower middle income IDA
## 6656 Lower middle income IDA
## 6657 Lower middle income IDA
## 6658 Lower middle income IDA
## 6659 Lower middle income IDA
## 6660 Lower middle income IDA
## 6661 Lower middle income IDA
## 6662 Lower middle income IDA
## 6663 Lower middle income IDA
## 6664 Lower middle income IDA
## 6665 Lower middle income IDA
## 6666 Lower middle income IDA
## 6667 Lower middle income IDA
## 6668 Lower middle income IDA
## 6669 Lower middle income IDA
## 6670 Lower middle income IDA
## 6671 Lower middle income IDA
## 6672 Lower middle income IDA
## 6673 Lower middle income IDA
## 6674 Lower middle income IDA
## 6675 Lower middle income IDA
## 6676 Lower middle income IDA
## 6677 Lower middle income IDA
## 6678 Lower middle income IDA
## 6679 Lower middle income IDA
## 6680 Lower middle income IDA
## 6681 Lower middle income IDA
## 6682 Lower middle income IDA
## 6683 Lower middle income IDA
## 6684 Lower middle income IDA
## 6685 Lower middle income IDA
## 6686 Lower middle income IDA
## 6687 Lower middle income IDA
## 6688 Lower middle income IDA
## 6689 Lower middle income IDA
## 6690 Lower middle income IDA
## 6691 Lower middle income IDA
## 6692 Lower middle income IDA
## 6693 Lower middle income IDA
## 6694 Lower middle income IDA
## 6695 Lower middle income IDA
## 6696 Lower middle income IDA
## 6697 Lower middle income IBRD
## 6698 Lower middle income IBRD
## 6699 Lower middle income IBRD
## 6700 Lower middle income IBRD
## 6701 Lower middle income IBRD
## 6702 Lower middle income IBRD
## 6703 Lower middle income IBRD
## 6704 Lower middle income IBRD
## 6705 Lower middle income IBRD
## 6706 Lower middle income IBRD
## 6707 Lower middle income IBRD
## 6708 Lower middle income IBRD
## 6709 Lower middle income IBRD
## 6710 Lower middle income IBRD
## 6711 Lower middle income IBRD
## 6712 Lower middle income IBRD
## 6713 Lower middle income IBRD
## 6714 Lower middle income IBRD
## 6715 Lower middle income IBRD
## 6716 Lower middle income IBRD
## 6717 Lower middle income IBRD
## 6718 Lower middle income IBRD
## 6719 Lower middle income IBRD
## 6720 Lower middle income IBRD
## 6721 Lower middle income IBRD
## 6722 Lower middle income IBRD
## 6723 Lower middle income IBRD
## 6724 Lower middle income IBRD
## 6725 Lower middle income IBRD
## 6726 Lower middle income IBRD
## 6727 Lower middle income IBRD
## 6728 Lower middle income IBRD
## 6729 Lower middle income IBRD
## 6730 Lower middle income IBRD
## 6731 Lower middle income IBRD
## 6732 Lower middle income IBRD
## 6733 Lower middle income IBRD
## 6734 Lower middle income IBRD
## 6735 Lower middle income IBRD
## 6736 Lower middle income IBRD
## 6737 Lower middle income IBRD
## 6738 Lower middle income IBRD
## 6739 Lower middle income IBRD
## 6740 Lower middle income IBRD
## 6741 Lower middle income IBRD
## 6742 Lower middle income IBRD
## 6743 Lower middle income IBRD
## 6744 Lower middle income IBRD
## 6745 Lower middle income IBRD
## 6746 Lower middle income IBRD
## 6747 Lower middle income IBRD
## 6748 Lower middle income IBRD
## 6749 Lower middle income IBRD
## 6750 Lower middle income IBRD
## 6751 Lower middle income IBRD
## 6752 Lower middle income IBRD
## 6753 Lower middle income IBRD
## 6754 Lower middle income IBRD
## 6755 Lower middle income IBRD
## 6756 Lower middle income IBRD
## 6757 Lower middle income IBRD
## 6758 Lower middle income IBRD
## 6759 Upper middle income Blend
## 6760 Upper middle income Blend
## 6761 Upper middle income Blend
## 6762 Upper middle income Blend
## 6763 Upper middle income Blend
## 6764 Upper middle income Blend
## 6765 Upper middle income Blend
## 6766 Upper middle income Blend
## 6767 Upper middle income Blend
## 6768 Upper middle income Blend
## 6769 Upper middle income Blend
## 6770 Upper middle income Blend
## 6771 Upper middle income Blend
## 6772 Upper middle income Blend
## 6773 Upper middle income Blend
## 6774 Upper middle income Blend
## 6775 Upper middle income Blend
## 6776 Upper middle income Blend
## 6777 Upper middle income Blend
## 6778 Upper middle income Blend
## 6779 Upper middle income Blend
## 6780 Upper middle income Blend
## 6781 Upper middle income Blend
## 6782 Upper middle income Blend
## 6783 Upper middle income Blend
## 6784 Upper middle income Blend
## 6785 Upper middle income Blend
## 6786 Upper middle income Blend
## 6787 Upper middle income Blend
## 6788 Upper middle income Blend
## 6789 Upper middle income Blend
## 6790 Upper middle income Blend
## 6791 Upper middle income Blend
## 6792 Upper middle income Blend
## 6793 Upper middle income Blend
## 6794 Upper middle income Blend
## 6795 Upper middle income Blend
## 6796 Upper middle income Blend
## 6797 Upper middle income Blend
## 6798 Upper middle income Blend
## 6799 Upper middle income Blend
## 6800 Upper middle income Blend
## 6801 Upper middle income Blend
## 6802 Upper middle income Blend
## 6803 Upper middle income Blend
## 6804 Upper middle income Blend
## 6805 Upper middle income Blend
## 6806 Upper middle income Blend
## 6807 Upper middle income Blend
## 6808 Upper middle income Blend
## 6809 Upper middle income Blend
## 6810 Upper middle income Blend
## 6811 Upper middle income Blend
## 6812 Upper middle income Blend
## 6813 Upper middle income Blend
## 6814 Upper middle income Blend
## 6815 Upper middle income Blend
## 6816 Upper middle income Blend
## 6817 Upper middle income Blend
## 6818 Upper middle income Blend
## 6819 Upper middle income Blend
## 6820 Upper middle income Blend
## 6821 High income Not classified
## 6822 High income Not classified
## 6823 High income Not classified
## 6824 High income Not classified
## 6825 High income Not classified
## 6826 High income Not classified
## 6827 High income Not classified
## 6828 High income Not classified
## 6829 High income Not classified
## 6830 High income Not classified
## 6831 High income Not classified
## 6832 High income Not classified
## 6833 High income Not classified
## 6834 High income Not classified
## 6835 High income Not classified
## 6836 High income Not classified
## 6837 High income Not classified
## 6838 High income Not classified
## 6839 High income Not classified
## 6840 High income Not classified
## 6841 High income Not classified
## 6842 High income Not classified
## 6843 High income Not classified
## 6844 High income Not classified
## 6845 High income Not classified
## 6846 High income Not classified
## 6847 High income Not classified
## 6848 High income Not classified
## 6849 High income Not classified
## 6850 High income Not classified
## 6851 High income Not classified
## 6852 High income Not classified
## 6853 High income Not classified
## 6854 High income Not classified
## 6855 High income Not classified
## 6856 High income Not classified
## 6857 High income Not classified
## 6858 High income Not classified
## 6859 High income Not classified
## 6860 High income Not classified
## 6861 High income Not classified
## 6862 High income Not classified
## 6863 High income Not classified
## 6864 High income Not classified
## 6865 High income Not classified
## 6866 High income Not classified
## 6867 High income Not classified
## 6868 High income Not classified
## 6869 High income Not classified
## 6870 High income Not classified
## 6871 High income Not classified
## 6872 High income Not classified
## 6873 High income Not classified
## 6874 High income Not classified
## 6875 High income Not classified
## 6876 High income Not classified
## 6877 High income Not classified
## 6878 High income Not classified
## 6879 High income Not classified
## 6880 High income Not classified
## 6881 High income Not classified
## 6882 High income Not classified
## 6883 Lower middle income IBRD
## 6884 Lower middle income IBRD
## 6885 Lower middle income IBRD
## 6886 Lower middle income IBRD
## 6887 Lower middle income IBRD
## 6888 Lower middle income IBRD
## 6889 Lower middle income IBRD
## 6890 Lower middle income IBRD
## 6891 Lower middle income IBRD
## 6892 Lower middle income IBRD
## 6893 Lower middle income IBRD
## 6894 Lower middle income IBRD
## 6895 Lower middle income IBRD
## 6896 Lower middle income IBRD
## 6897 Lower middle income IBRD
## 6898 Lower middle income IBRD
## 6899 Lower middle income IBRD
## 6900 Lower middle income IBRD
## 6901 Lower middle income IBRD
## 6902 Lower middle income IBRD
## 6903 Lower middle income IBRD
## 6904 Lower middle income IBRD
## 6905 Lower middle income IBRD
## 6906 Lower middle income IBRD
## 6907 Lower middle income IBRD
## 6908 Lower middle income IBRD
## 6909 Lower middle income IBRD
## 6910 Lower middle income IBRD
## 6911 Lower middle income IBRD
## 6912 Lower middle income IBRD
## 6913 Lower middle income IBRD
## 6914 Lower middle income IBRD
## 6915 Lower middle income IBRD
## 6916 Lower middle income IBRD
## 6917 Lower middle income IBRD
## 6918 Lower middle income IBRD
## 6919 Lower middle income IBRD
## 6920 Lower middle income IBRD
## 6921 Lower middle income IBRD
## 6922 Lower middle income IBRD
## 6923 Lower middle income IBRD
## 6924 Lower middle income IBRD
## 6925 Lower middle income IBRD
## 6926 Lower middle income IBRD
## 6927 Lower middle income IBRD
## 6928 Lower middle income IBRD
## 6929 Lower middle income IBRD
## 6930 Lower middle income IBRD
## 6931 Lower middle income IBRD
## 6932 Lower middle income IBRD
## 6933 Lower middle income IBRD
## 6934 Lower middle income IBRD
## 6935 Lower middle income IBRD
## 6936 Lower middle income IBRD
## 6937 Lower middle income IBRD
## 6938 Lower middle income IBRD
## 6939 Lower middle income IBRD
## 6940 Lower middle income IBRD
## 6941 Lower middle income IBRD
## 6942 Lower middle income IBRD
## 6943 Lower middle income IBRD
## 6944 Lower middle income IBRD
## 6945 Low income IDA
## 6946 Low income IDA
## 6947 Low income IDA
## 6948 Low income IDA
## 6949 Low income IDA
## 6950 Low income IDA
## 6951 Low income IDA
## 6952 Low income IDA
## 6953 Low income IDA
## 6954 Low income IDA
## 6955 Low income IDA
## 6956 Low income IDA
## 6957 Low income IDA
## 6958 Low income IDA
## 6959 Low income IDA
## 6960 Low income IDA
## 6961 Low income IDA
## 6962 Low income IDA
## 6963 Low income IDA
## 6964 Low income IDA
## 6965 Low income IDA
## 6966 Low income IDA
## 6967 Low income IDA
## 6968 Low income IDA
## 6969 Low income IDA
## 6970 Low income IDA
## 6971 Low income IDA
## 6972 Low income IDA
## 6973 Low income IDA
## 6974 Low income IDA
## 6975 Low income IDA
## 6976 Low income IDA
## 6977 Low income IDA
## 6978 Low income IDA
## 6979 Low income IDA
## 6980 Low income IDA
## 6981 Low income IDA
## 6982 Low income IDA
## 6983 Low income IDA
## 6984 Low income IDA
## 6985 Low income IDA
## 6986 Low income IDA
## 6987 Low income IDA
## 6988 Low income IDA
## 6989 Low income IDA
## 6990 Low income IDA
## 6991 Low income IDA
## 6992 Low income IDA
## 6993 Low income IDA
## 6994 Low income IDA
## 6995 Low income IDA
## 6996 Low income IDA
## 6997 Low income IDA
## 6998 Low income IDA
## 6999 Low income IDA
## 7000 Low income IDA
## 7001 Low income IDA
## 7002 Low income IDA
## 7003 Low income IDA
## 7004 Low income IDA
## 7005 Low income IDA
## 7006 Low income IDA
## 7007 Lower middle income IDA
## 7008 Lower middle income IDA
## 7009 Lower middle income IDA
## 7010 Lower middle income IDA
## 7011 Lower middle income IDA
## 7012 Lower middle income IDA
## 7013 Lower middle income IDA
## 7014 Lower middle income IDA
## 7015 Lower middle income IDA
## 7016 Lower middle income IDA
## 7017 Lower middle income IDA
## 7018 Lower middle income IDA
## 7019 Lower middle income IDA
## 7020 Lower middle income IDA
## 7021 Lower middle income IDA
## 7022 Lower middle income IDA
## 7023 Lower middle income IDA
## 7024 Lower middle income IDA
## 7025 Lower middle income IDA
## 7026 Lower middle income IDA
## 7027 Lower middle income IDA
## 7028 Lower middle income IDA
## 7029 Lower middle income IDA
## 7030 Lower middle income IDA
## 7031 Lower middle income IDA
## 7032 Lower middle income IDA
## 7033 Lower middle income IDA
## 7034 Lower middle income IDA
## 7035 Lower middle income IDA
## 7036 Lower middle income IDA
## 7037 Lower middle income IDA
## 7038 Lower middle income IDA
## 7039 Lower middle income IDA
## 7040 Lower middle income IDA
## 7041 Lower middle income IDA
## 7042 Lower middle income IDA
## 7043 Lower middle income IDA
## 7044 Lower middle income IDA
## 7045 Lower middle income IDA
## 7046 Lower middle income IDA
## 7047 Lower middle income IDA
## 7048 Lower middle income IDA
## 7049 Lower middle income IDA
## 7050 Lower middle income IDA
## 7051 Lower middle income IDA
## 7052 Lower middle income IDA
## 7053 Lower middle income IDA
## 7054 Lower middle income IDA
## 7055 Lower middle income IDA
## 7056 Lower middle income IDA
## 7057 Lower middle income IDA
## 7058 Lower middle income IDA
## 7059 Lower middle income IDA
## 7060 Lower middle income IDA
## 7061 Lower middle income IDA
## 7062 Lower middle income IDA
## 7063 Lower middle income IDA
## 7064 Lower middle income IDA
## 7065 Lower middle income IDA
## 7066 Lower middle income IDA
## 7067 Lower middle income IDA
## 7068 Lower middle income IDA
## 7069 High income Not classified
## 7070 High income Not classified
## 7071 High income Not classified
## 7072 High income Not classified
## 7073 High income Not classified
## 7074 High income Not classified
## 7075 High income Not classified
## 7076 High income Not classified
## 7077 High income Not classified
## 7078 High income Not classified
## 7079 High income Not classified
## 7080 High income Not classified
## 7081 High income Not classified
## 7082 High income Not classified
## 7083 High income Not classified
## 7084 High income Not classified
## 7085 High income Not classified
## 7086 High income Not classified
## 7087 High income Not classified
## 7088 High income Not classified
## 7089 High income Not classified
## 7090 High income Not classified
## 7091 High income Not classified
## 7092 High income Not classified
## 7093 High income Not classified
## 7094 High income Not classified
## 7095 High income Not classified
## 7096 High income Not classified
## 7097 High income Not classified
## 7098 High income Not classified
## 7099 High income Not classified
## 7100 High income Not classified
## 7101 High income Not classified
## 7102 High income Not classified
## 7103 High income Not classified
## 7104 High income Not classified
## 7105 High income Not classified
## 7106 High income Not classified
## 7107 High income Not classified
## 7108 High income Not classified
## 7109 High income Not classified
## 7110 High income Not classified
## 7111 High income Not classified
## 7112 High income Not classified
## 7113 High income Not classified
## 7114 High income Not classified
## 7115 High income Not classified
## 7116 High income Not classified
## 7117 High income Not classified
## 7118 High income Not classified
## 7119 High income Not classified
## 7120 High income Not classified
## 7121 High income Not classified
## 7122 High income Not classified
## 7123 High income Not classified
## 7124 High income Not classified
## 7125 High income Not classified
## 7126 High income Not classified
## 7127 High income Not classified
## 7128 High income Not classified
## 7129 High income Not classified
## 7130 High income Not classified
## 7131 High income Not classified
## 7132 High income Not classified
## 7133 High income Not classified
## 7134 High income Not classified
## 7135 High income Not classified
## 7136 High income Not classified
## 7137 High income Not classified
## 7138 High income Not classified
## 7139 High income Not classified
## 7140 High income Not classified
## 7141 High income Not classified
## 7142 High income Not classified
## 7143 High income Not classified
## 7144 High income Not classified
## 7145 High income Not classified
## 7146 High income Not classified
## 7147 High income Not classified
## 7148 High income Not classified
## 7149 High income Not classified
## 7150 High income Not classified
## 7151 High income Not classified
## 7152 High income Not classified
## 7153 High income Not classified
## 7154 High income Not classified
## 7155 High income Not classified
## 7156 High income Not classified
## 7157 High income Not classified
## 7158 High income Not classified
## 7159 High income Not classified
## 7160 High income Not classified
## 7161 High income Not classified
## 7162 High income Not classified
## 7163 High income Not classified
## 7164 High income Not classified
## 7165 High income Not classified
## 7166 High income Not classified
## 7167 High income Not classified
## 7168 High income Not classified
## 7169 High income Not classified
## 7170 High income Not classified
## 7171 High income Not classified
## 7172 High income Not classified
## 7173 High income Not classified
## 7174 High income Not classified
## 7175 High income Not classified
## 7176 High income Not classified
## 7177 High income Not classified
## 7178 High income Not classified
## 7179 High income Not classified
## 7180 High income Not classified
## 7181 High income Not classified
## 7182 High income Not classified
## 7183 High income Not classified
## 7184 High income Not classified
## 7185 High income Not classified
## 7186 High income Not classified
## 7187 High income Not classified
## 7188 High income Not classified
## 7189 High income Not classified
## 7190 High income Not classified
## 7191 High income Not classified
## 7192 High income Not classified
## 7193 High income Not classified
## 7194 High income Not classified
## 7195 High income Not classified
## 7196 High income Not classified
## 7197 High income Not classified
## 7198 High income Not classified
## 7199 High income Not classified
## 7200 High income Not classified
## 7201 High income Not classified
## 7202 High income Not classified
## 7203 High income Not classified
## 7204 High income Not classified
## 7205 High income Not classified
## 7206 High income Not classified
## 7207 High income Not classified
## 7208 High income Not classified
## 7209 High income Not classified
## 7210 High income Not classified
## 7211 High income Not classified
## 7212 High income Not classified
## 7213 High income Not classified
## 7214 High income Not classified
## 7215 High income Not classified
## 7216 High income Not classified
## 7217 High income Not classified
## 7218 High income Not classified
## 7219 High income Not classified
## 7220 High income Not classified
## 7221 High income Not classified
## 7222 High income Not classified
## 7223 High income Not classified
## 7224 High income Not classified
## 7225 High income Not classified
## 7226 High income Not classified
## 7227 High income Not classified
## 7228 High income Not classified
## 7229 High income Not classified
## 7230 High income Not classified
## 7231 High income Not classified
## 7232 High income Not classified
## 7233 High income Not classified
## 7234 High income Not classified
## 7235 High income Not classified
## 7236 High income Not classified
## 7237 High income Not classified
## 7238 High income Not classified
## 7239 High income Not classified
## 7240 High income Not classified
## 7241 High income Not classified
## 7242 High income Not classified
## 7243 High income Not classified
## 7244 High income Not classified
## 7245 High income Not classified
## 7246 High income Not classified
## 7247 High income Not classified
## 7248 High income Not classified
## 7249 High income Not classified
## 7250 High income Not classified
## 7251 High income Not classified
## 7252 High income Not classified
## 7253 High income Not classified
## 7254 High income Not classified
## 7255 Upper middle income IBRD
## 7256 Upper middle income IBRD
## 7257 Upper middle income IBRD
## 7258 Upper middle income IBRD
## 7259 Upper middle income IBRD
## 7260 Upper middle income IBRD
## 7261 Upper middle income IBRD
## 7262 Upper middle income IBRD
## 7263 Upper middle income IBRD
## 7264 Upper middle income IBRD
## 7265 Upper middle income IBRD
## 7266 Upper middle income IBRD
## 7267 Upper middle income IBRD
## 7268 Upper middle income IBRD
## 7269 Upper middle income IBRD
## 7270 Upper middle income IBRD
## 7271 Upper middle income IBRD
## 7272 Upper middle income IBRD
## 7273 Upper middle income IBRD
## 7274 Upper middle income IBRD
## 7275 Upper middle income IBRD
## 7276 Upper middle income IBRD
## 7277 Upper middle income IBRD
## 7278 Upper middle income IBRD
## 7279 Upper middle income IBRD
## 7280 Upper middle income IBRD
## 7281 Upper middle income IBRD
## 7282 Upper middle income IBRD
## 7283 Upper middle income IBRD
## 7284 Upper middle income IBRD
## 7285 Upper middle income IBRD
## 7286 Upper middle income IBRD
## 7287 Upper middle income IBRD
## 7288 Upper middle income IBRD
## 7289 Upper middle income IBRD
## 7290 Upper middle income IBRD
## 7291 Upper middle income IBRD
## 7292 Upper middle income IBRD
## 7293 Upper middle income IBRD
## 7294 Upper middle income IBRD
## 7295 Upper middle income IBRD
## 7296 Upper middle income IBRD
## 7297 Upper middle income IBRD
## 7298 Upper middle income IBRD
## 7299 Upper middle income IBRD
## 7300 Upper middle income IBRD
## 7301 Upper middle income IBRD
## 7302 Upper middle income IBRD
## 7303 Upper middle income IBRD
## 7304 Upper middle income IBRD
## 7305 Upper middle income IBRD
## 7306 Upper middle income IBRD
## 7307 Upper middle income IBRD
## 7308 Upper middle income IBRD
## 7309 Upper middle income IBRD
## 7310 Upper middle income IBRD
## 7311 Upper middle income IBRD
## 7312 Upper middle income IBRD
## 7313 Upper middle income IBRD
## 7314 Upper middle income IBRD
## 7315 Upper middle income IBRD
## 7316 Upper middle income IBRD
## 7317 Lower middle income IBRD
## 7318 Lower middle income IBRD
## 7319 Lower middle income IBRD
## 7320 Lower middle income IBRD
## 7321 Lower middle income IBRD
## 7322 Lower middle income IBRD
## 7323 Lower middle income IBRD
## 7324 Lower middle income IBRD
## 7325 Lower middle income IBRD
## 7326 Lower middle income IBRD
## 7327 Lower middle income IBRD
## 7328 Lower middle income IBRD
## 7329 Lower middle income IBRD
## 7330 Lower middle income IBRD
## 7331 Lower middle income IBRD
## 7332 Lower middle income IBRD
## 7333 Lower middle income IBRD
## 7334 Lower middle income IBRD
## 7335 Lower middle income IBRD
## 7336 Lower middle income IBRD
## 7337 Lower middle income IBRD
## 7338 Lower middle income IBRD
## 7339 Lower middle income IBRD
## 7340 Lower middle income IBRD
## 7341 Lower middle income IBRD
## 7342 Lower middle income IBRD
## 7343 Lower middle income IBRD
## 7344 Lower middle income IBRD
## 7345 Lower middle income IBRD
## 7346 Lower middle income IBRD
## 7347 Lower middle income IBRD
## 7348 Lower middle income IBRD
## 7349 Lower middle income IBRD
## 7350 Lower middle income IBRD
## 7351 Lower middle income IBRD
## 7352 Lower middle income IBRD
## 7353 Lower middle income IBRD
## 7354 Lower middle income IBRD
## 7355 Lower middle income IBRD
## 7356 Lower middle income IBRD
## 7357 Lower middle income IBRD
## 7358 Lower middle income IBRD
## 7359 Lower middle income IBRD
## 7360 Lower middle income IBRD
## 7361 Lower middle income IBRD
## 7362 Lower middle income IBRD
## 7363 Lower middle income IBRD
## 7364 Lower middle income IBRD
## 7365 Lower middle income IBRD
## 7366 Lower middle income IBRD
## 7367 Lower middle income IBRD
## 7368 Lower middle income IBRD
## 7369 Lower middle income IBRD
## 7370 Lower middle income IBRD
## 7371 Lower middle income IBRD
## 7372 Lower middle income IBRD
## 7373 Lower middle income IBRD
## 7374 Lower middle income IBRD
## 7375 Lower middle income IBRD
## 7376 Lower middle income IBRD
## 7377 Lower middle income IBRD
## 7378 Lower middle income IBRD
## 7379 High income Not classified
## 7380 High income Not classified
## 7381 High income Not classified
## 7382 High income Not classified
## 7383 High income Not classified
## 7384 High income Not classified
## 7385 High income Not classified
## 7386 High income Not classified
## 7387 High income Not classified
## 7388 High income Not classified
## 7389 High income Not classified
## 7390 High income Not classified
## 7391 High income Not classified
## 7392 High income Not classified
## 7393 High income Not classified
## 7394 High income Not classified
## 7395 High income Not classified
## 7396 High income Not classified
## 7397 High income Not classified
## 7398 High income Not classified
## 7399 High income Not classified
## 7400 High income Not classified
## 7401 High income Not classified
## 7402 High income Not classified
## 7403 High income Not classified
## 7404 High income Not classified
## 7405 High income Not classified
## 7406 High income Not classified
## 7407 High income Not classified
## 7408 High income Not classified
## 7409 High income Not classified
## 7410 High income Not classified
## 7411 High income Not classified
## 7412 High income Not classified
## 7413 High income Not classified
## 7414 High income Not classified
## 7415 High income Not classified
## 7416 High income Not classified
## 7417 High income Not classified
## 7418 High income Not classified
## 7419 High income Not classified
## 7420 High income Not classified
## 7421 High income Not classified
## 7422 High income Not classified
## 7423 High income Not classified
## 7424 High income Not classified
## 7425 High income Not classified
## 7426 High income Not classified
## 7427 High income Not classified
## 7428 High income Not classified
## 7429 High income Not classified
## 7430 High income Not classified
## 7431 High income Not classified
## 7432 High income Not classified
## 7433 High income Not classified
## 7434 High income Not classified
## 7435 High income Not classified
## 7436 High income Not classified
## 7437 High income Not classified
## 7438 High income Not classified
## 7439 High income Not classified
## 7440 High income Not classified
## 7441 Upper middle income IBRD
## 7442 Upper middle income IBRD
## 7443 Upper middle income IBRD
## 7444 Upper middle income IBRD
## 7445 Upper middle income IBRD
## 7446 Upper middle income IBRD
## 7447 Upper middle income IBRD
## 7448 Upper middle income IBRD
## 7449 Upper middle income IBRD
## 7450 Upper middle income IBRD
## 7451 Upper middle income IBRD
## 7452 Upper middle income IBRD
## 7453 Upper middle income IBRD
## 7454 Upper middle income IBRD
## 7455 Upper middle income IBRD
## 7456 Upper middle income IBRD
## 7457 Upper middle income IBRD
## 7458 Upper middle income IBRD
## 7459 Upper middle income IBRD
## 7460 Upper middle income IBRD
## 7461 Upper middle income IBRD
## 7462 Upper middle income IBRD
## 7463 Upper middle income IBRD
## 7464 Upper middle income IBRD
## 7465 Upper middle income IBRD
## 7466 Upper middle income IBRD
## 7467 Upper middle income IBRD
## 7468 Upper middle income IBRD
## 7469 Upper middle income IBRD
## 7470 Upper middle income IBRD
## 7471 Upper middle income IBRD
## 7472 Upper middle income IBRD
## 7473 Upper middle income IBRD
## 7474 Upper middle income IBRD
## 7475 Upper middle income IBRD
## 7476 Upper middle income IBRD
## 7477 Upper middle income IBRD
## 7478 Upper middle income IBRD
## 7479 Upper middle income IBRD
## 7480 Upper middle income IBRD
## 7481 Upper middle income IBRD
## 7482 Upper middle income IBRD
## 7483 Upper middle income IBRD
## 7484 Upper middle income IBRD
## 7485 Upper middle income IBRD
## 7486 Upper middle income IBRD
## 7487 Upper middle income IBRD
## 7488 Upper middle income IBRD
## 7489 Upper middle income IBRD
## 7490 Upper middle income IBRD
## 7491 Upper middle income IBRD
## 7492 Upper middle income IBRD
## 7493 Upper middle income IBRD
## 7494 Upper middle income IBRD
## 7495 Upper middle income IBRD
## 7496 Upper middle income IBRD
## 7497 Upper middle income IBRD
## 7498 Upper middle income IBRD
## 7499 Upper middle income IBRD
## 7500 Upper middle income IBRD
## 7501 Upper middle income IBRD
## 7502 Upper middle income IBRD
## 7503 Upper middle income IBRD
## 7504 Upper middle income IBRD
## 7505 Upper middle income IBRD
## 7506 Upper middle income IBRD
## 7507 Upper middle income IBRD
## 7508 Upper middle income IBRD
## 7509 Upper middle income IBRD
## 7510 Upper middle income IBRD
## 7511 Upper middle income IBRD
## 7512 Upper middle income IBRD
## 7513 Upper middle income IBRD
## 7514 Upper middle income IBRD
## 7515 Upper middle income IBRD
## 7516 Upper middle income IBRD
## 7517 Upper middle income IBRD
## 7518 Upper middle income IBRD
## 7519 Upper middle income IBRD
## 7520 Upper middle income IBRD
## 7521 Upper middle income IBRD
## 7522 Upper middle income IBRD
## 7523 Upper middle income IBRD
## 7524 Upper middle income IBRD
## 7525 Upper middle income IBRD
## 7526 Upper middle income IBRD
## 7527 Upper middle income IBRD
## 7528 Upper middle income IBRD
## 7529 Upper middle income IBRD
## 7530 Upper middle income IBRD
## 7531 Upper middle income IBRD
## 7532 Upper middle income IBRD
## 7533 Upper middle income IBRD
## 7534 Upper middle income IBRD
## 7535 Upper middle income IBRD
## 7536 Upper middle income IBRD
## 7537 Upper middle income IBRD
## 7538 Upper middle income IBRD
## 7539 Upper middle income IBRD
## 7540 Upper middle income IBRD
## 7541 Upper middle income IBRD
## 7542 Upper middle income IBRD
## 7543 Upper middle income IBRD
## 7544 Upper middle income IBRD
## 7545 Upper middle income IBRD
## 7546 Upper middle income IBRD
## 7547 Upper middle income IBRD
## 7548 Upper middle income IBRD
## 7549 Upper middle income IBRD
## 7550 Upper middle income IBRD
## 7551 Upper middle income IBRD
## 7552 Upper middle income IBRD
## 7553 Upper middle income IBRD
## 7554 Upper middle income IBRD
## 7555 Upper middle income IBRD
## 7556 Upper middle income IBRD
## 7557 Upper middle income IBRD
## 7558 Upper middle income IBRD
## 7559 Upper middle income IBRD
## 7560 Upper middle income IBRD
## 7561 Upper middle income IBRD
## 7562 Upper middle income IBRD
## 7563 Upper middle income IBRD
## 7564 Upper middle income IBRD
## 7565 High income Not classified
## 7566 High income Not classified
## 7567 High income Not classified
## 7568 High income Not classified
## 7569 High income Not classified
## 7570 High income Not classified
## 7571 High income Not classified
## 7572 High income Not classified
## 7573 High income Not classified
## 7574 High income Not classified
## 7575 High income Not classified
## 7576 High income Not classified
## 7577 High income Not classified
## 7578 High income Not classified
## 7579 High income Not classified
## 7580 High income Not classified
## 7581 High income Not classified
## 7582 High income Not classified
## 7583 High income Not classified
## 7584 High income Not classified
## 7585 High income Not classified
## 7586 High income Not classified
## 7587 High income Not classified
## 7588 High income Not classified
## 7589 High income Not classified
## 7590 High income Not classified
## 7591 High income Not classified
## 7592 High income Not classified
## 7593 High income Not classified
## 7594 High income Not classified
## 7595 High income Not classified
## 7596 High income Not classified
## 7597 High income Not classified
## 7598 High income Not classified
## 7599 High income Not classified
## 7600 High income Not classified
## 7601 High income Not classified
## 7602 High income Not classified
## 7603 High income Not classified
## 7604 High income Not classified
## 7605 High income Not classified
## 7606 High income Not classified
## 7607 High income Not classified
## 7608 High income Not classified
## 7609 High income Not classified
## 7610 High income Not classified
## 7611 High income Not classified
## 7612 High income Not classified
## 7613 High income Not classified
## 7614 High income Not classified
## 7615 High income Not classified
## 7616 High income Not classified
## 7617 High income Not classified
## 7618 High income Not classified
## 7619 High income Not classified
## 7620 High income Not classified
## 7621 High income Not classified
## 7622 High income Not classified
## 7623 High income Not classified
## 7624 High income Not classified
## 7625 High income Not classified
## 7626 High income Not classified
## 7627 Low income IDA
## 7628 Low income IDA
## 7629 Low income IDA
## 7630 Low income IDA
## 7631 Low income IDA
## 7632 Low income IDA
## 7633 Low income IDA
## 7634 Low income IDA
## 7635 Low income IDA
## 7636 Low income IDA
## 7637 Low income IDA
## 7638 Low income IDA
## 7639 Low income IDA
## 7640 Low income IDA
## 7641 Low income IDA
## 7642 Low income IDA
## 7643 Low income IDA
## 7644 Low income IDA
## 7645 Low income IDA
## 7646 Low income IDA
## 7647 Low income IDA
## 7648 Low income IDA
## 7649 Low income IDA
## 7650 Low income IDA
## 7651 Low income IDA
## 7652 Low income IDA
## 7653 Low income IDA
## 7654 Low income IDA
## 7655 Low income IDA
## 7656 Low income IDA
## 7657 Low income IDA
## 7658 Low income IDA
## 7659 Low income IDA
## 7660 Low income IDA
## 7661 Low income IDA
## 7662 Low income IDA
## 7663 Low income IDA
## 7664 Low income IDA
## 7665 Low income IDA
## 7666 Low income IDA
## 7667 Low income IDA
## 7668 Low income IDA
## 7669 Low income IDA
## 7670 Low income IDA
## 7671 Low income IDA
## 7672 Low income IDA
## 7673 Low income IDA
## 7674 Low income IDA
## 7675 Low income IDA
## 7676 Low income IDA
## 7677 Low income IDA
## 7678 Low income IDA
## 7679 Low income IDA
## 7680 Low income IDA
## 7681 Low income IDA
## 7682 Low income IDA
## 7683 Low income IDA
## 7684 Low income IDA
## 7685 Low income IDA
## 7686 Low income IDA
## 7687 Low income IDA
## 7688 Low income IDA
## 7689 Upper middle income IDA
## 7690 Upper middle income IDA
## 7691 Upper middle income IDA
## 7692 Upper middle income IDA
## [ reached 'max' / getOption("max.print") -- omitted 5700 rows ]
What is the difference?
- 13,176 rows is not equal to 13,054 rows + 183 rows
gdp_pcap_extra %>% filter(region != "Aggregates") %>% anti_join(gdp_pcap_country)## Joining, by = c("iso2c", "country", "NY.GDP.PCAP.KD", "year")
## iso2c country NY.GDP.PCAP.KD year status lastupdated iso3c
## 1 CI Cote d'Ivoire 1769.215 2013 2022-09-16 CIV
## 2 CI Cote d'Ivoire 1637.393 2012 2022-09-16 CIV
## 3 CI Cote d'Ivoire 1558.969 2011 2022-09-16 CIV
## 4 CI Cote d'Ivoire 1616.378 2009 2022-09-16 CIV
## 5 CI Cote d'Ivoire 1596.255 2008 2022-09-16 CIV
## 6 CI Cote d'Ivoire 1557.908 2007 2022-09-16 CIV
## 7 CI Cote d'Ivoire 1687.217 2010 2022-09-16 CIV
## 8 CI Cote d'Ivoire 1565.428 2005 2022-09-16 CIV
## 9 CI Cote d'Ivoire 1583.112 2004 2022-09-16 CIV
## 10 CI Cote d'Ivoire 1566.577 2003 2022-09-16 CIV
## 11 CI Cote d'Ivoire 1679.407 2002 2022-09-16 CIV
## 12 CI Cote d'Ivoire 1765.328 2001 2022-09-16 CIV
## 13 CI Cote d'Ivoire 1847.870 2000 2022-09-16 CIV
## 14 CI Cote d'Ivoire 1901.573 1999 2022-09-16 CIV
## 15 CI Cote d'Ivoire 1933.073 1998 2022-09-16 CIV
## 16 CI Cote d'Ivoire 1910.230 1997 2022-09-16 CIV
## 17 CI Cote d'Ivoire 1797.439 1996 2022-09-16 CIV
## 18 CI Cote d'Ivoire 1723.157 1995 2022-09-16 CIV
## 19 CI Cote d'Ivoire 1662.913 1994 2022-09-16 CIV
## 20 CI Cote d'Ivoire 1575.143 2006 2022-09-16 CIV
## 21 CI Cote d'Ivoire 3095.403 1979 2022-09-16 CIV
## 22 CI Cote d'Ivoire 3161.070 1978 2022-09-16 CIV
## 23 CI Cote d'Ivoire 2981.466 1977 2022-09-16 CIV
## 24 CI Cote d'Ivoire 2907.585 1976 2022-09-16 CIV
## 25 CI Cote d'Ivoire 2696.077 1975 2022-09-16 CIV
## 26 CI Cote d'Ivoire 2608.979 1974 2022-09-16 CIV
## 27 CI Cote d'Ivoire 2620.537 1973 2022-09-16 CIV
## 28 CI Cote d'Ivoire 2591.398 1972 2022-09-16 CIV
## 29 CI Cote d'Ivoire 2601.444 1971 2022-09-16 CIV
## 30 CI Cote d'Ivoire 2482.276 1970 2022-09-16 CIV
## 31 CI Cote d'Ivoire 2342.901 1969 2022-09-16 CIV
## 32 CI Cote d'Ivoire 2222.523 1968 2022-09-16 CIV
## 33 CI Cote d'Ivoire 2048.156 1967 2022-09-16 CIV
## 34 CI Cote d'Ivoire 2029.786 1966 2022-09-16 CIV
## 35 CI Cote d'Ivoire 1886.692 1965 2022-09-16 CIV
## 36 CI Cote d'Ivoire 2021.584 1964 2022-09-16 CIV
## 37 CI Cote d'Ivoire 1785.858 1963 2022-09-16 CIV
## 38 CI Cote d'Ivoire 1621.003 1962 2022-09-16 CIV
## 39 CI Cote d'Ivoire 1662.739 1961 2022-09-16 CIV
## 40 CI Cote d'Ivoire 1567.762 1960 2022-09-16 CIV
## 41 CI Cote d'Ivoire 2150.603 1986 2022-09-16 CIV
## 42 CI Cote d'Ivoire 2164.420 1985 2022-09-16 CIV
## 43 CI Cote d'Ivoire 2155.537 1984 2022-09-16 CIV
## 44 CI Cote d'Ivoire 2308.687 1983 2022-09-16 CIV
## 45 CI Cote d'Ivoire 2506.526 1982 2022-09-16 CIV
## 46 CI Cote d'Ivoire 2612.158 1981 2022-09-16 CIV
## 47 CI Cote d'Ivoire 1707.178 1993 2022-09-16 CIV
## 48 CI Cote d'Ivoire 1771.775 1992 2022-09-16 CIV
## 49 CI Cote d'Ivoire 1840.774 1991 2022-09-16 CIV
## 50 CI Cote d'Ivoire 1907.533 1990 2022-09-16 CIV
## 51 CI Cote d'Ivoire 1999.498 1989 2022-09-16 CIV
## 52 CI Cote d'Ivoire 2013.615 1988 2022-09-16 CIV
## 53 CI Cote d'Ivoire 2064.788 1987 2022-09-16 CIV
## 54 CI Cote d'Ivoire 1972.546 2015 2022-09-16 CIV
## 55 CI Cote d'Ivoire 1887.165 2014 2022-09-16 CIV
## 56 CI Cote d'Ivoire 2636.920 1980 2022-09-16 CIV
## 57 CI Cote d'Ivoire 2414.440 2021 2022-09-16 CIV
## 58 CI Cote d'Ivoire 2313.793 2020 2022-09-16 CIV
## 59 CI Cote d'Ivoire 2327.745 2019 2022-09-16 CIV
## 60 CI Cote d'Ivoire 2247.777 2018 2022-09-16 CIV
## 61 CI Cote d'Ivoire 2157.245 2017 2022-09-16 CIV
## 62 CI Cote d'Ivoire 2061.215 2016 2022-09-16 CIV
## 63 CW Curacao NA 2021 2022-09-16 CUW
## 64 CW Curacao 14748.896 2020 2022-09-16 CUW
## 65 CW Curacao 17796.700 2019 2022-09-16 CUW
## 66 CW Curacao NA 1997 2022-09-16 CUW
## 67 CW Curacao NA 1996 2022-09-16 CUW
## 68 CW Curacao NA 1995 2022-09-16 CUW
## 69 CW Curacao NA 1994 2022-09-16 CUW
## 70 CW Curacao NA 1993 2022-09-16 CUW
## 71 CW Curacao NA 1992 2022-09-16 CUW
## 72 CW Curacao NA 1991 2022-09-16 CUW
## 73 CW Curacao NA 1990 2022-09-16 CUW
## 74 CW Curacao NA 1989 2022-09-16 CUW
## 75 CW Curacao NA 1988 2022-09-16 CUW
## 76 CW Curacao NA 1987 2022-09-16 CUW
## 77 CW Curacao NA 1986 2022-09-16 CUW
## 78 CW Curacao NA 1985 2022-09-16 CUW
## 79 CW Curacao NA 1984 2022-09-16 CUW
## 80 CW Curacao NA 1983 2022-09-16 CUW
## 81 CW Curacao NA 1982 2022-09-16 CUW
## 82 CW Curacao NA 1981 2022-09-16 CUW
## 83 CW Curacao NA 1980 2022-09-16 CUW
## 84 CW Curacao NA 1979 2022-09-16 CUW
## 85 CW Curacao 18198.664 2018 2022-09-16 CUW
## 86 CW Curacao 18504.306 2017 2022-09-16 CUW
## 87 CW Curacao 18890.759 2016 2022-09-16 CUW
## 88 CW Curacao 19260.270 2015 2022-09-16 CUW
## 89 CW Curacao 19459.494 2014 2022-09-16 CUW
## 90 CW Curacao 19963.345 2013 2022-09-16 CUW
## 91 CW Curacao 20356.182 2012 2022-09-16 CUW
## 92 CW Curacao 20539.360 2011 2022-09-16 CUW
## 93 CW Curacao 20706.437 2010 2022-09-16 CUW
## 94 CW Curacao 20952.900 2009 2022-09-16 CUW
## 95 CW Curacao 21202.431 2008 2022-09-16 CUW
## 96 CW Curacao 21011.157 2007 2022-09-16 CUW
## 97 CW Curacao 20913.663 2006 2022-09-16 CUW
## 98 CW Curacao 21112.322 2005 2022-09-16 CUW
## 99 CW Curacao 21512.112 2004 2022-09-16 CUW
## 100 CW Curacao 21840.891 2003 2022-09-16 CUW
## 101 CW Curacao 22231.879 2002 2022-09-16 CUW
## 102 CW Curacao 22171.066 2001 2022-09-16 CUW
## 103 CW Curacao 21523.646 2000 2022-09-16 CUW
## 104 CW Curacao NA 1999 2022-09-16 CUW
## 105 CW Curacao NA 1998 2022-09-16 CUW
## 106 CW Curacao NA 1971 2022-09-16 CUW
## 107 CW Curacao NA 1970 2022-09-16 CUW
## 108 CW Curacao NA 1969 2022-09-16 CUW
## 109 CW Curacao NA 1968 2022-09-16 CUW
## 110 CW Curacao NA 1967 2022-09-16 CUW
## 111 CW Curacao NA 1966 2022-09-16 CUW
## 112 CW Curacao NA 1978 2022-09-16 CUW
## 113 CW Curacao NA 1977 2022-09-16 CUW
## 114 CW Curacao NA 1976 2022-09-16 CUW
## 115 CW Curacao NA 1975 2022-09-16 CUW
## 116 CW Curacao NA 1974 2022-09-16 CUW
## 117 CW Curacao NA 1973 2022-09-16 CUW
## 118 CW Curacao NA 1972 2022-09-16 CUW
## 119 CW Curacao NA 1963 2022-09-16 CUW
## 120 CW Curacao NA 1962 2022-09-16 CUW
## 121 CW Curacao NA 1965 2022-09-16 CUW
## 122 CW Curacao NA 1964 2022-09-16 CUW
## 123 CW Curacao NA 1961 2022-09-16 CUW
## 124 CW Curacao NA 1960 2022-09-16 CUW
## 125 ST Sao Tome and Principe 1690.263 2021 2022-09-16 STP
## 126 ST Sao Tome and Principe 1692.219 2020 2022-09-16 STP
## 127 ST Sao Tome and Principe 1672.896 2019 2022-09-16 STP
## 128 ST Sao Tome and Principe 1667.858 2018 2022-09-16 STP
## 129 ST Sao Tome and Principe 1651.012 2017 2022-09-16 STP
## 130 ST Sao Tome and Principe 1620.056 2016 2022-09-16 STP
## 131 ST Sao Tome and Principe 1584.776 2015 2022-09-16 STP
## 132 ST Sao Tome and Principe 1554.047 2014 2022-09-16 STP
## 133 ST Sao Tome and Principe 1486.239 2013 2022-09-16 STP
## 134 ST Sao Tome and Principe 1445.680 2012 2022-09-16 STP
## 135 ST Sao Tome and Principe 1431.060 2011 2022-09-16 STP
## 136 ST Sao Tome and Principe 1402.302 2010 2022-09-16 STP
## 137 ST Sao Tome and Principe 1348.191 2009 2022-09-16 STP
## 138 ST Sao Tome and Principe 1352.830 2008 2022-09-16 STP
## 139 ST Sao Tome and Principe 1286.746 2007 2022-09-16 STP
## 140 ST Sao Tome and Principe 1281.818 2006 2022-09-16 STP
## 141 ST Sao Tome and Principe 1206.095 2005 2022-09-16 STP
## 142 ST Sao Tome and Principe 1153.573 2004 2022-09-16 STP
## 143 ST Sao Tome and Principe 1135.602 2003 2022-09-16 STP
## 144 ST Sao Tome and Principe 1086.913 2002 2022-09-16 STP
## 145 ST Sao Tome and Principe 1081.406 2001 2022-09-16 STP
## 146 ST Sao Tome and Principe NA 2000 2022-09-16 STP
## 147 ST Sao Tome and Principe NA 1999 2022-09-16 STP
## 148 ST Sao Tome and Principe NA 1998 2022-09-16 STP
## 149 ST Sao Tome and Principe NA 1997 2022-09-16 STP
## 150 ST Sao Tome and Principe NA 1996 2022-09-16 STP
## 151 ST Sao Tome and Principe NA 1995 2022-09-16 STP
## 152 ST Sao Tome and Principe NA 1994 2022-09-16 STP
## 153 ST Sao Tome and Principe NA 1993 2022-09-16 STP
## 154 ST Sao Tome and Principe NA 1992 2022-09-16 STP
## 155 ST Sao Tome and Principe NA 1991 2022-09-16 STP
## 156 ST Sao Tome and Principe NA 1990 2022-09-16 STP
## 157 ST Sao Tome and Principe NA 1989 2022-09-16 STP
## 158 ST Sao Tome and Principe NA 1988 2022-09-16 STP
## 159 ST Sao Tome and Principe NA 1987 2022-09-16 STP
## 160 ST Sao Tome and Principe NA 1986 2022-09-16 STP
## 161 ST Sao Tome and Principe NA 1985 2022-09-16 STP
## 162 ST Sao Tome and Principe NA 1984 2022-09-16 STP
## 163 ST Sao Tome and Principe NA 1983 2022-09-16 STP
## 164 ST Sao Tome and Principe NA 1982 2022-09-16 STP
## 165 ST Sao Tome and Principe NA 1981 2022-09-16 STP
## 166 ST Sao Tome and Principe NA 1980 2022-09-16 STP
## 167 ST Sao Tome and Principe NA 1979 2022-09-16 STP
## 168 ST Sao Tome and Principe NA 1978 2022-09-16 STP
## 169 ST Sao Tome and Principe NA 1977 2022-09-16 STP
## 170 ST Sao Tome and Principe NA 1976 2022-09-16 STP
## 171 ST Sao Tome and Principe NA 1975 2022-09-16 STP
## 172 ST Sao Tome and Principe NA 1974 2022-09-16 STP
## 173 ST Sao Tome and Principe NA 1973 2022-09-16 STP
## 174 ST Sao Tome and Principe NA 1972 2022-09-16 STP
## 175 ST Sao Tome and Principe NA 1971 2022-09-16 STP
## 176 ST Sao Tome and Principe NA 1970 2022-09-16 STP
## 177 ST Sao Tome and Principe NA 1969 2022-09-16 STP
## 178 ST Sao Tome and Principe NA 1968 2022-09-16 STP
## 179 ST Sao Tome and Principe NA 1967 2022-09-16 STP
## 180 ST Sao Tome and Principe NA 1966 2022-09-16 STP
## 181 ST Sao Tome and Principe NA 1965 2022-09-16 STP
## 182 ST Sao Tome and Principe NA 1964 2022-09-16 STP
## 183 ST Sao Tome and Principe NA 1963 2022-09-16 STP
## 184 ST Sao Tome and Principe NA 1962 2022-09-16 STP
## 185 ST Sao Tome and Principe NA 1961 2022-09-16 STP
## 186 ST Sao Tome and Principe NA 1960 2022-09-16 STP
## 187 TR Turkiye 13250.659 2021 2022-09-16 TUR
## 188 TR Turkiye 12038.628 2020 2022-09-16 TUR
## 189 TR Turkiye 11955.433 2019 2022-09-16 TUR
## 190 TR Turkiye 12006.816 2018 2022-09-16 TUR
## 191 TR Turkiye 11835.261 2017 2022-09-16 TUR
## 192 TR Turkiye 11187.054 2016 2022-09-16 TUR
## 193 TR Turkiye 11006.280 2015 2022-09-16 TUR
## 194 TR Turkiye 10549.676 2014 2022-09-16 TUR
## 195 TR Turkiye 10225.716 2013 2022-09-16 TUR
## 196 TR Turkiye 9586.769 2012 2022-09-16 TUR
## 197 TR Turkiye 9299.137 2011 2022-09-16 TUR
## 198 TR Turkiye 8491.589 2010 2022-09-16 TUR
## 199 TR Turkiye 7942.031 2009 2022-09-16 TUR
## 200 TR Turkiye 8451.479 2008 2022-09-16 TUR
## 201 TR Turkiye 8483.966 2007 2022-09-16 TUR
## 202 TR Turkiye 8173.536 2006 2022-09-16 TUR
## 203 TR Turkiye 7738.578 2005 2022-09-16 TUR
## 204 TR Turkiye 7194.682 2004 2022-09-16 TUR
## 205 TR Turkiye 6644.146 2003 2022-09-16 TUR
## 206 TR Turkiye 6373.132 2002 2022-09-16 TUR
## 207 TR Turkiye 6075.996 2001 2022-09-16 TUR
## 208 TR Turkiye 6543.731 2000 2022-09-16 TUR
## 209 TR Turkiye 6213.064 1999 2022-09-16 TUR
## 210 TR Turkiye 6522.942 1998 2022-09-16 TUR
## 211 TR Turkiye 6470.783 1997 2022-09-16 TUR
## 212 TR Turkiye 6111.078 1996 2022-09-16 TUR
## 213 TR Turkiye 5782.253 1995 2022-09-16 TUR
## 214 TR Turkiye 5445.853 1994 2022-09-16 TUR
## 215 TR Turkiye 5804.319 1993 2022-09-16 TUR
## 216 TR Turkiye 5479.294 1992 2022-09-16 TUR
## 217 TR Turkiye 5303.010 1991 2022-09-16 TUR
## 218 TR Turkiye 5354.805 1990 2022-09-16 TUR
## 219 TR Turkiye 4986.638 1989 2022-09-16 TUR
## 220 TR Turkiye 5061.873 1988 2022-09-16 TUR
## 221 TR Turkiye 5039.308 1987 2022-09-16 TUR
## 222 TR Turkiye 4691.998 1986 2022-09-16 TUR
## 223 TR Turkiye 4473.308 1985 2022-09-16 TUR
## 224 TR Turkiye 4382.253 1984 2022-09-16 TUR
## 225 TR Turkiye 4197.404 1983 2022-09-16 TUR
## 226 TR Turkiye 4089.683 1982 2022-09-16 TUR
## 227 TR Turkiye 4039.998 1981 2022-09-16 TUR
## 228 TR Turkiye 3941.580 1980 2022-09-16 TUR
## 229 TR Turkiye 4132.744 1979 2022-09-16 TUR
## 230 TR Turkiye 4253.077 1978 2022-09-16 TUR
## 231 TR Turkiye 4285.068 1977 2022-09-16 TUR
## 232 TR Turkiye 4238.628 1976 2022-09-16 TUR
## 233 TR Turkiye 3926.339 1975 2022-09-16 TUR
## 234 TR Turkiye 3750.110 1974 2022-09-16 TUR
## 235 TR Turkiye 3636.530 1973 2022-09-16 TUR
## 236 TR Turkiye 3606.832 1972 2022-09-16 TUR
## 237 TR Turkiye 3438.971 1971 2022-09-16 TUR
## 238 TR Turkiye 3336.492 1970 2022-09-16 TUR
## 239 TR Turkiye 3309.892 1969 2022-09-16 TUR
## 240 TR Turkiye 3256.504 1968 2022-09-16 TUR
## 241 TR Turkiye 3122.890 1967 2022-09-16 TUR
## 242 TR Turkiye 3053.271 1966 2022-09-16 TUR
## 243 TR Turkiye 2811.424 1965 2022-09-16 TUR
## 244 TR Turkiye 2800.104 1964 2022-09-16 TUR
## 245 TR Turkiye 2719.253 1963 2022-09-16 TUR
## 246 TR Turkiye 2553.614 1962 2022-09-16 TUR
## 247 TR Turkiye 2477.795 1961 2022-09-16 TUR
## 248 TR Turkiye 2509.623 1960 2022-09-16 TUR
## region capital longitude latitude
## 1 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 2 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 3 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 4 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 5 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 6 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 7 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 8 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 9 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 10 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 11 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 12 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 13 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 14 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 15 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 16 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 17 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 18 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 19 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 20 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 21 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 22 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 23 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 24 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 25 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 26 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 27 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 28 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 29 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 30 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 31 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 32 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 33 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 34 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 35 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 36 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 37 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 38 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 39 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 40 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 41 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 42 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 43 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 44 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 45 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 46 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 47 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 48 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 49 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 50 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 51 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 52 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 53 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 54 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 55 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 56 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 57 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 58 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 59 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 60 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 61 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 62 Sub-Saharan Africa Yamoussoukro -4.0305 5.332
## 63 Latin America & Caribbean Willemstad
## 64 Latin America & Caribbean Willemstad
## 65 Latin America & Caribbean Willemstad
## 66 Latin America & Caribbean Willemstad
## 67 Latin America & Caribbean Willemstad
## 68 Latin America & Caribbean Willemstad
## 69 Latin America & Caribbean Willemstad
## 70 Latin America & Caribbean Willemstad
## 71 Latin America & Caribbean Willemstad
## 72 Latin America & Caribbean Willemstad
## 73 Latin America & Caribbean Willemstad
## 74 Latin America & Caribbean Willemstad
## 75 Latin America & Caribbean Willemstad
## 76 Latin America & Caribbean Willemstad
## 77 Latin America & Caribbean Willemstad
## 78 Latin America & Caribbean Willemstad
## 79 Latin America & Caribbean Willemstad
## 80 Latin America & Caribbean Willemstad
## 81 Latin America & Caribbean Willemstad
## 82 Latin America & Caribbean Willemstad
## 83 Latin America & Caribbean Willemstad
## 84 Latin America & Caribbean Willemstad
## 85 Latin America & Caribbean Willemstad
## 86 Latin America & Caribbean Willemstad
## 87 Latin America & Caribbean Willemstad
## 88 Latin America & Caribbean Willemstad
## 89 Latin America & Caribbean Willemstad
## 90 Latin America & Caribbean Willemstad
## 91 Latin America & Caribbean Willemstad
## 92 Latin America & Caribbean Willemstad
## 93 Latin America & Caribbean Willemstad
## 94 Latin America & Caribbean Willemstad
## 95 Latin America & Caribbean Willemstad
## 96 Latin America & Caribbean Willemstad
## 97 Latin America & Caribbean Willemstad
## 98 Latin America & Caribbean Willemstad
## 99 Latin America & Caribbean Willemstad
## 100 Latin America & Caribbean Willemstad
## 101 Latin America & Caribbean Willemstad
## 102 Latin America & Caribbean Willemstad
## 103 Latin America & Caribbean Willemstad
## 104 Latin America & Caribbean Willemstad
## 105 Latin America & Caribbean Willemstad
## 106 Latin America & Caribbean Willemstad
## 107 Latin America & Caribbean Willemstad
## 108 Latin America & Caribbean Willemstad
## 109 Latin America & Caribbean Willemstad
## 110 Latin America & Caribbean Willemstad
## 111 Latin America & Caribbean Willemstad
## 112 Latin America & Caribbean Willemstad
## 113 Latin America & Caribbean Willemstad
## 114 Latin America & Caribbean Willemstad
## 115 Latin America & Caribbean Willemstad
## 116 Latin America & Caribbean Willemstad
## 117 Latin America & Caribbean Willemstad
## 118 Latin America & Caribbean Willemstad
## 119 Latin America & Caribbean Willemstad
## 120 Latin America & Caribbean Willemstad
## 121 Latin America & Caribbean Willemstad
## 122 Latin America & Caribbean Willemstad
## 123 Latin America & Caribbean Willemstad
## 124 Latin America & Caribbean Willemstad
## 125 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 126 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 127 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 128 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 129 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 130 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 131 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 132 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 133 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 134 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 135 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 136 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 137 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 138 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 139 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 140 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 141 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 142 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 143 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 144 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 145 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 146 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 147 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 148 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 149 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 150 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 151 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 152 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 153 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 154 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 155 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 156 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 157 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 158 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 159 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 160 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 161 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 162 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 163 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 164 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 165 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 166 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 167 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 168 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 169 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 170 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 171 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 172 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 173 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 174 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 175 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 176 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 177 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 178 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 179 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 180 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 181 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 182 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 183 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 184 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 185 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 186 Sub-Saharan Africa Sao Tome 6.6071 0.20618
## 187 Europe & Central Asia Ankara 32.3606 39.7153
## 188 Europe & Central Asia Ankara 32.3606 39.7153
## 189 Europe & Central Asia Ankara 32.3606 39.7153
## 190 Europe & Central Asia Ankara 32.3606 39.7153
## 191 Europe & Central Asia Ankara 32.3606 39.7153
## 192 Europe & Central Asia Ankara 32.3606 39.7153
## 193 Europe & Central Asia Ankara 32.3606 39.7153
## 194 Europe & Central Asia Ankara 32.3606 39.7153
## 195 Europe & Central Asia Ankara 32.3606 39.7153
## 196 Europe & Central Asia Ankara 32.3606 39.7153
## 197 Europe & Central Asia Ankara 32.3606 39.7153
## 198 Europe & Central Asia Ankara 32.3606 39.7153
## 199 Europe & Central Asia Ankara 32.3606 39.7153
## 200 Europe & Central Asia Ankara 32.3606 39.7153
## 201 Europe & Central Asia Ankara 32.3606 39.7153
## 202 Europe & Central Asia Ankara 32.3606 39.7153
## 203 Europe & Central Asia Ankara 32.3606 39.7153
## 204 Europe & Central Asia Ankara 32.3606 39.7153
## 205 Europe & Central Asia Ankara 32.3606 39.7153
## 206 Europe & Central Asia Ankara 32.3606 39.7153
## 207 Europe & Central Asia Ankara 32.3606 39.7153
## 208 Europe & Central Asia Ankara 32.3606 39.7153
## 209 Europe & Central Asia Ankara 32.3606 39.7153
## 210 Europe & Central Asia Ankara 32.3606 39.7153
## 211 Europe & Central Asia Ankara 32.3606 39.7153
## 212 Europe & Central Asia Ankara 32.3606 39.7153
## 213 Europe & Central Asia Ankara 32.3606 39.7153
## 214 Europe & Central Asia Ankara 32.3606 39.7153
## 215 Europe & Central Asia Ankara 32.3606 39.7153
## 216 Europe & Central Asia Ankara 32.3606 39.7153
## 217 Europe & Central Asia Ankara 32.3606 39.7153
## 218 Europe & Central Asia Ankara 32.3606 39.7153
## 219 Europe & Central Asia Ankara 32.3606 39.7153
## 220 Europe & Central Asia Ankara 32.3606 39.7153
## 221 Europe & Central Asia Ankara 32.3606 39.7153
## 222 Europe & Central Asia Ankara 32.3606 39.7153
## 223 Europe & Central Asia Ankara 32.3606 39.7153
## 224 Europe & Central Asia Ankara 32.3606 39.7153
## 225 Europe & Central Asia Ankara 32.3606 39.7153
## 226 Europe & Central Asia Ankara 32.3606 39.7153
## 227 Europe & Central Asia Ankara 32.3606 39.7153
## 228 Europe & Central Asia Ankara 32.3606 39.7153
## 229 Europe & Central Asia Ankara 32.3606 39.7153
## 230 Europe & Central Asia Ankara 32.3606 39.7153
## 231 Europe & Central Asia Ankara 32.3606 39.7153
## 232 Europe & Central Asia Ankara 32.3606 39.7153
## 233 Europe & Central Asia Ankara 32.3606 39.7153
## 234 Europe & Central Asia Ankara 32.3606 39.7153
## 235 Europe & Central Asia Ankara 32.3606 39.7153
## 236 Europe & Central Asia Ankara 32.3606 39.7153
## 237 Europe & Central Asia Ankara 32.3606 39.7153
## 238 Europe & Central Asia Ankara 32.3606 39.7153
## 239 Europe & Central Asia Ankara 32.3606 39.7153
## 240 Europe & Central Asia Ankara 32.3606 39.7153
## 241 Europe & Central Asia Ankara 32.3606 39.7153
## 242 Europe & Central Asia Ankara 32.3606 39.7153
## 243 Europe & Central Asia Ankara 32.3606 39.7153
## 244 Europe & Central Asia Ankara 32.3606 39.7153
## 245 Europe & Central Asia Ankara 32.3606 39.7153
## 246 Europe & Central Asia Ankara 32.3606 39.7153
## 247 Europe & Central Asia Ankara 32.3606 39.7153
## 248 Europe & Central Asia Ankara 32.3606 39.7153
## income lending
## 1 Lower middle income IDA
## 2 Lower middle income IDA
## 3 Lower middle income IDA
## 4 Lower middle income IDA
## 5 Lower middle income IDA
## 6 Lower middle income IDA
## 7 Lower middle income IDA
## 8 Lower middle income IDA
## 9 Lower middle income IDA
## 10 Lower middle income IDA
## 11 Lower middle income IDA
## 12 Lower middle income IDA
## 13 Lower middle income IDA
## 14 Lower middle income IDA
## 15 Lower middle income IDA
## 16 Lower middle income IDA
## 17 Lower middle income IDA
## 18 Lower middle income IDA
## 19 Lower middle income IDA
## 20 Lower middle income IDA
## 21 Lower middle income IDA
## 22 Lower middle income IDA
## 23 Lower middle income IDA
## 24 Lower middle income IDA
## 25 Lower middle income IDA
## 26 Lower middle income IDA
## 27 Lower middle income IDA
## 28 Lower middle income IDA
## 29 Lower middle income IDA
## 30 Lower middle income IDA
## 31 Lower middle income IDA
## 32 Lower middle income IDA
## 33 Lower middle income IDA
## 34 Lower middle income IDA
## 35 Lower middle income IDA
## 36 Lower middle income IDA
## 37 Lower middle income IDA
## 38 Lower middle income IDA
## 39 Lower middle income IDA
## 40 Lower middle income IDA
## 41 Lower middle income IDA
## 42 Lower middle income IDA
## 43 Lower middle income IDA
## 44 Lower middle income IDA
## 45 Lower middle income IDA
## 46 Lower middle income IDA
## 47 Lower middle income IDA
## 48 Lower middle income IDA
## 49 Lower middle income IDA
## 50 Lower middle income IDA
## 51 Lower middle income IDA
## 52 Lower middle income IDA
## 53 Lower middle income IDA
## 54 Lower middle income IDA
## 55 Lower middle income IDA
## 56 Lower middle income IDA
## 57 Lower middle income IDA
## 58 Lower middle income IDA
## 59 Lower middle income IDA
## 60 Lower middle income IDA
## 61 Lower middle income IDA
## 62 Lower middle income IDA
## 63 High income Not classified
## 64 High income Not classified
## 65 High income Not classified
## 66 High income Not classified
## 67 High income Not classified
## 68 High income Not classified
## 69 High income Not classified
## 70 High income Not classified
## 71 High income Not classified
## 72 High income Not classified
## 73 High income Not classified
## 74 High income Not classified
## 75 High income Not classified
## 76 High income Not classified
## 77 High income Not classified
## 78 High income Not classified
## 79 High income Not classified
## 80 High income Not classified
## 81 High income Not classified
## 82 High income Not classified
## 83 High income Not classified
## 84 High income Not classified
## 85 High income Not classified
## 86 High income Not classified
## 87 High income Not classified
## 88 High income Not classified
## 89 High income Not classified
## 90 High income Not classified
## 91 High income Not classified
## 92 High income Not classified
## 93 High income Not classified
## 94 High income Not classified
## 95 High income Not classified
## 96 High income Not classified
## 97 High income Not classified
## 98 High income Not classified
## 99 High income Not classified
## 100 High income Not classified
## 101 High income Not classified
## 102 High income Not classified
## 103 High income Not classified
## 104 High income Not classified
## 105 High income Not classified
## 106 High income Not classified
## 107 High income Not classified
## 108 High income Not classified
## 109 High income Not classified
## 110 High income Not classified
## 111 High income Not classified
## 112 High income Not classified
## 113 High income Not classified
## 114 High income Not classified
## 115 High income Not classified
## 116 High income Not classified
## 117 High income Not classified
## 118 High income Not classified
## 119 High income Not classified
## 120 High income Not classified
## 121 High income Not classified
## 122 High income Not classified
## 123 High income Not classified
## 124 High income Not classified
## 125 Lower middle income IDA
## 126 Lower middle income IDA
## 127 Lower middle income IDA
## 128 Lower middle income IDA
## 129 Lower middle income IDA
## 130 Lower middle income IDA
## 131 Lower middle income IDA
## 132 Lower middle income IDA
## 133 Lower middle income IDA
## 134 Lower middle income IDA
## 135 Lower middle income IDA
## 136 Lower middle income IDA
## 137 Lower middle income IDA
## 138 Lower middle income IDA
## 139 Lower middle income IDA
## 140 Lower middle income IDA
## 141 Lower middle income IDA
## 142 Lower middle income IDA
## 143 Lower middle income IDA
## 144 Lower middle income IDA
## 145 Lower middle income IDA
## 146 Lower middle income IDA
## 147 Lower middle income IDA
## 148 Lower middle income IDA
## 149 Lower middle income IDA
## 150 Lower middle income IDA
## 151 Lower middle income IDA
## 152 Lower middle income IDA
## 153 Lower middle income IDA
## 154 Lower middle income IDA
## 155 Lower middle income IDA
## 156 Lower middle income IDA
## 157 Lower middle income IDA
## 158 Lower middle income IDA
## 159 Lower middle income IDA
## 160 Lower middle income IDA
## 161 Lower middle income IDA
## 162 Lower middle income IDA
## 163 Lower middle income IDA
## 164 Lower middle income IDA
## 165 Lower middle income IDA
## 166 Lower middle income IDA
## 167 Lower middle income IDA
## 168 Lower middle income IDA
## 169 Lower middle income IDA
## 170 Lower middle income IDA
## 171 Lower middle income IDA
## 172 Lower middle income IDA
## 173 Lower middle income IDA
## 174 Lower middle income IDA
## 175 Lower middle income IDA
## 176 Lower middle income IDA
## 177 Lower middle income IDA
## 178 Lower middle income IDA
## 179 Lower middle income IDA
## 180 Lower middle income IDA
## 181 Lower middle income IDA
## 182 Lower middle income IDA
## 183 Lower middle income IDA
## 184 Lower middle income IDA
## 185 Lower middle income IDA
## 186 Lower middle income IDA
## 187 Upper middle income IBRD
## 188 Upper middle income IBRD
## 189 Upper middle income IBRD
## 190 Upper middle income IBRD
## 191 Upper middle income IBRD
## 192 Upper middle income IBRD
## 193 Upper middle income IBRD
## 194 Upper middle income IBRD
## 195 Upper middle income IBRD
## 196 Upper middle income IBRD
## 197 Upper middle income IBRD
## 198 Upper middle income IBRD
## 199 Upper middle income IBRD
## 200 Upper middle income IBRD
## 201 Upper middle income IBRD
## 202 Upper middle income IBRD
## 203 Upper middle income IBRD
## 204 Upper middle income IBRD
## 205 Upper middle income IBRD
## 206 Upper middle income IBRD
## 207 Upper middle income IBRD
## 208 Upper middle income IBRD
## 209 Upper middle income IBRD
## 210 Upper middle income IBRD
## 211 Upper middle income IBRD
## 212 Upper middle income IBRD
## 213 Upper middle income IBRD
## 214 Upper middle income IBRD
## 215 Upper middle income IBRD
## 216 Upper middle income IBRD
## 217 Upper middle income IBRD
## 218 Upper middle income IBRD
## 219 Upper middle income IBRD
## 220 Upper middle income IBRD
## 221 Upper middle income IBRD
## 222 Upper middle income IBRD
## 223 Upper middle income IBRD
## 224 Upper middle income IBRD
## 225 Upper middle income IBRD
## 226 Upper middle income IBRD
## 227 Upper middle income IBRD
## 228 Upper middle income IBRD
## 229 Upper middle income IBRD
## 230 Upper middle income IBRD
## 231 Upper middle income IBRD
## 232 Upper middle income IBRD
## 233 Upper middle income IBRD
## 234 Upper middle income IBRD
## 235 Upper middle income IBRD
## 236 Upper middle income IBRD
## 237 Upper middle income IBRD
## 238 Upper middle income IBRD
## 239 Upper middle income IBRD
## 240 Upper middle income IBRD
## 241 Upper middle income IBRD
## 242 Upper middle income IBRD
## 243 Upper middle income IBRD
## 244 Upper middle income IBRD
## 245 Upper middle income IBRD
## 246 Upper middle income IBRD
## 247 Upper middle income IBRD
## 248 Upper middle income IBRD
gdp_pcap %>% anti_join(wb_countries)## Joining, by = "country"
## iso2c country NY.GDP.PCAP.KD
## 1 ZH Africa Eastern and Southern 1477.2493
## 2 ZH Africa Eastern and Southern 1452.7303
## 3 ZH Africa Eastern and Southern 1534.8901
## 4 ZH Africa Eastern and Southern 1544.0780
## 5 ZH Africa Eastern and Southern 1546.7956
## 6 ZH Africa Eastern and Southern 1548.8131
## 7 ZH Africa Eastern and Southern 1556.3165
## 8 ZH Africa Eastern and Southern 1552.9870
## 9 ZH Africa Eastern and Southern 1534.5577
## 10 ZH Africa Eastern and Southern 1513.3697
## 11 ZH Africa Eastern and Southern 1540.9664
## 12 ZH Africa Eastern and Southern 1527.2297
## 13 ZH Africa Eastern and Southern 1492.3036
## 14 ZH Africa Eastern and Southern 1521.5296
## 15 ZH Africa Eastern and Southern 1497.8568
## 16 ZH Africa Eastern and Southern 1443.0440
## 17 ZH Africa Eastern and Southern 1390.6454
## 18 ZH Africa Eastern and Southern 1345.4233
## 19 ZH Africa Eastern and Southern 1308.9207
## 20 ZH Africa Eastern and Southern 1303.1937
## 21 ZH Africa Eastern and Southern 1287.2158
## 22 ZH Africa Eastern and Southern 1274.2504
## 23 ZH Africa Eastern and Southern 1265.1452
## 24 ZH Africa Eastern and Southern 1264.8553
## 25 ZH Africa Eastern and Southern 1274.4565
## 26 ZH Africa Eastern and Southern 1252.7195
## 27 ZH Africa Eastern and Southern 1219.8938
## 28 ZH Africa Eastern and Southern 1201.4085
## 29 ZH Africa Eastern and Southern 1209.9519
## 30 ZH Africa Eastern and Southern 1248.6235
## 31 ZH Africa Eastern and Southern 1309.9094
## 32 ZH Africa Eastern and Southern 1346.1004
## 33 ZH Africa Eastern and Southern 1385.8630
## 34 ZH Africa Eastern and Southern 1386.6545
## 35 ZH Africa Eastern and Southern 1373.1796
## 36 ZH Africa Eastern and Southern 1356.9575
## 37 ZH Africa Eastern and Southern 1366.3952
## 38 ZH Africa Eastern and Southern 1413.5308
## 39 ZH Africa Eastern and Southern 1413.1155
## 40 ZH Africa Eastern and Southern 1452.8100
## 41 ZH Africa Eastern and Southern 1488.3235
## 42 ZH Africa Eastern and Southern 1468.9210
## 43 ZH Africa Eastern and Southern 1434.8515
## 44 ZH Africa Eastern and Southern 1437.3183
## 45 ZH Africa Eastern and Southern 1464.8120
## 46 ZH Africa Eastern and Southern 1489.8486
## 47 ZH Africa Eastern and Southern 1491.3640
## 48 ZH Africa Eastern and Southern 1509.0984
## 49 ZH Africa Eastern and Southern 1466.8759
## 50 ZH Africa Eastern and Southern 1445.3727
## 51 ZH Africa Eastern and Southern 1455.6812
## 52 ZH Africa Eastern and Southern 1420.7694
## 53 ZH Africa Eastern and Southern 1395.0444
## 54 ZH Africa Eastern and Southern 1361.7142
## 55 ZH Africa Eastern and Southern 1344.7552
## 56 ZH Africa Eastern and Southern 1312.0850
## 57 ZH Africa Eastern and Southern 1296.4906
## 58 ZH Africa Eastern and Southern 1263.6101
## 59 ZH Africa Eastern and Southern 1240.0882
## 60 ZH Africa Eastern and Southern 1209.9305
## 61 ZH Africa Eastern and Southern 1149.3606
## 62 ZH Africa Eastern and Southern 1175.7353
## 63 ZI Africa Western and Central 1810.9278
## 64 ZI Africa Western and Central 1788.6472
## 65 ZI Africa Western and Central 1852.8617
## 66 ZI Africa Western and Central 1843.5547
## 67 ZI Africa Western and Central 1839.1134
## 68 ZI Africa Western and Central 1846.3329
## 69 ZI Africa Western and Central 1894.3221
## 70 ZI Africa Western and Central 1894.1827
## 71 ZI Africa Western and Central 1837.2858
## 72 ZI Africa Western and Central 1779.2668
## 73 ZI Africa Western and Central 1739.0052
## 74 ZI Africa Western and Central 1704.6199
## 75 ZI Africa Western and Central 1638.1663
## 76 ZI Africa Western and Central 1584.5557
## 77 ZI Africa Western and Central 1532.6545
## 78 ZI Africa Western and Central 1492.8292
## 79 ZI Africa Western and Central 1455.9409
## 80 ZI Africa Western and Central 1413.2780
## 81 ZI Africa Western and Central 1344.0622
## 82 ZI Africa Western and Central 1308.2395
## 83 ZI Africa Western and Central 1222.5315
## 84 ZI Africa Western and Central 1193.3549
## 85 ZI Africa Western and Central 1181.5388
## 86 ZI Africa Western and Central 1196.5717
## 87 ZI Africa Western and Central 1187.3887
## 88 ZI Africa Western and Central 1169.9849
## 89 ZI Africa Western and Central 1148.3840
## 90 ZI Africa Western and Central 1156.9333
## 91 ZI Africa Western and Central 1191.4801
## 92 ZI Africa Western and Central 1237.7215
## 93 ZI Africa Western and Central 1237.5945
## 94 ZI Africa Western and Central 1256.9107
## 95 ZI Africa Western and Central 1211.5714
## 96 ZI Africa Western and Central 1217.0848
## 97 ZI Africa Western and Central 1192.8205
## 98 ZI Africa Western and Central 1208.3095
## 99 ZI Africa Western and Central 1224.4947
## 100 ZI Africa Western and Central 1192.3263
## 101 ZI Africa Western and Central 1218.7008
## 102 ZI Africa Western and Central 1340.2363
## 103 ZI Africa Western and Central 1425.3480
## 104 ZI Africa Western and Central 1574.1754
## 105 ZI Africa Western and Central 1586.3064
## 106 ZI Africa Western and Central 1549.2626
## 107 ZI Africa Western and Central 1627.6446
## 108 ZI Africa Western and Central 1596.4613
## 109 ZI Africa Western and Central 1509.6255
## 110 ZI Africa Western and Central 1583.4160
## 111 ZI Africa Western and Central 1472.9998
## 112 ZI Africa Western and Central 1448.9047
## 113 ZI Africa Western and Central 1439.3126
## 114 ZI Africa Western and Central 1330.4162
## 115 ZI Africa Western and Central 1155.2404
## 116 ZI Africa Western and Central 1023.7001
## 117 ZI Africa Western and Central 1032.1586
## 118 ZI Africa Western and Central 1167.0360
## 119 ZI Africa Western and Central 1214.9844
## 120 ZI Africa Western and Central 1193.6896
## 121 ZI Africa Western and Central 1157.5209
## 122 ZI Africa Western and Central 1102.4994
## 123 ZI Africa Western and Central 1085.1126
## 124 ZI Africa Western and Central 1087.6399
## 125 1A Arab World 6050.1186
## 126 1A Arab World 5956.8778
## 127 1A Arab World 6394.1795
## 128 1A Arab World 6414.5397
## 129 1A Arab World 6386.7222
## 130 1A Arab World 6431.6762
## 131 1A Arab World 6359.9006
## 132 1A Arab World 6300.8314
## 133 1A Arab World 6289.2469
## 134 1A Arab World 6268.3527
## 135 1A Arab World 6101.6453
## 136 1A Arab World 6047.6162
## 137 1A Arab World 5910.7934
## 138 1A Arab World 6029.5848
## 139 1A Arab World 5852.0977
## 140 1A Arab World 5732.2290
## 141 1A Arab World 5532.0994
## 142 1A Arab World 5363.6378
## 143 1A Arab World 5037.7877
## 144 1A Arab World 4908.9391
## 145 1A Arab World 4981.0741
## 146 1A Arab World 5002.8173
## 147 1A Arab World 4796.7989
## 148 1A Arab World 4812.0308
## 149 1A Arab World 4676.4500
## 150 1A Arab World 4565.3656
## 151 1A Arab World 4461.2518
## 152 1A Arab World 4464.8854
## 153 1A Arab World 4434.6500
## 154 1A Arab World 4414.6321
## 155 1A Arab World 4274.2966
## 156 1A Arab World 4287.5620
## 157 1A Arab World 3966.7263
## 158 1A Arab World 3992.0174
## 159 1A Arab World 3880.4220
## 160 1A Arab World 3996.6258
## 161 1A Arab World 3938.2793
## 162 1A Arab World 4140.6767
## 163 1A Arab World 4212.7227
## 164 1A Arab World 4631.5414
## 165 1A Arab World 5210.5421
## 166 1A Arab World 5201.4690
## 167 1A Arab World 4926.0734
## 168 1A Arab World 4585.6763
## 169 1A Arab World 4765.6558
## 170 1A Arab World 4552.6175
## 171 1A Arab World 4057.2454
## 172 1A Arab World NA
## 173 1A Arab World NA
## 174 1A Arab World NA
## 175 1A Arab World NA
## 176 1A Arab World NA
## 177 1A Arab World NA
## 178 1A Arab World NA
## 179 1A Arab World NA
## 180 1A Arab World NA
## 181 1A Arab World NA
## 182 1A Arab World NA
## 183 1A Arab World NA
## 184 1A Arab World NA
## 185 1A Arab World NA
## 186 1A Arab World NA
## 187 S3 Caribbean small states 9491.6662
## 188 S3 Caribbean small states 9074.1279
## 189 S3 Caribbean small states 10065.1249
## 190 S3 Caribbean small states 10012.8163
## 191 S3 Caribbean small states 9930.1922
## 192 S3 Caribbean small states 9949.4161
## 193 S3 Caribbean small states 10181.8062
## 194 S3 Caribbean small states 10139.9499
## 195 S3 Caribbean small states 10142.2789
## 196 S3 Caribbean small states 10138.0092
## 197 S3 Caribbean small states 10071.4687
## 198 S3 Caribbean small states 10029.6732
## 199 S3 Caribbean small states 9963.7861
## 200 S3 Caribbean small states 10398.4859
## 201 S3 Caribbean small states 10333.1054
## 202 S3 Caribbean small states 10067.7067
## 203 S3 Caribbean small states 9488.3207
## 204 S3 Caribbean small states 9218.3120
## 205 S3 Caribbean small states 8929.3233
## 206 S3 Caribbean small states 8513.8911
## 207 S3 Caribbean small states 8275.7979
## 208 S3 Caribbean small states 8167.4401
## 209 S3 Caribbean small states 7928.4577
## 210 S3 Caribbean small states 7598.9366
## 211 S3 Caribbean small states 7562.5086
## 212 S3 Caribbean small states 7321.2423
## 213 S3 Caribbean small states 7130.0378
## 214 S3 Caribbean small states 6987.2916
## 215 S3 Caribbean small states 6859.5412
## 216 S3 Caribbean small states 6727.8155
## 217 S3 Caribbean small states 6642.6054
## 218 S3 Caribbean small states 6609.3275
## 219 S3 Caribbean small states 6596.8624
## 220 S3 Caribbean small states 6373.7438
## 221 S3 Caribbean small states 6275.3442
## 222 S3 Caribbean small states 6203.6904
## 223 S3 Caribbean small states 6172.5326
## 224 S3 Caribbean small states 6228.9254
## 225 S3 Caribbean small states 6238.3365
## 226 S3 Caribbean small states 6472.4708
## 227 S3 Caribbean small states 6485.7754
## 228 S3 Caribbean small states 6502.2769
## 229 S3 Caribbean small states 6417.9196
## 230 S3 Caribbean small states 6169.2728
## 231 S3 Caribbean small states 5894.8936
## 232 S3 Caribbean small states 5737.5434
## 233 S3 Caribbean small states 5730.0831
## 234 S3 Caribbean small states 5867.0473
## 235 S3 Caribbean small states 6131.4852
## 236 S3 Caribbean small states 6241.0865
## 237 S3 Caribbean small states 5890.8501
## 238 S3 Caribbean small states 5836.8617
## 239 S3 Caribbean small states 5655.3970
## 240 S3 Caribbean small states 5423.2888
## 241 S3 Caribbean small states 5187.1854
## 242 S3 Caribbean small states 5035.1665
## 243 S3 Caribbean small states NA
## 244 S3 Caribbean small states NA
## 245 S3 Caribbean small states NA
## 246 S3 Caribbean small states NA
## 247 S3 Caribbean small states NA
## 248 S3 Caribbean small states NA
## 249 B8 Central Europe and the Baltics 15187.5802
## 250 B8 Central Europe and the Baltics 14316.2584
## 251 B8 Central Europe and the Baltics 14844.3166
## 252 B8 Central Europe and the Baltics 14244.0241
## 253 B8 Central Europe and the Baltics 13605.0467
## 254 B8 Central Europe and the Baltics 12940.1793
## 255 B8 Central Europe and the Baltics 12522.6611
## 256 B8 Central Europe and the Baltics 12019.3545
## 257 B8 Central Europe and the Baltics 11646.6681
## 258 B8 Central Europe and the Baltics 11479.5755
## 259 B8 Central Europe and the Baltics 11366.5397
## 260 B8 Central Europe and the Baltics 11002.4434
## 261 B8 Central Europe and the Baltics 10779.6995
## 262 B8 Central Europe and the Baltics 11149.1079
## 263 B8 Central Europe and the Baltics 10689.3952
## 264 B8 Central Europe and the Baltics 10006.8693
## 265 B8 Central Europe and the Baltics 9364.5451
## 266 B8 Central Europe and the Baltics 8892.7063
## 267 B8 Central Europe and the Baltics 8379.3178
## 268 B8 Central Europe and the Baltics 8025.2415
## 269 B8 Central Europe and the Baltics 7695.4741
## 270 B8 Central Europe and the Baltics 7411.7233
## 271 B8 Central Europe and the Baltics 7089.6327
## 272 B8 Central Europe and the Baltics 6945.4498
## 273 B8 Central Europe and the Baltics 6752.6852
## 274 B8 Central Europe and the Baltics 6587.4083
## 275 B8 Central Europe and the Baltics 6287.4336
## 276 B8 Central Europe and the Baltics 5939.1689
## 277 B8 Central Europe and the Baltics 5703.8778
## 278 B8 Central Europe and the Baltics 5613.4095
## 279 B8 Central Europe and the Baltics 5706.5689
## 280 B8 Central Europe and the Baltics 6308.5478
## 281 B8 Central Europe and the Baltics NA
## 282 B8 Central Europe and the Baltics NA
## 283 B8 Central Europe and the Baltics NA
## 284 B8 Central Europe and the Baltics NA
## 285 B8 Central Europe and the Baltics NA
## 286 B8 Central Europe and the Baltics NA
## 287 B8 Central Europe and the Baltics NA
## 288 B8 Central Europe and the Baltics NA
## 289 B8 Central Europe and the Baltics NA
## 290 B8 Central Europe and the Baltics NA
## 291 B8 Central Europe and the Baltics NA
## 292 B8 Central Europe and the Baltics NA
## 293 B8 Central Europe and the Baltics NA
## 294 B8 Central Europe and the Baltics NA
## 295 B8 Central Europe and the Baltics NA
## 296 B8 Central Europe and the Baltics NA
## 297 B8 Central Europe and the Baltics NA
## 298 B8 Central Europe and the Baltics NA
## 299 B8 Central Europe and the Baltics NA
## 300 B8 Central Europe and the Baltics NA
## 301 B8 Central Europe and the Baltics NA
## 302 B8 Central Europe and the Baltics NA
## 303 B8 Central Europe and the Baltics NA
## 304 B8 Central Europe and the Baltics NA
## 305 B8 Central Europe and the Baltics NA
## 306 B8 Central Europe and the Baltics NA
## 307 B8 Central Europe and the Baltics NA
## 308 B8 Central Europe and the Baltics NA
## 309 B8 Central Europe and the Baltics NA
## 310 B8 Central Europe and the Baltics NA
## 311 V2 Early-demographic dividend 3557.4062
## 312 V2 Early-demographic dividend 3374.1530
## 313 V2 Early-demographic dividend 3573.6698
## 314 V2 Early-demographic dividend 3535.7600
## 315 V2 Early-demographic dividend 3450.9777
## 316 V2 Early-demographic dividend 3344.8749
## 317 V2 Early-demographic dividend 3244.2370
## 318 V2 Early-demographic dividend 3148.5040
## 319 V2 Early-demographic dividend 3064.8153
## 320 V2 Early-demographic dividend 2984.9513
## 321 V2 Early-demographic dividend 2905.1760
## 322 V2 Early-demographic dividend 2810.7522
## 323 V2 Early-demographic dividend 2678.3504
## 324 V2 Early-demographic dividend 2697.2668
## 325 V2 Early-demographic dividend 2646.9301
## 326 V2 Early-demographic dividend 2542.2330
## 327 V2 Early-demographic dividend 2437.4497
## 328 V2 Early-demographic dividend 2339.0860
## 329 V2 Early-demographic dividend 2238.1810
## 330 V2 Early-demographic dividend 2158.8911
## 331 V2 Early-demographic dividend 2156.9841
## 332 V2 Early-demographic dividend 2172.5720
## 333 V2 Early-demographic dividend 2118.7942
## 334 V2 Early-demographic dividend 2114.1347
## 335 V2 Early-demographic dividend 2105.6435
## 336 V2 Early-demographic dividend 2049.3308
## 337 V2 Early-demographic dividend 1973.6866
## 338 V2 Early-demographic dividend 1966.0446
## 339 V2 Early-demographic dividend 1940.0199
## 340 V2 Early-demographic dividend 1915.7841
## 341 V2 Early-demographic dividend 1881.0694
## 342 V2 Early-demographic dividend 1837.5154
## 343 V2 Early-demographic dividend 1784.1833
## 344 V2 Early-demographic dividend 1783.9717
## 345 V2 Early-demographic dividend 1763.5420
## 346 V2 Early-demographic dividend 1758.6606
## 347 V2 Early-demographic dividend 1750.3815
## 348 V2 Early-demographic dividend 1780.8448
## 349 V2 Early-demographic dividend 1787.1850
## 350 V2 Early-demographic dividend 1825.2071
## 351 V2 Early-demographic dividend 1876.7097
## 352 V2 Early-demographic dividend 1853.3282
## 353 V2 Early-demographic dividend 1835.0765
## 354 V2 Early-demographic dividend 1807.6229
## 355 V2 Early-demographic dividend 1828.5755
## 356 V2 Early-demographic dividend 1799.2986
## 357 V2 Early-demographic dividend 1719.6648
## 358 V2 Early-demographic dividend 1719.9641
## 359 V2 Early-demographic dividend 1651.4931
## 360 V2 Early-demographic dividend 1576.2415
## 361 V2 Early-demographic dividend 1510.8980
## 362 V2 Early-demographic dividend 1461.4032
## 363 V2 Early-demographic dividend 1378.7520
## 364 V2 Early-demographic dividend 1326.2487
## 365 V2 Early-demographic dividend 1276.0585
## 366 V2 Early-demographic dividend 1239.9694
## 367 V2 Early-demographic dividend 1221.0010
## 368 V2 Early-demographic dividend 1185.9062
## 369 V2 Early-demographic dividend 1124.1889
## 370 V2 Early-demographic dividend 1099.5948
## 371 V2 Early-demographic dividend 1088.5022
## 372 V2 Early-demographic dividend 1067.3196
## 373 Z4 East Asia & Pacific 11742.1848
## 374 Z4 East Asia & Pacific 11136.1388
## 375 Z4 East Asia & Pacific 11205.0905
## 376 Z4 East Asia & Pacific 10834.3641
## 377 Z4 East Asia & Pacific 10407.4968
## 378 Z4 East Asia & Pacific 9977.1688
## 379 Z4 East Asia & Pacific 9599.4141
## 380 Z4 East Asia & Pacific 9233.1781
## 381 Z4 East Asia & Pacific 8880.8137
## 382 Z4 East Asia & Pacific 8504.5015
## 383 Z4 East Asia & Pacific 8149.9863
## 384 Z4 East Asia & Pacific 7781.9495
## 385 Z4 East Asia & Pacific 7280.4367
## 386 Z4 East Asia & Pacific 7147.2820
## 387 Z4 East Asia & Pacific 6895.2684
## 388 Z4 East Asia & Pacific 6460.9415
## 389 Z4 East Asia & Pacific 6113.5130
## 390 Z4 East Asia & Pacific 5815.5643
## 391 Z4 East Asia & Pacific 5534.6638
## 392 Z4 East Asia & Pacific 5315.2696
## 393 Z4 East Asia & Pacific 5134.7148
## 394 Z4 East Asia & Pacific 5014.7923
## 395 Z4 East Asia & Pacific 4802.7071
## 396 Z4 East Asia & Pacific 4675.8439
## 397 Z4 East Asia & Pacific 4705.1454
## 398 Z4 East Asia & Pacific 4572.7208
## 399 Z4 East Asia & Pacific 4379.8086
## 400 Z4 East Asia & Pacific 4194.2748
## 401 Z4 East Asia & Pacific 4034.5038
## 402 Z4 East Asia & Pacific 3920.3478
## 403 Z4 East Asia & Pacific 3810.5792
## 404 Z4 East Asia & Pacific 3686.3515
## 405 Z4 East Asia & Pacific 3561.1547
## 406 Z4 East Asia & Pacific 3439.7545
## 407 Z4 East Asia & Pacific 3248.6004
## 408 Z4 East Asia & Pacific 3107.4087
## 409 Z4 East Asia & Pacific 3008.3925
## 410 Z4 East Asia & Pacific 2889.2258
## 411 Z4 East Asia & Pacific 2762.4244
## 412 Z4 East Asia & Pacific 2687.7984
## 413 Z4 East Asia & Pacific 2622.7986
## 414 Z4 East Asia & Pacific 2543.5323
## 415 Z4 East Asia & Pacific 2486.9485
## 416 Z4 East Asia & Pacific 2384.0238
## 417 Z4 East Asia & Pacific 2287.9274
## 418 Z4 East Asia & Pacific 2203.9993
## 419 Z4 East Asia & Pacific 2150.1046
## 420 Z4 East Asia & Pacific 2112.1946
## 421 Z4 East Asia & Pacific 2138.6472
## 422 Z4 East Asia & Pacific 2031.7090
## 423 Z4 East Asia & Pacific 1940.3266
## 424 Z4 East Asia & Pacific 1892.0122
## 425 Z4 East Asia & Pacific 1842.2580
## 426 Z4 East Asia & Pacific 1695.1401
## 427 Z4 East Asia & Pacific 1586.5298
## 428 Z4 East Asia & Pacific 1509.2334
## 429 Z4 East Asia & Pacific 1425.3032
## 430 Z4 East Asia & Pacific 1363.9317
## 431 Z4 East Asia & Pacific 1262.6157
## 432 Z4 East Asia & Pacific 1199.7228
## 433 Z4 East Asia & Pacific 1153.0285
## 434 Z4 East Asia & Pacific 1113.1851
## 435 4E East Asia & Pacific (excluding high income) 8744.9533
## 436 4E East Asia & Pacific (excluding high income) 8183.6461
## 437 4E East Asia & Pacific (excluding high income) 8118.6307
## 438 4E East Asia & Pacific (excluding high income) 7719.1446
## 439 4E East Asia & Pacific (excluding high income) 7294.4321
## 440 4E East Asia & Pacific (excluding high income) 6888.2504
## 441 4E East Asia & Pacific (excluding high income) 6511.2581
## 442 4E East Asia & Pacific (excluding high income) 6150.0344
## 443 4E East Asia & Pacific (excluding high income) 5795.3349
## 444 4E East Asia & Pacific (excluding high income) 5446.9461
## 445 4E East Asia & Pacific (excluding high income) 5106.7086
## 446 4E East Asia & Pacific (excluding high income) 4735.9544
## 447 4E East Asia & Pacific (excluding high income) 4339.2302
## 448 4E East Asia & Pacific (excluding high income) 4047.3586
## 449 4E East Asia & Pacific (excluding high income) 3753.4062
## 450 4E East Asia & Pacific (excluding high income) 3361.4158
## 451 4E East Asia & Pacific (excluding high income) 3049.5236
## 452 4E East Asia & Pacific (excluding high income) 2795.0580
## 453 4E East Asia & Pacific (excluding high income) 2582.1805
## 454 4E East Asia & Pacific (excluding high income) 2390.1567
## 455 4E East Asia & Pacific (excluding high income) 2231.4093
## 456 4E East Asia & Pacific (excluding high income) 2105.2096
## 457 4E East Asia & Pacific (excluding high income) 1975.2396
## 458 4E East Asia & Pacific (excluding high income) 1876.4088
## 459 4E East Asia & Pacific (excluding high income) 1844.3674
## 460 4E East Asia & Pacific (excluding high income) 1738.7325
## 461 4E East Asia & Pacific (excluding high income) 1613.7750
## 462 4E East Asia & Pacific (excluding high income) 1487.3003
## 463 4E East Asia & Pacific (excluding high income) 1358.2479
## 464 4E East Asia & Pacific (excluding high income) 1236.7281
## 465 4E East Asia & Pacific (excluding high income) 1128.0978
## 466 4E East Asia & Pacific (excluding high income) 1060.3670
## 467 4E East Asia & Pacific (excluding high income) 1024.5830
## 468 4E East Asia & Pacific (excluding high income) 985.4827
## 469 4E East Asia & Pacific (excluding high income) 913.7956
## 470 4E East Asia & Pacific (excluding high income) 852.0121
## 471 4E East Asia & Pacific (excluding high income) 808.6919
## 472 4E East Asia & Pacific (excluding high income) 761.5682
## 473 4E East Asia & Pacific (excluding high income) 703.6685
## 474 4E East Asia & Pacific (excluding high income) 664.1789
## 475 4E East Asia & Pacific (excluding high income) 634.6717
## 476 4E East Asia & Pacific (excluding high income) 610.3957
## 477 4E East Asia & Pacific (excluding high income) 576.2294
## 478 4E East Asia & Pacific (excluding high income) 546.5231
## 479 4E East Asia & Pacific (excluding high income) 508.1540
## 480 4E East Asia & Pacific (excluding high income) 480.0057
## 481 4E East Asia & Pacific (excluding high income) 475.0124
## 482 4E East Asia & Pacific (excluding high income) 453.2837
## 483 4E East Asia & Pacific (excluding high income) 446.1242
## 484 4E East Asia & Pacific (excluding high income) 421.8812
## 485 4E East Asia & Pacific (excluding high income) 412.2812
## 486 4E East Asia & Pacific (excluding high income) 396.7616
## 487 4E East Asia & Pacific (excluding high income) 359.4963
## 488 4E East Asia & Pacific (excluding high income) 331.5448
## 489 4E East Asia & Pacific (excluding high income) 334.7462
## 490 4E East Asia & Pacific (excluding high income) 348.5526
## 491 4E East Asia & Pacific (excluding high income) 331.5584
## 492 4E East Asia & Pacific (excluding high income) 307.1020
## 493 4E East Asia & Pacific (excluding high income) 283.7353
## 494 4E East Asia & Pacific (excluding high income) 273.5348
## 495 4E East Asia & Pacific (excluding high income) 279.0174
## 496 4E East Asia & Pacific (excluding high income) 322.3129
## 497 T4 East Asia & Pacific (IDA & IBRD countries) 8841.7352
## 498 T4 East Asia & Pacific (IDA & IBRD countries) 8274.1810
## 499 T4 East Asia & Pacific (IDA & IBRD countries) 8208.5063
## 500 T4 East Asia & Pacific (IDA & IBRD countries) 7804.6978
## 501 T4 East Asia & Pacific (IDA & IBRD countries) 7375.4407
## 502 T4 East Asia & Pacific (IDA & IBRD countries) 6964.9544
## 503 T4 East Asia & Pacific (IDA & IBRD countries) 6583.9535
## 504 T4 East Asia & Pacific (IDA & IBRD countries) 6218.8944
## 505 T4 East Asia & Pacific (IDA & IBRD countries) 5860.4211
## 506 T4 East Asia & Pacific (IDA & IBRD countries) 5508.3086
## 507 T4 East Asia & Pacific (IDA & IBRD countries) 5164.4192
## 508 T4 East Asia & Pacific (IDA & IBRD countries) 4789.6016
## 509 T4 East Asia & Pacific (IDA & IBRD countries) 4388.4762
## 510 T4 East Asia & Pacific (IDA & IBRD countries) 4093.3734
## 511 T4 East Asia & Pacific (IDA & IBRD countries) 3796.1481
## 512 T4 East Asia & Pacific (IDA & IBRD countries) 3399.7453
## 513 T4 East Asia & Pacific (IDA & IBRD countries) 3084.2983
## 514 T4 East Asia & Pacific (IDA & IBRD countries) 2826.9230
## 515 T4 East Asia & Pacific (IDA & IBRD countries) 2611.5868
## 516 T4 East Asia & Pacific (IDA & IBRD countries) 2417.3370
## 517 T4 East Asia & Pacific (IDA & IBRD countries) 2256.7812
## 518 T4 East Asia & Pacific (IDA & IBRD countries) 2129.1582
## 519 T4 East Asia & Pacific (IDA & IBRD countries) 1997.7399
## 520 T4 East Asia & Pacific (IDA & IBRD countries) 1897.8298
## 521 T4 East Asia & Pacific (IDA & IBRD countries) 1865.4782
## 522 T4 East Asia & Pacific (IDA & IBRD countries) 1758.6768
## 523 T4 East Asia & Pacific (IDA & IBRD countries) 1632.3014
## 524 T4 East Asia & Pacific (IDA & IBRD countries) 1504.3641
## 525 T4 East Asia & Pacific (IDA & IBRD countries) 1373.8028
## 526 T4 East Asia & Pacific (IDA & IBRD countries) 1250.8539
## 527 T4 East Asia & Pacific (IDA & IBRD countries) 1140.9556
## 528 T4 East Asia & Pacific (IDA & IBRD countries) 1072.4477
## 529 T4 East Asia & Pacific (IDA & IBRD countries) 1036.2711
## 530 T4 East Asia & Pacific (IDA & IBRD countries) 996.7536
## 531 T4 East Asia & Pacific (IDA & IBRD countries) 924.2850
## 532 T4 East Asia & Pacific (IDA & IBRD countries) 861.8277
## 533 T4 East Asia & Pacific (IDA & IBRD countries) 818.0299
## 534 T4 East Asia & Pacific (IDA & IBRD countries) 770.3685
## 535 T4 East Asia & Pacific (IDA & IBRD countries) 711.7987
## 536 T4 East Asia & Pacific (IDA & IBRD countries) 671.8597
## 537 T4 East Asia & Pacific (IDA & IBRD countries) 642.0231
## 538 T4 East Asia & Pacific (IDA & IBRD countries) 617.4722
## 539 T4 East Asia & Pacific (IDA & IBRD countries) 582.9219
## 540 T4 East Asia & Pacific (IDA & IBRD countries) 552.8913
## 541 T4 East Asia & Pacific (IDA & IBRD countries) 514.0937
## 542 T4 East Asia & Pacific (IDA & IBRD countries) 485.6260
## 543 T4 East Asia & Pacific (IDA & IBRD countries) 480.5773
## 544 T4 East Asia & Pacific (IDA & IBRD countries) 458.5901
## 545 T4 East Asia & Pacific (IDA & IBRD countries) 451.3411
## 546 T4 East Asia & Pacific (IDA & IBRD countries) 426.8064
## 547 T4 East Asia & Pacific (IDA & IBRD countries) 417.0856
## 548 T4 East Asia & Pacific (IDA & IBRD countries) 401.3843
## 549 T4 East Asia & Pacific (IDA & IBRD countries) 363.6808
## 550 T4 East Asia & Pacific (IDA & IBRD countries) 335.3963
## 551 T4 East Asia & Pacific (IDA & IBRD countries) 338.6237
## 552 T4 East Asia & Pacific (IDA & IBRD countries) 352.5840
## 553 T4 East Asia & Pacific (IDA & IBRD countries) 335.4051
## 554 T4 East Asia & Pacific (IDA & IBRD countries) 310.6786
## 555 T4 East Asia & Pacific (IDA & IBRD countries) 287.0641
## 556 T4 East Asia & Pacific (IDA & IBRD countries) 276.7772
## 557 T4 East Asia & Pacific (IDA & IBRD countries) 282.3088
## 558 T4 East Asia & Pacific (IDA & IBRD countries) 326.0240
## 559 XC Euro area 36352.0401
## 560 XC Euro area 34476.0795
## 561 XC Euro area 36879.1354
## 562 XC Euro area 36338.6111
## 563 XC Euro area 35763.6530
## 564 XC Euro area 34927.0355
## 565 XC Euro area 34388.2838
## 566 XC Euro area 33795.5023
## 567 XC Euro area 33442.9868
## 568 XC Euro area 33630.7778
## 569 XC Euro area 33991.3652
## 570 XC Euro area 33344.3449
## 571 XC Euro area 32710.2805
## 572 XC Euro area 34370.4870
## 573 XC Euro area 34395.1647
## 574 XC Euro area 33566.8315
## 575 XC Euro area 32668.7085
## 576 XC Euro area 32295.2429
## 577 XC Euro area 31745.3633
## 578 XC Euro area 31701.6974
## 579 XC Euro area 31560.2675
## 580 XC Euro area 31001.2445
## 581 XC Euro area 29945.9121
## 582 XC Euro area 29159.0812
## 583 XC Euro area 28359.7491
## 584 XC Euro area 27678.2727
## 585 XC Euro area 27288.8841
## 586 XC Euro area 26712.8461
## 587 XC Euro area 26147.3815
## 588 XC Euro area 26429.4159
## 589 XC Euro area 26181.1892
## 590 XC Euro area 25616.8936
## 591 XC Euro area 24839.6593
## 592 XC Euro area 23963.6565
## 593 XC Euro area 23051.2346
## 594 XC Euro area 22543.8471
## 595 XC Euro area 22047.1688
## 596 XC Euro area 21589.6265
## 597 XC Euro area 21123.4408
## 598 XC Euro area 20875.7867
## 599 XC Euro area 20784.8746
## 600 XC Euro area 20755.8929
## 601 XC Euro area 20404.8212
## 602 XC Euro area 19724.7809
## 603 XC Euro area 19204.9914
## 604 XC Euro area 18704.7956
## 605 XC Euro area 17889.3710
## 606 XC Euro area 18122.0766
## 607 XC Euro area 17658.0568
## 608 XC Euro area 16740.7382
## 609 XC Euro area 16067.8921
## 610 XC Euro area 15569.0903
## 611 XC Euro area NA
## 612 XC Euro area NA
## 613 XC Euro area NA
## 614 XC Euro area NA
## 615 XC Euro area NA
## 616 XC Euro area NA
## 617 XC Euro area NA
## 618 XC Euro area NA
## 619 XC Euro area NA
## 620 XC Euro area NA
## 621 Z7 Europe & Central Asia 24207.1530
## 622 Z7 Europe & Central Asia 22898.4757
## 623 Z7 Europe & Central Asia 24298.9131
## 624 Z7 Europe & Central Asia 23936.3777
## 625 Z7 Europe & Central Asia 23514.9524
## 626 Z7 Europe & Central Asia 22964.1917
## 627 Z7 Europe & Central Asia 22624.9154
## 628 Z7 Europe & Central Asia 22261.2351
## 629 Z7 Europe & Central Asia 21955.2861
## 630 Z7 Europe & Central Asia 21864.0755
## 631 Z7 Europe & Central Asia 21875.9119
## 632 Z7 Europe & Central Asia 21424.8153
## 633 Z7 Europe & Central Asia 20951.1607
## 634 Z7 Europe & Central Asia 22002.1758
## 635 Z7 Europe & Central Asia 21871.7648
## 636 Z7 Europe & Central Asia 21186.9703
## 637 Z7 Europe & Central Asia 20456.8968
## 638 Z7 Europe & Central Asia 19988.9128
## 639 Z7 Europe & Central Asia 19430.4928
## 640 Z7 Europe & Central Asia 19141.5496
## 641 Z7 Europe & Central Asia 18867.8591
## 642 Z7 Europe & Central Asia 18487.4008
## 643 Z7 Europe & Central Asia 17751.2098
## 644 Z7 Europe & Central Asia 17276.6525
## 645 Z7 Europe & Central Asia 16862.4846
## 646 Z7 Europe & Central Asia 16384.1012
## 647 Z7 Europe & Central Asia 16125.1492
## 648 Z7 Europe & Central Asia 15813.7046
## 649 Z7 Europe & Central Asia 15659.9363
## 650 Z7 Europe & Central Asia 15833.2621
## 651 Z7 Europe & Central Asia 15981.1818
## 652 Z7 Europe & Central Asia 15985.1687
## 653 Z7 Europe & Central Asia 15697.0886
## 654 Z7 Europe & Central Asia 15250.1467
## 655 Z7 Europe & Central Asia 14717.9148
## 656 Z7 Europe & Central Asia 14364.7521
## 657 Z7 Europe & Central Asia 14064.4395
## 658 Z7 Europe & Central Asia 13762.3765
## 659 Z7 Europe & Central Asia 13486.5935
## 660 Z7 Europe & Central Asia 13300.8859
## 661 Z7 Europe & Central Asia 13254.7371
## 662 Z7 Europe & Central Asia 13279.3776
## 663 Z7 Europe & Central Asia 13193.5509
## 664 Z7 Europe & Central Asia 12800.3731
## 665 Z7 Europe & Central Asia 12483.4332
## 666 Z7 Europe & Central Asia 12221.0644
## 667 Z7 Europe & Central Asia 11757.0669
## 668 Z7 Europe & Central Asia 11907.2615
## 669 Z7 Europe & Central Asia 11744.1736
## 670 Z7 Europe & Central Asia 11165.4307
## 671 Z7 Europe & Central Asia 10748.2441
## 672 Z7 Europe & Central Asia 10445.3979
## 673 Z7 Europe & Central Asia NA
## 674 Z7 Europe & Central Asia NA
## 675 Z7 Europe & Central Asia NA
## 676 Z7 Europe & Central Asia NA
## 677 Z7 Europe & Central Asia NA
## 678 Z7 Europe & Central Asia NA
## 679 Z7 Europe & Central Asia NA
## 680 Z7 Europe & Central Asia NA
## 681 Z7 Europe & Central Asia NA
## 682 Z7 Europe & Central Asia NA
## 683 7E Europe & Central Asia (excluding high income) 8546.0983
## 684 7E Europe & Central Asia (excluding high income) 8013.2774
## 685 7E Europe & Central Asia (excluding high income) 8145.3378
## 686 7E Europe & Central Asia (excluding high income) 8004.5650
## 687 7E Europe & Central Asia (excluding high income) 7802.5126
## 688 7E Europe & Central Asia (excluding high income) 7553.9091
## 689 7E Europe & Central Asia (excluding high income) 7485.8269
## 690 7E Europe & Central Asia (excluding high income) 7469.1157
## 691 7E Europe & Central Asia (excluding high income) 7367.9426
## 692 7E Europe & Central Asia (excluding high income) 7129.0538
## 693 7E Europe & Central Asia (excluding high income) 6898.6481
## 694 7E Europe & Central Asia (excluding high income) 6530.5793
## 695 7E Europe & Central Asia (excluding high income) 6217.3878
## 696 7E Europe & Central Asia (excluding high income) 6627.1493
## 697 7E Europe & Central Asia (excluding high income) 6384.0417
## 698 7E Europe & Central Asia (excluding high income) 5938.1925
## 699 7E Europe & Central Asia (excluding high income) 5499.0455
## 700 7E Europe & Central Asia (excluding high income) 5129.7501
## 701 7E Europe & Central Asia (excluding high income) 4743.3361
## 702 7E Europe & Central Asia (excluding high income) 4439.3647
## 703 7E Europe & Central Asia (excluding high income) 4209.2353
## 704 7E Europe & Central Asia (excluding high income) 4101.0467
## 705 7E Europe & Central Asia (excluding high income) 3783.6489
## 706 7E Europe & Central Asia (excluding high income) 3696.5246
## 707 7E Europe & Central Asia (excluding high income) 3758.1096
## 708 7E Europe & Central Asia (excluding high income) 3657.8180
## 709 7E Europe & Central Asia (excluding high income) 3666.1532
## 710 7E Europe & Central Asia (excluding high income) 3739.0698
## 711 7E Europe & Central Asia (excluding high income) 4218.1961
## 712 7E Europe & Central Asia (excluding high income) 4501.6369
## 713 7E Europe & Central Asia (excluding high income) 5065.4872
## 714 7E Europe & Central Asia (excluding high income) 5360.1540
## 715 7E Europe & Central Asia (excluding high income) 5473.9051
## 716 7E Europe & Central Asia (excluding high income) NA
## 717 7E Europe & Central Asia (excluding high income) NA
## 718 7E Europe & Central Asia (excluding high income) NA
## 719 7E Europe & Central Asia (excluding high income) NA
## 720 7E Europe & Central Asia (excluding high income) NA
## 721 7E Europe & Central Asia (excluding high income) NA
## 722 7E Europe & Central Asia (excluding high income) NA
## 723 7E Europe & Central Asia (excluding high income) NA
## 724 7E Europe & Central Asia (excluding high income) NA
## 725 7E Europe & Central Asia (excluding high income) NA
## 726 7E Europe & Central Asia (excluding high income) NA
## 727 7E Europe & Central Asia (excluding high income) NA
## 728 7E Europe & Central Asia (excluding high income) NA
## 729 7E Europe & Central Asia (excluding high income) NA
## 730 7E Europe & Central Asia (excluding high income) NA
## 731 7E Europe & Central Asia (excluding high income) NA
## 732 7E Europe & Central Asia (excluding high income) NA
## 733 7E Europe & Central Asia (excluding high income) NA
## 734 7E Europe & Central Asia (excluding high income) NA
## 735 7E Europe & Central Asia (excluding high income) NA
## 736 7E Europe & Central Asia (excluding high income) NA
## 737 7E Europe & Central Asia (excluding high income) NA
## 738 7E Europe & Central Asia (excluding high income) NA
## 739 7E Europe & Central Asia (excluding high income) NA
## 740 7E Europe & Central Asia (excluding high income) NA
## 741 7E Europe & Central Asia (excluding high income) NA
## 742 7E Europe & Central Asia (excluding high income) NA
## 743 7E Europe & Central Asia (excluding high income) NA
## 744 7E Europe & Central Asia (excluding high income) NA
## 745 T7 Europe & Central Asia (IDA & IBRD countries) 9296.6669
## 746 T7 Europe & Central Asia (IDA & IBRD countries) 8720.4588
## 747 T7 Europe & Central Asia (IDA & IBRD countries) 8893.0674
## 748 T7 Europe & Central Asia (IDA & IBRD countries) 8692.2887
## 749 T7 Europe & Central Asia (IDA & IBRD countries) 8434.3708
## 750 T7 Europe & Central Asia (IDA & IBRD countries) 8133.7903
## 751 T7 Europe & Central Asia (IDA & IBRD countries) 8019.8979
## 752 T7 Europe & Central Asia (IDA & IBRD countries) 7948.6315
## 753 T7 Europe & Central Asia (IDA & IBRD countries) 7815.6078
## 754 T7 Europe & Central Asia (IDA & IBRD countries) 7586.5893
## 755 T7 Europe & Central Asia (IDA & IBRD countries) 7371.7550
## 756 T7 Europe & Central Asia (IDA & IBRD countries) 7005.7115
## 757 T7 Europe & Central Asia (IDA & IBRD countries) 6717.6963
## 758 T7 Europe & Central Asia (IDA & IBRD countries) 7073.7376
## 759 T7 Europe & Central Asia (IDA & IBRD countries) 6790.5529
## 760 T7 Europe & Central Asia (IDA & IBRD countries) 6319.4130
## 761 T7 Europe & Central Asia (IDA & IBRD countries) 5866.6502
## 762 T7 Europe & Central Asia (IDA & IBRD countries) 5506.3289
## 763 T7 Europe & Central Asia (IDA & IBRD countries) 5108.7866
## 764 T7 Europe & Central Asia (IDA & IBRD countries) 4812.9987
## 765 T7 Europe & Central Asia (IDA & IBRD countries) 4579.8028
## 766 T7 Europe & Central Asia (IDA & IBRD countries) 4459.5444
## 767 T7 Europe & Central Asia (IDA & IBRD countries) 4148.9167
## 768 T7 Europe & Central Asia (IDA & IBRD countries) 4048.4968
## 769 T7 Europe & Central Asia (IDA & IBRD countries) 4077.2075
## 770 T7 Europe & Central Asia (IDA & IBRD countries) 3964.4895
## 771 T7 Europe & Central Asia (IDA & IBRD countries) 3926.2169
## 772 T7 Europe & Central Asia (IDA & IBRD countries) 3939.8082
## 773 T7 Europe & Central Asia (IDA & IBRD countries) 4319.9529
## 774 T7 Europe & Central Asia (IDA & IBRD countries) 4544.6735
## 775 T7 Europe & Central Asia (IDA & IBRD countries) 5037.3285
## 776 T7 Europe & Central Asia (IDA & IBRD countries) 5357.6680
## 777 T7 Europe & Central Asia (IDA & IBRD countries) 5468.5728
## 778 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 779 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 780 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 781 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 782 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 783 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 784 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 785 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 786 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 787 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 788 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 789 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 790 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 791 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 792 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 793 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 794 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 795 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 796 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 797 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 798 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 799 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 800 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 801 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 802 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 803 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 804 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 805 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 806 T7 Europe & Central Asia (IDA & IBRD countries) NA
## 807 EU European Union 32755.3794
## 808 EU European Union 31046.0337
## 809 EU European Union 33032.9640
## 810 EU European Union 32460.5403
## 811 EU European Union 31855.0679
## 812 EU European Union 31031.1789
## 813 EU European Union 30485.0288
## 814 EU European Union 29861.4807
## 815 EU European Union 29471.8257
## 816 EU European Union 29552.9600
## 817 EU European Union 29807.1297
## 818 EU European Union 29211.4265
## 819 EU European Union 28608.6469
## 820 EU European Union 29979.9053
## 821 EU European Union 29884.6316
## 822 EU European Union 29068.1499
## 823 EU European Union 28178.2628
## 824 EU European Union 27744.5207
## 825 EU European Union 27145.2524
## 826 EU European Union 26996.8549
## 827 EU European Union 26761.8509
## 828 EU European Union 26226.7402
## 829 EU European Union 25272.5354
## 830 EU European Union 24589.2538
## 831 EU European Union 23902.5885
## 832 EU European Union 23319.8573
## 833 EU European Union 22926.6368
## 834 EU European Union 22374.3041
## 835 EU European Union 21850.5957
## 836 EU European Union 22048.2910
## 837 EU European Union 21859.1170
## 838 EU European Union 21524.0178
## 839 EU European Union 20889.6590
## 840 EU European Union 20170.4137
## 841 EU European Union 19427.2547
## 842 EU European Union 19005.6424
## 843 EU European Union 18578.0772
## 844 EU European Union 18194.6727
## 845 EU European Union 17792.7989
## 846 EU European Union 17584.7121
## 847 EU European Union 17500.2361
## 848 EU European Union 17482.6785
## 849 EU European Union 17204.1978
## 850 EU European Union 16635.7805
## 851 EU European Union 16217.4926
## 852 EU European Union 15841.2407
## 853 EU European Union 15184.1470
## 854 EU European Union 15376.7814
## 855 EU European Union 15006.9608
## 856 EU European Union 14247.8814
## 857 EU European Union 13691.6958
## 858 EU European Union 13282.2725
## 859 EU European Union NA
## 860 EU European Union NA
## 861 EU European Union NA
## 862 EU European Union NA
## 863 EU European Union NA
## 864 EU European Union NA
## 865 EU European Union NA
## 866 EU European Union NA
## 867 EU European Union NA
## 868 EU European Union NA
## 869 F1 Fragile and conflict affected situations 1815.2959
## 870 F1 Fragile and conflict affected situations 1812.5131
## 871 F1 Fragile and conflict affected situations 1935.0124
## 872 F1 Fragile and conflict affected situations 1933.5802
## 873 F1 Fragile and conflict affected situations 1924.5006
## 874 F1 Fragile and conflict affected situations 1917.8167
## 875 F1 Fragile and conflict affected situations 1913.6920
## 876 F1 Fragile and conflict affected situations 1939.0353
## 877 F1 Fragile and conflict affected situations 1942.0006
## 878 F1 Fragile and conflict affected situations 1922.1301
## 879 F1 Fragile and conflict affected situations 1877.1147
## 880 F1 Fragile and conflict affected situations 1921.6761
## 881 F1 Fragile and conflict affected situations 1839.4548
## 882 F1 Fragile and conflict affected situations 1830.0499
## 883 F1 Fragile and conflict affected situations 1783.0873
## 884 F1 Fragile and conflict affected situations 1721.3801
## 885 F1 Fragile and conflict affected situations 1664.2992
## 886 F1 Fragile and conflict affected situations 1609.7767
## 887 F1 Fragile and conflict affected situations 1483.9707
## 888 F1 Fragile and conflict affected situations 1501.0717
## 889 F1 Fragile and conflict affected situations 1468.5657
## 890 F1 Fragile and conflict affected situations 1439.9057
## 891 F1 Fragile and conflict affected situations 1395.7912
## 892 F1 Fragile and conflict affected situations 1379.6510
## 893 F1 Fragile and conflict affected situations 1332.0805
## 894 F1 Fragile and conflict affected situations 1297.0249
## 895 F1 Fragile and conflict affected situations 1280.3204
## 896 F1 Fragile and conflict affected situations 1310.3751
## 897 F1 Fragile and conflict affected situations 1396.9246
## 898 F1 Fragile and conflict affected situations 1456.8728
## 899 F1 Fragile and conflict affected situations 1486.5173
## 900 F1 Fragile and conflict affected situations 1649.0855
## 901 F1 Fragile and conflict affected situations 1615.2551
## 902 F1 Fragile and conflict affected situations 1643.8154
## 903 F1 Fragile and conflict affected situations 1628.2016
## 904 F1 Fragile and conflict affected situations 1595.3863
## 905 F1 Fragile and conflict affected situations 1597.7332
## 906 F1 Fragile and conflict affected situations 1582.3223
## 907 F1 Fragile and conflict affected situations 1628.0168
## 908 F1 Fragile and conflict affected situations 1746.1440
## 909 F1 Fragile and conflict affected situations 1805.1941
## 910 F1 Fragile and conflict affected situations 1922.7516
## 911 F1 Fragile and conflict affected situations 1853.4487
## 912 F1 Fragile and conflict affected situations 1794.9867
## 913 F1 Fragile and conflict affected situations 1859.5769
## 914 F1 Fragile and conflict affected situations 1825.4970
## 915 F1 Fragile and conflict affected situations 1739.8729
## 916 F1 Fragile and conflict affected situations 1786.7166
## 917 F1 Fragile and conflict affected situations 1666.7791
## 918 F1 Fragile and conflict affected situations 1637.6216
## 919 F1 Fragile and conflict affected situations 1630.5186
## 920 F1 Fragile and conflict affected situations 1522.7099
## 921 F1 Fragile and conflict affected situations 1371.8526
## 922 F1 Fragile and conflict affected situations 1238.6107
## 923 F1 Fragile and conflict affected situations NA
## 924 F1 Fragile and conflict affected situations NA
## 925 F1 Fragile and conflict affected situations NA
## 926 F1 Fragile and conflict affected situations NA
## 927 F1 Fragile and conflict affected situations NA
## 928 F1 Fragile and conflict affected situations NA
## 929 F1 Fragile and conflict affected situations NA
## 930 F1 Fragile and conflict affected situations NA
## 931 XE Heavily indebted poor countries (HIPC) 1018.7591
## 932 XE Heavily indebted poor countries (HIPC) 1000.0809
## 933 XE Heavily indebted poor countries (HIPC) 1025.1313
## 934 XE Heavily indebted poor countries (HIPC) 1011.4675
## 935 XE Heavily indebted poor countries (HIPC) 999.4030
## 936 XE Heavily indebted poor countries (HIPC) 980.3914
## 937 XE Heavily indebted poor countries (HIPC) 965.7696
## 938 XE Heavily indebted poor countries (HIPC) 949.0909
## 939 XE Heavily indebted poor countries (HIPC) 922.9762
## 940 XE Heavily indebted poor countries (HIPC) 899.4398
## 941 XE Heavily indebted poor countries (HIPC) 901.6465
## 942 XE Heavily indebted poor countries (HIPC) 892.2563
## 943 XE Heavily indebted poor countries (HIPC) 866.0973
## 944 XE Heavily indebted poor countries (HIPC) 862.6087
## 945 XE Heavily indebted poor countries (HIPC) 840.4681
## 946 XE Heavily indebted poor countries (HIPC) 819.1581
## 947 XE Heavily indebted poor countries (HIPC) 795.2636
## 948 XE Heavily indebted poor countries (HIPC) 774.6222
## 949 XE Heavily indebted poor countries (HIPC) 754.5644
## 950 XE Heavily indebted poor countries (HIPC) 746.5019
## 951 XE Heavily indebted poor countries (HIPC) 741.8275
## 952 XE Heavily indebted poor countries (HIPC) 733.0701
## 953 XE Heavily indebted poor countries (HIPC) 731.6240
## 954 XE Heavily indebted poor countries (HIPC) 729.8865
## 955 XE Heavily indebted poor countries (HIPC) 724.9143
## 956 XE Heavily indebted poor countries (HIPC) 701.4969
## 957 XE Heavily indebted poor countries (HIPC) 686.2501
## 958 XE Heavily indebted poor countries (HIPC) 672.6318
## 959 XE Heavily indebted poor countries (HIPC) 692.3382
## 960 XE Heavily indebted poor countries (HIPC) 708.0220
## 961 XE Heavily indebted poor countries (HIPC) 732.7599
## 962 XE Heavily indebted poor countries (HIPC) 748.5897
## 963 XE Heavily indebted poor countries (HIPC) 776.0838
## 964 XE Heavily indebted poor countries (HIPC) 779.9353
## 965 XE Heavily indebted poor countries (HIPC) 794.3944
## 966 XE Heavily indebted poor countries (HIPC) 786.3533
## 967 XE Heavily indebted poor countries (HIPC) 781.9316
## 968 XE Heavily indebted poor countries (HIPC) 794.5459
## 969 XE Heavily indebted poor countries (HIPC) 809.1624
## 970 XE Heavily indebted poor countries (HIPC) 825.0785
## 971 XE Heavily indebted poor countries (HIPC) 838.4897
## 972 XE Heavily indebted poor countries (HIPC) 831.6657
## 973 XE Heavily indebted poor countries (HIPC) 851.0115
## 974 XE Heavily indebted poor countries (HIPC) 871.3469
## 975 XE Heavily indebted poor countries (HIPC) 878.8060
## 976 XE Heavily indebted poor countries (HIPC) 867.2998
## 977 XE Heavily indebted poor countries (HIPC) 849.9151
## 978 XE Heavily indebted poor countries (HIPC) 849.9323
## 979 XE Heavily indebted poor countries (HIPC) 824.7286
## 980 XE Heavily indebted poor countries (HIPC) 820.6510
## 981 XE Heavily indebted poor countries (HIPC) 832.6809
## 982 XE Heavily indebted poor countries (HIPC) 819.3569
## 983 XE Heavily indebted poor countries (HIPC) 804.6511
## 984 XE Heavily indebted poor countries (HIPC) 789.5880
## 985 XE Heavily indebted poor countries (HIPC) 776.7326
## 986 XE Heavily indebted poor countries (HIPC) 782.8393
## 987 XE Heavily indebted poor countries (HIPC) 784.1130
## 988 XE Heavily indebted poor countries (HIPC) 773.3322
## 989 XE Heavily indebted poor countries (HIPC) 769.9954
## 990 XE Heavily indebted poor countries (HIPC) 767.7229
## 991 XE Heavily indebted poor countries (HIPC) 731.8533
## 992 XE Heavily indebted poor countries (HIPC) 751.8500
## 993 XD High income 42372.6209
## 994 XD High income 40335.8277
## 995 XD High income 42435.1603
## 996 XD High income 41862.3391
## 997 XD High income 41095.2810
## 998 XD High income 40344.5196
## 999 XD High income 39847.2618
## 1000 XD High income 39147.5681
## 1001 XD High income 38578.1652
## 1002 XD High income 38221.5705
## 1003 XD High income 37907.4391
## 1004 XD High income 37354.8322
## 1005 XD High income 36495.1783
## 1006 XD High income 37983.6073
## 1007 XD High income 38078.8477
## 1008 XD High income 37309.7128
## 1009 XD High income 36437.8386
## 1010 XD High income 35640.6575
## 1011 XD High income 34683.2794
## 1012 XD High income 34137.9524
## 1013 XD High income 33816.3374
## 1014 XD High income 33533.7123
## 1015 XD High income 32412.2598
## 1016 XD High income 31527.2899
## 1017 XD High income 30847.1168
## 1018 XD High income 29995.0706
## 1019 XD High income 29292.6461
## 1020 XD High income 28711.2086
## 1021 XD High income 27995.1067
## 1022 XD High income 27833.7991
## 1023 XD High income 27399.4848
## 1024 XD High income 27231.0953
## 1025 XD High income 26613.4424
## 1026 XD High income 25795.8032
## 1027 XD High income 24793.1082
## 1028 XD High income 24125.3447
## 1029 XD High income 23511.8227
## 1030 XD High income 22860.6969
## 1031 XD High income 21987.7641
## 1032 XD High income 21536.2279
## 1033 XD High income 21731.3452
## 1034 XD High income 21499.7940
## 1035 XD High income 21408.8990
## 1036 XD High income 20738.9041
## 1037 XD High income 20057.7060
## 1038 XD High income 19445.7337
## 1039 XD High income 18653.2758
## 1040 XD High income 18846.5350
## 1041 XD High income 18837.0696
## 1042 XD High income 17893.4260
## 1043 XD High income 17127.6416
## 1044 XD High income 16681.6754
## 1045 XD High income 16346.9710
## 1046 XD High income 15671.4861
## 1047 XD High income 14934.8799
## 1048 XD High income 14459.3943
## 1049 XD High income 13803.1404
## 1050 XD High income 13238.8854
## 1051 XD High income 12601.8264
## 1052 XD High income 12118.5405
## 1053 XD High income 11616.0336
## 1054 XD High income 11271.7224
## 1055 XF IBRD only 6693.3678
## 1056 XF IBRD only 6290.0348
## 1057 XF IBRD only 6430.4811
## 1058 XF IBRD only 6233.5842
## 1059 XF IBRD only 5993.3074
## 1060 XF IBRD only 5748.9428
## 1061 XF IBRD only 5547.6796
## 1062 XF IBRD only 5363.8177
## 1063 XF IBRD only 5170.3282
## 1064 XF IBRD only 4962.2867
## 1065 XF IBRD only 4754.3509
## 1066 XF IBRD only 4514.5164
## 1067 XF IBRD only 4227.4189
## 1068 XF IBRD only 4149.8644
## 1069 XF IBRD only 3956.5521
## 1070 XF IBRD only 3666.5665
## 1071 XF IBRD only 3421.0927
## 1072 XF IBRD only 3224.2169
## 1073 XF IBRD only 3026.0614
## 1074 XF IBRD only 2886.0547
## 1075 XF IBRD only 2789.4805
## 1076 XF IBRD only 2722.4421
## 1077 XF IBRD only 2601.2688
## 1078 XF IBRD only 2537.9818
## 1079 XF IBRD only 2505.7872
## 1080 XF IBRD only 2410.7774
## 1081 XF IBRD only 2315.3534
## 1082 XF IBRD only 2256.1577
## 1083 XF IBRD only 2207.1313
## 1084 XF IBRD only 2158.7299
## 1085 XF IBRD only 2155.2671
## 1086 XF IBRD only 2163.6612
## 1087 XF IBRD only 2158.5993
## 1088 XF IBRD only 2128.5321
## 1089 XF IBRD only 2083.6767
## 1090 XF IBRD only 2020.5657
## 1091 XF IBRD only 1974.8673
## 1092 XF IBRD only 1925.0238
## 1093 XF IBRD only 1866.4900
## 1094 XF IBRD only 1864.3875
## 1095 XF IBRD only 1847.4798
## 1096 XF IBRD only 1838.1999
## 1097 XF IBRD only 1779.4770
## 1098 XF IBRD only 1730.9390
## 1099 XF IBRD only 1693.8375
## 1100 XF IBRD only 1649.4569
## 1101 XF IBRD only 1585.2868
## 1102 XF IBRD only 1544.5399
## 1103 XF IBRD only 1494.3638
## 1104 XF IBRD only 1425.7665
## 1105 XF IBRD only 1368.2852
## 1106 XF IBRD only 1317.1347
## 1107 XF IBRD only 1251.2663
## 1108 XF IBRD only 1187.1781
## 1109 XF IBRD only 1146.4588
## 1110 XF IBRD only 1126.3736
## 1111 XF IBRD only 1092.5565
## 1112 XF IBRD only 1054.1649
## 1113 XF IBRD only 998.3664
## 1114 XF IBRD only 976.5391
## 1115 XF IBRD only 963.9137
## 1116 XF IBRD only 963.8455
## 1117 ZT IDA & IBRD total 5305.5315
## 1118 ZT IDA & IBRD total 5016.5681
## 1119 ZT IDA & IBRD total 5143.8774
## 1120 ZT IDA & IBRD total 5004.5554
## 1121 ZT IDA & IBRD total 4830.4323
## 1122 ZT IDA & IBRD total 4653.3694
## 1123 ZT IDA & IBRD total 4509.5899
## 1124 ZT IDA & IBRD total 4377.2594
## 1125 ZT IDA & IBRD total 4229.6641
## 1126 ZT IDA & IBRD total 4071.2615
## 1127 ZT IDA & IBRD total 3919.4407
## 1128 ZT IDA & IBRD total 3739.6927
## 1129 ZT IDA & IBRD total 3517.1146
## 1130 ZT IDA & IBRD total 3457.9702
## 1131 ZT IDA & IBRD total 3309.3130
## 1132 ZT IDA & IBRD total 3082.8537
## 1133 ZT IDA & IBRD total 2889.9050
## 1134 ZT IDA & IBRD total 2733.9846
## 1135 ZT IDA & IBRD total 2575.4146
## 1136 ZT IDA & IBRD total 2465.3162
## 1137 ZT IDA & IBRD total 2388.0428
## 1138 ZT IDA & IBRD total 2335.6111
## 1139 ZT IDA & IBRD total 2241.2331
## 1140 ZT IDA & IBRD total 2193.8955
## 1141 ZT IDA & IBRD total 2169.9982
## 1142 ZT IDA & IBRD total 2095.1531
## 1143 ZT IDA & IBRD total 2018.2058
## 1144 ZT IDA & IBRD total 1972.2931
## 1145 ZT IDA & IBRD total 1938.6960
## 1146 ZT IDA & IBRD total 1905.4522
## 1147 ZT IDA & IBRD total 1906.1401
## 1148 ZT IDA & IBRD total 1916.6057
## 1149 ZT IDA & IBRD total 1912.8860
## 1150 ZT IDA & IBRD total 1891.3953
## 1151 ZT IDA & IBRD total 1853.6879
## 1152 ZT IDA & IBRD total 1802.8170
## 1153 ZT IDA & IBRD total 1767.1932
## 1154 ZT IDA & IBRD total 1726.4795
## 1155 ZT IDA & IBRD total 1683.3556
## 1156 ZT IDA & IBRD total 1689.7012
## 1157 ZT IDA & IBRD total 1682.4181
## 1158 ZT IDA & IBRD total 1682.3332
## 1159 ZT IDA & IBRD total 1634.3240
## 1160 ZT IDA & IBRD total 1594.2882
## 1161 ZT IDA & IBRD total 1568.6317
## 1162 ZT IDA & IBRD total 1530.1040
## 1163 ZT IDA & IBRD total 1472.3747
## 1164 ZT IDA & IBRD total 1445.0128
## 1165 ZT IDA & IBRD total 1395.2999
## 1166 ZT IDA & IBRD total 1336.7057
## 1167 ZT IDA & IBRD total 1291.4231
## 1168 ZT IDA & IBRD total 1243.2109
## 1169 ZT IDA & IBRD total 1177.1859
## 1170 ZT IDA & IBRD total 1115.3924
## 1171 ZT IDA & IBRD total 1080.7695
## 1172 ZT IDA & IBRD total 1072.7784
## 1173 ZT IDA & IBRD total 1047.6507
## 1174 ZT IDA & IBRD total 1013.6025
## 1175 ZT IDA & IBRD total 964.5551
## 1176 ZT IDA & IBRD total 943.7174
## 1177 ZT IDA & IBRD total 928.6909
## 1178 ZT IDA & IBRD total 930.6281
## 1179 XH IDA blend 1981.0253
## 1180 XH IDA blend 1930.2333
## 1181 XH IDA blend 2001.4610
## 1182 XH IDA blend 1992.2044
## 1183 XH IDA blend 1964.5470
## 1184 XH IDA blend 1959.8828
## 1185 XH IDA blend 1972.1472
## 1186 XH IDA blend 1944.0713
## 1187 XH IDA blend 1879.9321
## 1188 XH IDA blend 1823.3660
## 1189 XH IDA blend 1784.8959
## 1190 XH IDA blend 1746.8467
## 1191 XH IDA blend 1687.0397
## 1192 XH IDA blend 1631.5942
## 1193 XH IDA blend 1605.2564
## 1194 XH IDA blend 1554.0141
## 1195 XH IDA blend 1503.7644
## 1196 XH IDA blend 1452.6858
## 1197 XH IDA blend 1382.8635
## 1198 XH IDA blend 1346.5683
## 1199 XH IDA blend 1287.3879
## 1200 XH IDA blend 1263.2345
## 1201 XH IDA blend 1248.4157
## 1202 XH IDA blend 1253.0659
## 1203 XH IDA blend 1251.3097
## 1204 XH IDA blend 1258.5356
## 1205 XH IDA blend 1234.3214
## 1206 XH IDA blend 1242.4225
## 1207 XH IDA blend 1264.4419
## 1208 XH IDA blend 1301.5644
## 1209 XH IDA blend 1299.0263
## 1210 XH IDA blend 1309.5038
## 1211 XH IDA blend 1265.1553
## 1212 XH IDA blend 1263.2893
## 1213 XH IDA blend 1222.6071
## 1214 XH IDA blend 1213.3448
## 1215 XH IDA blend 1215.1402
## 1216 XH IDA blend 1179.8431
## 1217 XH IDA blend 1196.5571
## 1218 XH IDA blend 1272.6710
## 1219 XH IDA blend 1327.5752
## 1220 XH IDA blend 1430.7105
## 1221 XH IDA blend 1398.4610
## 1222 XH IDA blend 1360.8410
## 1223 XH IDA blend 1412.1772
## 1224 XH IDA blend 1383.0148
## 1225 XH IDA blend 1339.2129
## 1226 XH IDA blend 1408.2500
## 1227 XH IDA blend 1332.8347
## 1228 XH IDA blend 1295.7154
## 1229 XH IDA blend 1277.8148
## 1230 XH IDA blend 1184.1462
## 1231 XH IDA blend 1029.6253
## 1232 XH IDA blend 911.3056
## 1233 XH IDA blend 914.9327
## 1234 XH IDA blend 1021.1429
## 1235 XH IDA blend 1050.8792
## 1236 XH IDA blend 1020.1588
## 1237 XH IDA blend 994.6295
## 1238 XH IDA blend 944.4149
## 1239 XH IDA blend 927.1140
## 1240 XH IDA blend 937.2515
## 1241 XI IDA only 1131.2787
## 1242 XI IDA only 1119.8064
## 1243 XI IDA only 1135.8185
## 1244 XI IDA only 1103.7064
## 1245 XI IDA only 1076.1033
## 1246 XI IDA only 1048.2020
## 1247 XI IDA only 1024.8861
## 1248 XI IDA only 1019.2490
## 1249 XI IDA only 989.8935
## 1250 XI IDA only 963.9853
## 1251 XI IDA only 974.7026
## 1252 XI IDA only 965.3978
## 1253 XI IDA only 929.4612
## 1254 XI IDA only 914.5519
## 1255 XI IDA only 884.4401
## 1256 XI IDA only 852.4801
## 1257 XI IDA only 821.5065
## 1258 XI IDA only 792.4248
## 1259 XI IDA only 766.8408
## 1260 XI IDA only 749.9570
## 1261 XI IDA only 739.8510
## 1262 XI IDA only 725.6269
## 1263 XI IDA only 715.3369
## 1264 XI IDA only 708.3667
## 1265 XI IDA only 697.6028
## 1266 XI IDA only 675.4868
## 1267 XI IDA only 658.7061
## 1268 XI IDA only 642.9643
## 1269 XI IDA only 654.2577
## 1270 XI IDA only 658.6215
## 1271 XI IDA only 668.4916
## 1272 XI IDA only 674.7290
## 1273 XI IDA only 686.6009
## 1274 XI IDA only 693.5609
## 1275 XI IDA only 693.3818
## 1276 XI IDA only 685.7534
## 1277 XI IDA only 682.7063
## 1278 XI IDA only 688.5906
## 1279 XI IDA only 700.6105
## 1280 XI IDA only 711.5471
## 1281 XI IDA only 723.1435
## 1282 XI IDA only 715.0741
## 1283 XI IDA only 725.7077
## 1284 XI IDA only 738.2890
## 1285 XI IDA only 740.3991
## 1286 XI IDA only 733.9922
## 1287 XI IDA only 711.5668
## 1288 XI IDA only 718.7282
## 1289 XI IDA only 688.3161
## 1290 XI IDA only 688.5564
## 1291 XI IDA only 713.9127
## 1292 XI IDA only 714.6167
## 1293 XI IDA only 701.2915
## 1294 XI IDA only 690.0530
## 1295 XI IDA only 675.7210
## 1296 XI IDA only 685.1556
## 1297 XI IDA only 689.2870
## 1298 XI IDA only 684.5921
## 1299 XI IDA only 670.6633
## 1300 XI IDA only 674.9987
## 1301 XI IDA only 643.7154
## 1302 XI IDA only NA
## 1303 XG IDA total 1416.7406
## 1304 XG IDA total 1392.0336
## 1305 XG IDA total 1426.7880
## 1306 XG IDA total 1402.3783
## 1307 XG IDA total 1374.7249
## 1308 XG IDA total 1354.5385
## 1309 XG IDA total 1342.9994
## 1310 XG IDA total 1329.5763
## 1311 XG IDA total 1288.2513
## 1312 XG IDA total 1251.7460
## 1313 XG IDA total 1245.6374
## 1314 XG IDA total 1226.3049
## 1315 XG IDA total 1182.0481
## 1316 XG IDA total 1153.3978
## 1317 XG IDA total 1124.5861
## 1318 XG IDA total 1086.1781
## 1319 XG IDA total 1048.8380
## 1320 XG IDA total 1012.5300
## 1321 XG IDA total 972.1992
## 1322 XG IDA total 948.9815
## 1323 XG IDA total 922.2742
## 1324 XG IDA total 904.8416
## 1325 XG IDA total 893.0771
## 1326 XG IDA total 890.0963
## 1327 XG IDA total 882.3854
## 1328 XG IDA total 870.4142
## 1329 XG IDA total 851.1798
## 1330 XG IDA total 843.8365
## 1331 XG IDA total 858.8502
## 1332 XG IDA total 874.6615
## 1333 XG IDA total 880.2012
## 1334 XG IDA total 887.8559
## 1335 XG IDA total 879.0106
## 1336 XG IDA total 882.3549
## 1337 XG IDA total 866.9492
## 1338 XG IDA total 858.4493
## 1339 XG IDA total 856.6755
## 1340 XG IDA total 847.2327
## 1341 XG IDA total 860.0547
## 1342 XG IDA total 893.2199
## 1343 XG IDA total 919.2033
## 1344 XG IDA total 951.0127
## 1345 XG IDA total 944.4015
## 1346 XG IDA total 937.0503
## 1347 XG IDA total 955.9017
## 1348 XG IDA total 940.4241
## 1349 XG IDA total 910.1850
## 1350 XG IDA total 938.4420
## 1351 XG IDA total 892.2916
## 1352 XG IDA total 878.5290
## 1353 XG IDA total 886.9640
## 1354 XG IDA total 853.6657
## 1355 XG IDA total 790.3488
## 1356 XG IDA total 741.3453
## 1357 XG IDA total 733.9959
## 1358 XG IDA total 777.8377
## 1359 XG IDA total 791.0463
## 1360 XG IDA total 777.2049
## 1361 XG IDA total 759.6817
## 1362 XG IDA total 744.2229
## 1363 XG IDA total 719.2671
## 1364 XG IDA total 728.5889
## 1365 V3 Late-demographic dividend 10386.4743
## 1366 V3 Late-demographic dividend 9711.4562
## 1367 V3 Late-demographic dividend 9737.8284
## 1368 V3 Late-demographic dividend 9343.4406
## 1369 V3 Late-demographic dividend 8912.6676
## 1370 V3 Late-demographic dividend 8518.8648
## 1371 V3 Late-demographic dividend 8208.0519
## 1372 V3 Late-demographic dividend 7892.2508
## 1373 V3 Late-demographic dividend 7553.5769
## 1374 V3 Late-demographic dividend 7200.0383
## 1375 V3 Late-demographic dividend 6849.7601
## 1376 V3 Late-demographic dividend 6432.7197
## 1377 V3 Late-demographic dividend 5988.8622
## 1378 V3 Late-demographic dividend 5810.5065
## 1379 V3 Late-demographic dividend 5467.8837
## 1380 V3 Late-demographic dividend 4991.0269
## 1381 V3 Late-demographic dividend 4595.7964
## 1382 V3 Late-demographic dividend 4292.6243
## 1383 V3 Late-demographic dividend 3993.3661
## 1384 V3 Late-demographic dividend 3762.7201
## 1385 V3 Late-demographic dividend 3573.8186
## 1386 V3 Late-demographic dividend 3421.8373
## 1387 V3 Late-demographic dividend 3223.1182
## 1388 V3 Late-demographic dividend 3106.4966
## 1389 V3 Late-demographic dividend 3049.9474
## 1390 V3 Late-demographic dividend 2918.2939
## 1391 V3 Late-demographic dividend 2804.6936
## 1392 V3 Late-demographic dividend 2683.5897
## 1393 V3 Late-demographic dividend 2595.8097
## 1394 V3 Late-demographic dividend 2514.3569
## 1395 V3 Late-demographic dividend 2523.7161
## 1396 V3 Late-demographic dividend 2529.9034
## 1397 V3 Late-demographic dividend 2552.7927
## 1398 V3 Late-demographic dividend 2480.0903
## 1399 V3 Late-demographic dividend 2389.5107
## 1400 V3 Late-demographic dividend 2279.7522
## 1401 V3 Late-demographic dividend 2187.5568
## 1402 V3 Late-demographic dividend 2062.9908
## 1403 V3 Late-demographic dividend 1938.4821
## 1404 V3 Late-demographic dividend 1934.7870
## 1405 V3 Late-demographic dividend 1920.3317
## 1406 V3 Late-demographic dividend 1935.7486
## 1407 V3 Late-demographic dividend 1812.4621
## 1408 V3 Late-demographic dividend 1709.6230
## 1409 V3 Late-demographic dividend 1626.7386
## 1410 V3 Late-demographic dividend 1546.0991
## 1411 V3 Late-demographic dividend 1474.4327
## 1412 V3 Late-demographic dividend 1429.2715
## 1413 V3 Late-demographic dividend 1381.1180
## 1414 V3 Late-demographic dividend 1291.9742
## 1415 V3 Late-demographic dividend 1227.7633
## 1416 V3 Late-demographic dividend 1162.1758
## 1417 V3 Late-demographic dividend 1069.2229
## 1418 V3 Late-demographic dividend 992.9653
## 1419 V3 Late-demographic dividend 966.5163
## 1420 V3 Late-demographic dividend 972.7632
## 1421 V3 Late-demographic dividend 922.2467
## 1422 V3 Late-demographic dividend 881.5853
## 1423 V3 Late-demographic dividend 838.0568
## 1424 V3 Late-demographic dividend 822.7643
## 1425 V3 Late-demographic dividend 809.2828
## 1426 V3 Late-demographic dividend 847.0214
## 1427 ZJ Latin America & Caribbean 8466.1491
## 1428 ZJ Latin America & Caribbean 8000.2270
## 1429 ZJ Latin America & Caribbean 8650.8735
## 1430 ZJ Latin America & Caribbean 8668.3402
## 1431 ZJ Latin America & Caribbean 8608.6465
## 1432 ZJ Latin America & Caribbean 8530.4635
## 1433 ZJ Latin America & Caribbean 8629.0096
## 1434 ZJ Latin America & Caribbean 8670.7751
## 1435 ZJ Latin America & Caribbean 8643.7687
## 1436 ZJ Latin America & Caribbean 8495.2504
## 1437 ZJ Latin America & Caribbean 8375.5623
## 1438 ZJ Latin America & Caribbean 8108.5640
## 1439 ZJ Latin America & Caribbean 7703.7427
## 1440 ZJ Latin America & Caribbean 7950.8700
## 1441 ZJ Latin America & Caribbean 7754.8663
## 1442 ZJ Latin America & Caribbean 7453.6995
## 1443 ZJ Latin America & Caribbean 7181.8247
## 1444 ZJ Latin America & Caribbean 6991.7733
## 1445 ZJ Latin America & Caribbean 6707.1526
## 1446 ZJ Latin America & Caribbean 6627.2142
## 1447 ZJ Latin America & Caribbean 6682.6481
## 1448 ZJ Latin America & Caribbean 6744.3908
## 1449 ZJ Latin America & Caribbean 6608.1024
## 1450 ZJ Latin America & Caribbean 6665.5707
## 1451 ZJ Latin America & Caribbean 6595.5403
## 1452 ZJ Latin America & Caribbean 6365.0306
## 1453 ZJ Latin America & Caribbean 6217.4524
## 1454 ZJ Latin America & Caribbean 6268.9138
## 1455 ZJ Latin America & Caribbean 6051.0873
## 1456 ZJ Latin America & Caribbean 5910.6028
## 1457 ZJ Latin America & Caribbean 5867.4556
## 1458 ZJ Latin America & Caribbean 5801.5717
## 1459 ZJ Latin America & Caribbean 5938.9548
## 1460 ZJ Latin America & Caribbean 5946.1634
## 1461 ZJ Latin America & Caribbean 6025.3109
## 1462 ZJ Latin America & Caribbean 5953.6016
## 1463 ZJ Latin America & Caribbean 5851.1941
## 1464 ZJ Latin America & Caribbean 5786.9666
## 1465 ZJ Latin America & Caribbean 5690.2476
## 1466 ZJ Latin America & Caribbean 5927.7382
## 1467 ZJ Latin America & Caribbean 6075.8790
## 1468 ZJ Latin America & Caribbean 6160.8680
## 1469 ZJ Latin America & Caribbean 5902.7597
## 1470 ZJ Latin America & Caribbean 5622.7894
## 1471 ZJ Latin America & Caribbean 5505.3912
## 1472 ZJ Latin America & Caribbean 5368.7266
## 1473 ZJ Latin America & Caribbean 5208.8963
## 1474 ZJ Latin America & Caribbean 5148.1528
## 1475 ZJ Latin America & Caribbean 4958.8084
## 1476 ZJ Latin America & Caribbean 4700.6987
## 1477 ZJ Latin America & Caribbean 4492.8869
## 1478 ZJ Latin America & Caribbean 4304.5957
## 1479 ZJ Latin America & Caribbean 4142.1110
## 1480 ZJ Latin America & Caribbean 3973.0528
## 1481 ZJ Latin America & Caribbean 3806.0310
## 1482 ZJ Latin America & Caribbean 3743.7925
## 1483 ZJ Latin America & Caribbean 3662.4850
## 1484 ZJ Latin America & Caribbean 3560.2300
## 1485 ZJ Latin America & Caribbean 3412.0338
## 1486 ZJ Latin America & Caribbean 3437.5354
## 1487 ZJ Latin America & Caribbean 3387.0883
## 1488 ZJ Latin America & Caribbean 3279.0104
## 1489 XJ Latin America & Caribbean (excluding high income) 7985.0715
## 1490 XJ Latin America & Caribbean (excluding high income) 7569.6557
## 1491 XJ Latin America & Caribbean (excluding high income) 8178.0614
## 1492 XJ Latin America & Caribbean (excluding high income) 8206.8951
## 1493 XJ Latin America & Caribbean (excluding high income) 8162.8703
## 1494 XJ Latin America & Caribbean (excluding high income) 8090.1985
## 1495 XJ Latin America & Caribbean (excluding high income) 8203.0039
## 1496 XJ Latin America & Caribbean (excluding high income) 8257.5835
## 1497 XJ Latin America & Caribbean (excluding high income) 8234.9478
## 1498 XJ Latin America & Caribbean (excluding high income) 8091.5637
## 1499 XJ Latin America & Caribbean (excluding high income) 7989.7912
## 1500 XJ Latin America & Caribbean (excluding high income) 7732.1624
## 1501 XJ Latin America & Caribbean (excluding high income) 7326.0163
## 1502 XJ Latin America & Caribbean (excluding high income) 7568.0281
## 1503 XJ Latin America & Caribbean (excluding high income) 7373.9229
## 1504 XJ Latin America & Caribbean (excluding high income) 7076.4804
## 1505 XJ Latin America & Caribbean (excluding high income) 6811.1198
## 1506 XJ Latin America & Caribbean (excluding high income) 6626.8828
## 1507 XJ Latin America & Caribbean (excluding high income) 6366.3217
## 1508 XJ Latin America & Caribbean (excluding high income) 6293.2560
## 1509 XJ Latin America & Caribbean (excluding high income) 6352.3715
## 1510 XJ Latin America & Caribbean (excluding high income) 6429.4451
## 1511 XJ Latin America & Caribbean (excluding high income) 6300.1905
## 1512 XJ Latin America & Caribbean (excluding high income) 6366.0911
## 1513 XJ Latin America & Caribbean (excluding high income) 6312.1614
## 1514 XJ Latin America & Caribbean (excluding high income) 6099.4697
## 1515 XJ Latin America & Caribbean (excluding high income) 5962.8341
## 1516 XJ Latin America & Caribbean (excluding high income) 6037.1055
## 1517 XJ Latin America & Caribbean (excluding high income) 5823.8804
## 1518 XJ Latin America & Caribbean (excluding high income) 5691.8825
## 1519 XJ Latin America & Caribbean (excluding high income) 5674.4334
## 1520 XJ Latin America & Caribbean (excluding high income) 5618.4476
## 1521 XJ Latin America & Caribbean (excluding high income) 5757.4816
## 1522 XJ Latin America & Caribbean (excluding high income) 5782.8356
## 1523 XJ Latin America & Caribbean (excluding high income) 5875.2790
## 1524 XJ Latin America & Caribbean (excluding high income) 5814.0709
## 1525 XJ Latin America & Caribbean (excluding high income) 5719.5981
## 1526 XJ Latin America & Caribbean (excluding high income) 5656.9893
## 1527 XJ Latin America & Caribbean (excluding high income) 5563.4123
## 1528 XJ Latin America & Caribbean (excluding high income) 5784.1815
## 1529 XJ Latin America & Caribbean (excluding high income) 5907.1233
## 1530 XJ Latin America & Caribbean (excluding high income) 6004.0261
## 1531 XJ Latin America & Caribbean (excluding high income) 5754.4517
## 1532 XJ Latin America & Caribbean (excluding high income) 5485.6870
## 1533 XJ Latin America & Caribbean (excluding high income) 5385.2676
## 1534 XJ Latin America & Caribbean (excluding high income) 5259.6813
## 1535 XJ Latin America & Caribbean (excluding high income) 5101.7962
## 1536 XJ Latin America & Caribbean (excluding high income) 5011.6056
## 1537 XJ Latin America & Caribbean (excluding high income) 4811.3263
## 1538 XJ Latin America & Caribbean (excluding high income) 4533.8164
## 1539 XJ Latin America & Caribbean (excluding high income) 4313.9015
## 1540 XJ Latin America & Caribbean (excluding high income) 4131.5224
## 1541 XJ Latin America & Caribbean (excluding high income) 3966.4846
## 1542 XJ Latin America & Caribbean (excluding high income) 3803.6942
## 1543 XJ Latin America & Caribbean (excluding high income) 3634.9347
## 1544 XJ Latin America & Caribbean (excluding high income) 3573.6824
## 1545 XJ Latin America & Caribbean (excluding high income) 3508.6113
## 1546 XJ Latin America & Caribbean (excluding high income) 3405.4018
## 1547 XJ Latin America & Caribbean (excluding high income) 3254.6848
## 1548 XJ Latin America & Caribbean (excluding high income) 3292.8183
## 1549 XJ Latin America & Caribbean (excluding high income) 3244.5970
## 1550 XJ Latin America & Caribbean (excluding high income) 3141.1801
## 1551 T2 Latin America & the Caribbean (IDA & IBRD countries) 8330.9321
## 1552 T2 Latin America & the Caribbean (IDA & IBRD countries) 7875.0756
## 1553 T2 Latin America & the Caribbean (IDA & IBRD countries) 8508.2175
## 1554 T2 Latin America & the Caribbean (IDA & IBRD countries) 8527.4806
## 1555 T2 Latin America & the Caribbean (IDA & IBRD countries) 8463.5814
## 1556 T2 Latin America & the Caribbean (IDA & IBRD countries) 8381.2287
## 1557 T2 Latin America & the Caribbean (IDA & IBRD countries) 8480.6258
## 1558 T2 Latin America & the Caribbean (IDA & IBRD countries) 8527.9219
## 1559 T2 Latin America & the Caribbean (IDA & IBRD countries) 8498.7001
## 1560 T2 Latin America & the Caribbean (IDA & IBRD countries) 8346.8728
## 1561 T2 Latin America & the Caribbean (IDA & IBRD countries) 8225.8372
## 1562 T2 Latin America & the Caribbean (IDA & IBRD countries) 7952.3942
## 1563 T2 Latin America & the Caribbean (IDA & IBRD countries) 7536.1511
## 1564 T2 Latin America & the Caribbean (IDA & IBRD countries) 7783.3847
## 1565 T2 Latin America & the Caribbean (IDA & IBRD countries) 7581.1369
## 1566 T2 Latin America & the Caribbean (IDA & IBRD countries) 7276.9306
## 1567 T2 Latin America & the Caribbean (IDA & IBRD countries) 7006.9795
## 1568 T2 Latin America & the Caribbean (IDA & IBRD countries) 6817.1726
## 1569 T2 Latin America & the Caribbean (IDA & IBRD countries) 6546.5559
## 1570 T2 Latin America & the Caribbean (IDA & IBRD countries) 6465.1197
## 1571 T2 Latin America & the Caribbean (IDA & IBRD countries) 6523.4149
## 1572 T2 Latin America & the Caribbean (IDA & IBRD countries) 6600.8246
## 1573 T2 Latin America & the Caribbean (IDA & IBRD countries) 6471.6030
## 1574 T2 Latin America & the Caribbean (IDA & IBRD countries) 6546.4467
## 1575 T2 Latin America & the Caribbean (IDA & IBRD countries) 6481.6957
## 1576 T2 Latin America & the Caribbean (IDA & IBRD countries) 6254.7329
## 1577 T2 Latin America & the Caribbean (IDA & IBRD countries) 6111.5010
## 1578 T2 Latin America & the Caribbean (IDA & IBRD countries) 6172.9161
## 1579 T2 Latin America & the Caribbean (IDA & IBRD countries) 5954.4641
## 1580 T2 Latin America & the Caribbean (IDA & IBRD countries) 5800.2696
## 1581 T2 Latin America & the Caribbean (IDA & IBRD countries) 5745.8916
## 1582 T2 Latin America & the Caribbean (IDA & IBRD countries) 5663.1975
## 1583 T2 Latin America & the Caribbean (IDA & IBRD countries) 5791.4062
## 1584 T2 Latin America & the Caribbean (IDA & IBRD countries) 5804.5008
## 1585 T2 Latin America & the Caribbean (IDA & IBRD countries) 5897.4304
## 1586 T2 Latin America & the Caribbean (IDA & IBRD countries) 5825.5939
## 1587 T2 Latin America & the Caribbean (IDA & IBRD countries) 5723.9101
## 1588 T2 Latin America & the Caribbean (IDA & IBRD countries) 5661.4482
## 1589 T2 Latin America & the Caribbean (IDA & IBRD countries) 5579.9113
## 1590 T2 Latin America & the Caribbean (IDA & IBRD countries) 5826.8581
## 1591 T2 Latin America & the Caribbean (IDA & IBRD countries) 5986.4548
## 1592 T2 Latin America & the Caribbean (IDA & IBRD countries) 6092.2679
## 1593 T2 Latin America & the Caribbean (IDA & IBRD countries) 5824.0280
## 1594 T2 Latin America & the Caribbean (IDA & IBRD countries) 5547.6410
## 1595 T2 Latin America & the Caribbean (IDA & IBRD countries) 5441.7205
## 1596 T2 Latin America & the Caribbean (IDA & IBRD countries) 5314.9719
## 1597 T2 Latin America & the Caribbean (IDA & IBRD countries) 5159.8432
## 1598 T2 Latin America & the Caribbean (IDA & IBRD countries) 5098.3497
## 1599 T2 Latin America & the Caribbean (IDA & IBRD countries) 4899.1671
## 1600 T2 Latin America & the Caribbean (IDA & IBRD countries) 4639.1202
## 1601 T2 Latin America & the Caribbean (IDA & IBRD countries) 4431.2997
## 1602 T2 Latin America & the Caribbean (IDA & IBRD countries) 4246.6118
## 1603 T2 Latin America & the Caribbean (IDA & IBRD countries) 4087.5068
## 1604 T2 Latin America & the Caribbean (IDA & IBRD countries) 3925.1805
## 1605 T2 Latin America & the Caribbean (IDA & IBRD countries) 3760.2609
## 1606 T2 Latin America & the Caribbean (IDA & IBRD countries) 3703.1150
## 1607 T2 Latin America & the Caribbean (IDA & IBRD countries) 3627.1012
## 1608 T2 Latin America & the Caribbean (IDA & IBRD countries) 3530.7537
## 1609 T2 Latin America & the Caribbean (IDA & IBRD countries) 3385.0134
## 1610 T2 Latin America & the Caribbean (IDA & IBRD countries) 3417.6019
## 1611 T2 Latin America & the Caribbean (IDA & IBRD countries) 3372.1389
## 1612 T2 Latin America & the Caribbean (IDA & IBRD countries) 3266.8026
## 1613 XL Least developed countries: UN classification 1073.8926
## 1614 XL Least developed countries: UN classification 1073.9870
## 1615 XL Least developed countries: UN classification 1091.9387
## 1616 XL Least developed countries: UN classification 1065.6793
## 1617 XL Least developed countries: UN classification 1045.1031
## 1618 XL Least developed countries: UN classification 1025.5356
## 1619 XL Least developed countries: UN classification 1009.4246
## 1620 XL Least developed countries: UN classification 1008.6266
## 1621 XL Least developed countries: UN classification 978.1639
## 1622 XL Least developed countries: UN classification 948.3494
## 1623 XL Least developed countries: UN classification 950.4975
## 1624 XL Least developed countries: UN classification 944.6993
## 1625 XL Least developed countries: UN classification 910.4903
## 1626 XL Least developed countries: UN classification 896.9042
## 1627 XL Least developed countries: UN classification 863.2649
## 1628 XL Least developed countries: UN classification 824.1578
## 1629 XL Least developed countries: UN classification 789.7029
## 1630 XL Least developed countries: UN classification 753.6752
## 1631 XL Least developed countries: UN classification 726.5513
## 1632 XL Least developed countries: UN classification 709.2148
## 1633 XL Least developed countries: UN classification 692.6250
## 1634 XL Least developed countries: UN classification 674.6813
## 1635 XL Least developed countries: UN classification 663.2670
## 1636 XL Least developed countries: UN classification 654.0293
## 1637 XL Least developed countries: UN classification 644.9368
## 1638 XL Least developed countries: UN classification 624.4411
## 1639 XL Least developed countries: UN classification 606.8495
## 1640 XL Least developed countries: UN classification 588.8969
## 1641 XL Least developed countries: UN classification 599.2523
## 1642 XL Least developed countries: UN classification 615.1301
## 1643 XL Least developed countries: UN classification 627.0575
## 1644 XL Least developed countries: UN classification 631.6880
## 1645 XL Least developed countries: UN classification 646.4718
## 1646 XL Least developed countries: UN classification 648.7037
## 1647 XL Least developed countries: UN classification 650.8639
## 1648 XL Least developed countries: UN classification 639.2532
## 1649 XL Least developed countries: UN classification 632.8818
## 1650 XL Least developed countries: UN classification 641.7206
## 1651 XL Least developed countries: UN classification 646.2984
## 1652 XL Least developed countries: UN classification 649.7502
## 1653 XL Least developed countries: UN classification 656.1576
## 1654 XL Least developed countries: UN classification 652.4251
## 1655 XL Least developed countries: UN classification NA
## 1656 XL Least developed countries: UN classification NA
## 1657 XL Least developed countries: UN classification NA
## 1658 XL Least developed countries: UN classification NA
## 1659 XL Least developed countries: UN classification NA
## 1660 XL Least developed countries: UN classification NA
## 1661 XL Least developed countries: UN classification NA
## 1662 XL Least developed countries: UN classification NA
## 1663 XL Least developed countries: UN classification NA
## 1664 XL Least developed countries: UN classification NA
## 1665 XL Least developed countries: UN classification NA
## 1666 XL Least developed countries: UN classification NA
## 1667 XL Least developed countries: UN classification NA
## 1668 XL Least developed countries: UN classification NA
## 1669 XL Least developed countries: UN classification NA
## 1670 XL Least developed countries: UN classification NA
## 1671 XL Least developed countries: UN classification NA
## 1672 XL Least developed countries: UN classification NA
## 1673 XL Least developed countries: UN classification NA
## 1674 XL Least developed countries: UN classification NA
## 1675 XO Low & middle income 5139.9234
## 1676 XO Low & middle income 4861.6103
## 1677 XO Low & middle income 4980.6632
## 1678 XO Low & middle income 4846.2192
## 1679 XO Low & middle income 4678.2395
## 1680 XO Low & middle income 4506.6430
## 1681 XO Low & middle income 4366.0511
## 1682 XO Low & middle income 4236.9027
## 1683 XO Low & middle income 4091.9664
## 1684 XO Low & middle income 3934.9808
## 1685 XO Low & middle income 3785.0033
## 1686 XO Low & middle income 3609.5738
## 1687 XO Low & middle income 3388.5627
## 1688 XO Low & middle income 3326.6472
## 1689 XO Low & middle income 3183.3530
## 1690 XO Low & middle income 2963.3195
## 1691 XO Low & middle income 2775.9637
## 1692 XO Low & middle income 2622.9469
## 1693 XO Low & middle income 2469.6915
## 1694 XO Low & middle income 2362.0966
## 1695 XO Low & middle income 2286.7500
## 1696 XO Low & middle income 2235.4396
## 1697 XO Low & middle income 2143.5940
## 1698 XO Low & middle income 2096.4282
## 1699 XO Low & middle income 2074.7782
## 1700 XO Low & middle income 2002.9410
## 1701 XO Low & middle income 1929.9053
## 1702 XO Low & middle income 1888.8425
## 1703 XO Low & middle income 1858.6326
## 1704 XO Low & middle income 1829.0584
## 1705 XO Low & middle income 1831.9631
## 1706 XO Low & middle income 1837.8234
## 1707 XO Low & middle income 1836.4309
## 1708 XO Low & middle income 1817.5582
## 1709 XO Low & middle income 1781.2573
## 1710 XO Low & middle income 1733.8827
## 1711 XO Low & middle income 1700.9316
## 1712 XO Low & middle income 1662.0483
## 1713 XO Low & middle income 1619.3866
## 1714 XO Low & middle income 1622.2703
## 1715 XO Low & middle income 1610.8481
## 1716 XO Low & middle income 1609.9243
## 1717 XO Low & middle income 1566.6816
## 1718 XO Low & middle income 1529.8294
## 1719 XO Low & middle income 1506.2619
## 1720 XO Low & middle income 1469.5905
## 1721 XO Low & middle income 1413.7991
## 1722 XO Low & middle income 1384.1184
## 1723 XO Low & middle income 1336.3812
## 1724 XO Low & middle income 1278.1293
## 1725 XO Low & middle income 1233.3715
## 1726 XO Low & middle income 1187.5393
## 1727 XO Low & middle income 1123.1313
## 1728 XO Low & middle income 1063.4886
## 1729 XO Low & middle income 1030.1251
## 1730 XO Low & middle income 1022.3803
## 1731 XO Low & middle income 999.7408
## 1732 XO Low & middle income 966.2423
## 1733 XO Low & middle income 918.3631
## 1734 XO Low & middle income 898.6556
## 1735 XO Low & middle income 884.1654
## 1736 XO Low & middle income 887.3202
## 1737 XM Low income 787.3897
## 1738 XM Low income 784.9217
## 1739 XM Low income 805.0665
## 1740 XM Low income 796.0232
## 1741 XM Low income 792.3638
## 1742 XM Low income 789.7676
## 1743 XM Low income 791.7100
## 1744 XM Low income 813.7089
## 1745 XM Low income 799.9783
## 1746 XM Low income 794.8452
## 1747 XM Low income 850.5921
## 1748 XM Low income 868.0695
## 1749 XM Low income 835.2948
## 1750 XM Low income 829.3381
## 1751 XM Low income 809.2852
## 1752 XM Low income 784.2492
## 1753 XM Low income 761.5741
## 1754 XM Low income 735.9324
## 1755 XM Low income 714.4465
## 1756 XM Low income 700.4542
## 1757 XM Low income 690.4933
## 1758 XM Low income 676.9143
## 1759 XM Low income 673.5746
## 1760 XM Low income 675.0093
## 1761 XM Low income 668.4969
## 1762 XM Low income 642.5651
## 1763 XM Low income 624.9740
## 1764 XM Low income 612.3745
## 1765 XM Low income 620.9192
## 1766 XM Low income 627.8548
## 1767 XM Low income 639.3498
## 1768 XM Low income 646.3433
## 1769 XM Low income 676.5478
## 1770 XM Low income 685.4960
## 1771 XM Low income 679.4879
## 1772 XM Low income 658.5865
## 1773 XM Low income 655.9215
## 1774 XM Low income 672.3615
## 1775 XM Low income 698.3127
## 1776 XM Low income 703.0468
## 1777 XM Low income 709.0316
## 1778 XM Low income NA
## 1779 XM Low income NA
## 1780 XM Low income NA
## 1781 XM Low income NA
## 1782 XM Low income NA
## 1783 XM Low income NA
## 1784 XM Low income NA
## 1785 XM Low income NA
## 1786 XM Low income NA
## 1787 XM Low income NA
## 1788 XM Low income NA
## 1789 XM Low income NA
## 1790 XM Low income NA
## 1791 XM Low income NA
## 1792 XM Low income NA
## 1793 XM Low income NA
## 1794 XM Low income NA
## 1795 XM Low income NA
## 1796 XM Low income NA
## 1797 XM Low income NA
## 1798 XM Low income NA
## 1799 XN Lower middle income 2393.2792
## 1800 XN Lower middle income 2296.9496
## 1801 XN Lower middle income 2408.2931
## 1802 XN Lower middle income 2352.7083
## 1803 XN Lower middle income 2276.1811
## 1804 XN Lower middle income 2197.6941
## 1805 XN Lower middle income 2109.3345
## 1806 XN Lower middle income 2038.3001
## 1807 XN Lower middle income 1959.9142
## 1808 XN Lower middle income 1895.2707
## 1809 XN Lower middle income 1841.7544
## 1810 XN Lower middle income 1785.1286
## 1811 XN Lower middle income 1700.8716
## 1812 XN Lower middle income 1650.8599
## 1813 XN Lower middle income 1608.9631
## 1814 XN Lower middle income 1529.6790
## 1815 XN Lower middle income 1460.5182
## 1816 XN Lower middle income 1399.4154
## 1817 XN Lower middle income 1335.2168
## 1818 XN Lower middle income 1279.0303
## 1819 XN Lower middle income 1241.0825
## 1820 XN Lower middle income 1212.9593
## 1821 XN Lower middle income 1182.3139
## 1822 XN Lower middle income 1154.8992
## 1823 XN Lower middle income 1160.6203
## 1824 XN Lower middle income 1141.5947
## 1825 XN Lower middle income 1098.0520
## 1826 XN Lower middle income 1069.8093
## 1827 XN Lower middle income 1064.8069
## 1828 XN Lower middle income 1071.7140
## 1829 XN Lower middle income 1063.0388
## 1830 XN Lower middle income 1058.1863
## 1831 XN Lower middle income 1031.6077
## 1832 XN Lower middle income 1009.9449
## 1833 XN Lower middle income 987.2369
## 1834 XN Lower middle income 979.9747
## 1835 XN Lower middle income 981.4433
## 1836 XN Lower middle income 971.0557
## 1837 XN Lower middle income 975.7915
## 1838 XN Lower middle income 962.5563
## 1839 XN Lower middle income 942.7322
## 1840 XN Lower middle income 949.9545
## 1841 XN Lower middle income 962.2821
## 1842 XN Lower middle income 986.7852
## 1843 XN Lower middle income 1001.4106
## 1844 XN Lower middle income 983.3628
## 1845 XN Lower middle income 929.4172
## 1846 XN Lower middle income 923.8551
## 1847 XN Lower middle income 897.5761
## 1848 XN Lower middle income 871.2053
## 1849 XN Lower middle income 845.9399
## 1850 XN Lower middle income 817.4446
## 1851 XN Lower middle income 769.2240
## 1852 XN Lower middle income 721.5149
## 1853 XN Lower middle income 694.8979
## 1854 XN Lower middle income 689.4460
## 1855 XN Lower middle income 687.8723
## 1856 XN Lower middle income 678.8416
## 1857 XN Lower middle income 651.9976
## 1858 XN Lower middle income 627.2294
## 1859 XN Lower middle income 622.4115
## 1860 XN Lower middle income 615.1277
## 1861 ZQ Middle East & North Africa 7303.8277
## 1862 ZQ Middle East & North Africa 7120.4760
## 1863 ZQ Middle East & North Africa 7540.4350
## 1864 ZQ Middle East & North Africa 7556.0519
## 1865 ZQ Middle East & North Africa 7534.9934
## 1866 ZQ Middle East & North Africa 7533.9749
## 1867 ZQ Middle East & North Africa 7375.4648
## 1868 ZQ Middle East & North Africa 7338.3475
## 1869 ZQ Middle East & North Africa 7276.3686
## 1870 ZQ Middle East & North Africa 7259.3970
## 1871 ZQ Middle East & North Africa 7102.3572
## 1872 ZQ Middle East & North Africa 6998.9993
## 1873 ZQ Middle East & North Africa 6805.2661
## 1874 ZQ Middle East & North Africa 6906.3523
## 1875 ZQ Middle East & North Africa 6745.5946
## 1876 ZQ Middle East & North Africa 6548.6658
## 1877 ZQ Middle East & North Africa 6317.1408
## 1878 ZQ Middle East & North Africa 6137.0779
## 1879 ZQ Middle East & North Africa 5800.2374
## 1880 ZQ Middle East & North Africa 5627.8733
## 1881 ZQ Middle East & North Africa 5650.4474
## 1882 ZQ Middle East & North Africa 5673.7126
## 1883 ZQ Middle East & North Africa 5416.2347
## 1884 ZQ Middle East & North Africa 5411.7472
## 1885 ZQ Middle East & North Africa 5273.8611
## 1886 ZQ Middle East & North Africa 5187.5985
## 1887 ZQ Middle East & North Africa 5039.9339
## 1888 ZQ Middle East & North Africa 5037.6292
## 1889 ZQ Middle East & North Africa 5029.3517
## 1890 ZQ Middle East & North Africa 5039.5487
## 1891 ZQ Middle East & North Africa 4895.2281
## 1892 ZQ Middle East & North Africa 4824.8624
## 1893 ZQ Middle East & North Africa 4418.2472
## 1894 ZQ Middle East & North Africa 4428.7397
## 1895 ZQ Middle East & North Africa 4402.4937
## 1896 ZQ Middle East & North Africa 4567.5397
## 1897 ZQ Middle East & North Africa 4659.7119
## 1898 ZQ Middle East & North Africa 4861.2934
## 1899 ZQ Middle East & North Africa 5047.9195
## 1900 ZQ Middle East & North Africa 5374.5166
## 1901 ZQ Middle East & North Africa 5762.4232
## 1902 ZQ Middle East & North Africa 5855.9934
## 1903 ZQ Middle East & North Africa 5917.4384
## 1904 ZQ Middle East & North Africa 5803.4041
## 1905 ZQ Middle East & North Africa 6235.7452
## 1906 ZQ Middle East & North Africa 6136.7331
## 1907 ZQ Middle East & North Africa 5417.7189
## 1908 ZQ Middle East & North Africa NA
## 1909 ZQ Middle East & North Africa NA
## 1910 ZQ Middle East & North Africa NA
## 1911 ZQ Middle East & North Africa NA
## 1912 ZQ Middle East & North Africa NA
## 1913 ZQ Middle East & North Africa NA
## 1914 ZQ Middle East & North Africa NA
## 1915 ZQ Middle East & North Africa NA
## 1916 ZQ Middle East & North Africa NA
## 1917 ZQ Middle East & North Africa NA
## 1918 ZQ Middle East & North Africa NA
## 1919 ZQ Middle East & North Africa NA
## 1920 ZQ Middle East & North Africa NA
## 1921 ZQ Middle East & North Africa NA
## 1922 ZQ Middle East & North Africa NA
## 1923 XQ Middle East & North Africa (excluding high income) 4002.8946
## 1924 XQ Middle East & North Africa (excluding high income) 3907.6539
## 1925 XQ Middle East & North Africa (excluding high income) 4113.8845
## 1926 XQ Middle East & North Africa (excluding high income) 4126.4252
## 1927 XQ Middle East & North Africa (excluding high income) 4127.5320
## 1928 XQ Middle East & North Africa (excluding high income) 4073.6259
## 1929 XQ Middle East & North Africa (excluding high income) 3931.5563
## 1930 XQ Middle East & North Africa (excluding high income) 3971.9186
## 1931 XQ Middle East & North Africa (excluding high income) 3974.4193
## 1932 XQ Middle East & North Africa (excluding high income) 4029.9413
## 1933 XQ Middle East & North Africa (excluding high income) 3959.5209
## 1934 XQ Middle East & North Africa (excluding high income) 4074.4862
## 1935 XQ Middle East & North Africa (excluding high income) 3940.0776
## 1936 XQ Middle East & North Africa (excluding high income) 3907.1799
## 1937 XQ Middle East & North Africa (excluding high income) 3833.6010
## 1938 XQ Middle East & North Africa (excluding high income) 3676.3402
## 1939 XQ Middle East & North Africa (excluding high income) 3557.8935
## 1940 XQ Middle East & North Africa (excluding high income) 3463.3526
## 1941 XQ Middle East & North Africa (excluding high income) 3269.4143
## 1942 XQ Middle East & North Africa (excluding high income) 3253.0830
## 1943 XQ Middle East & North Africa (excluding high income) 3211.2102
## 1944 XQ Middle East & North Africa (excluding high income) 3181.8803
## 1945 XQ Middle East & North Africa (excluding high income) 3054.6428
## 1946 XQ Middle East & North Africa (excluding high income) 2974.7141
## 1947 XQ Middle East & North Africa (excluding high income) 2838.8159
## 1948 XQ Middle East & North Africa (excluding high income) 2785.1325
## 1949 XQ Middle East & North Africa (excluding high income) 2667.8528
## 1950 XQ Middle East & North Africa (excluding high income) 2644.9274
## 1951 XQ Middle East & North Africa (excluding high income) 2649.6563
## 1952 XQ Middle East & North Africa (excluding high income) 2656.6194
## 1953 XQ Middle East & North Africa (excluding high income) 2585.2335
## 1954 XQ Middle East & North Africa (excluding high income) 2673.5526
## 1955 XQ Middle East & North Africa (excluding high income) 2474.4307
## 1956 XQ Middle East & North Africa (excluding high income) 2495.9170
## 1957 XQ Middle East & North Africa (excluding high income) 2564.7371
## 1958 XQ Middle East & North Africa (excluding high income) 2597.1822
## 1959 XQ Middle East & North Africa (excluding high income) 2733.8181
## 1960 XQ Middle East & North Africa (excluding high income) 2727.4451
## 1961 XQ Middle East & North Africa (excluding high income) 2819.0324
## 1962 XQ Middle East & North Africa (excluding high income) 2761.1740
## 1963 XQ Middle East & North Africa (excluding high income) 2521.6368
## 1964 XQ Middle East & North Africa (excluding high income) 2597.2412
## 1965 XQ Middle East & North Africa (excluding high income) 2843.4275
## 1966 XQ Middle East & North Africa (excluding high income) 3005.3724
## 1967 XQ Middle East & North Africa (excluding high income) 3214.4533
## 1968 XQ Middle East & North Africa (excluding high income) 3288.0528
## 1969 XQ Middle East & North Africa (excluding high income) 2921.2686
## 1970 XQ Middle East & North Africa (excluding high income) 2916.0667
## 1971 XQ Middle East & North Africa (excluding high income) 2813.3361
## 1972 XQ Middle East & North Africa (excluding high income) 2731.5274
## 1973 XQ Middle East & North Africa (excluding high income) 2467.6620
## 1974 XQ Middle East & North Africa (excluding high income) 2344.6195
## 1975 XQ Middle East & North Africa (excluding high income) 2212.0698
## 1976 XQ Middle East & North Africa (excluding high income) 2034.2738
## 1977 XQ Middle East & North Africa (excluding high income) 1891.4649
## 1978 XQ Middle East & North Africa (excluding high income) 1789.8997
## 1979 XQ Middle East & North Africa (excluding high income) 1724.9281
## 1980 XQ Middle East & North Africa (excluding high income) NA
## 1981 XQ Middle East & North Africa (excluding high income) NA
## 1982 XQ Middle East & North Africa (excluding high income) NA
## 1983 XQ Middle East & North Africa (excluding high income) NA
## 1984 XQ Middle East & North Africa (excluding high income) NA
## 1985 T3 Middle East & North Africa (IDA & IBRD countries) 4014.6703
## 1986 T3 Middle East & North Africa (IDA & IBRD countries) 3919.7814
## 1987 T3 Middle East & North Africa (IDA & IBRD countries) 4122.8400
## 1988 T3 Middle East & North Africa (IDA & IBRD countries) 4134.9820
## 1989 T3 Middle East & North Africa (IDA & IBRD countries) 4135.4873
## 1990 T3 Middle East & North Africa (IDA & IBRD countries) 4080.6735
## 1991 T3 Middle East & North Africa (IDA & IBRD countries) 3939.3841
## 1992 T3 Middle East & North Africa (IDA & IBRD countries) 3980.7041
## 1993 T3 Middle East & North Africa (IDA & IBRD countries) 3982.2247
## 1994 T3 Middle East & North Africa (IDA & IBRD countries) 4039.1874
## 1995 T3 Middle East & North Africa (IDA & IBRD countries) 3969.1636
## 1996 T3 Middle East & North Africa (IDA & IBRD countries) 4087.7003
## 1997 T3 Middle East & North Africa (IDA & IBRD countries) 3952.6428
## 1998 T3 Middle East & North Africa (IDA & IBRD countries) 3921.0042
## 1999 T3 Middle East & North Africa (IDA & IBRD countries) 3847.7636
## 2000 T3 Middle East & North Africa (IDA & IBRD countries) 3688.9695
## 2001 T3 Middle East & North Africa (IDA & IBRD countries) 3568.0986
## 2002 T3 Middle East & North Africa (IDA & IBRD countries) 3474.6920
## 2003 T3 Middle East & North Africa (IDA & IBRD countries) 3282.7325
## 2004 T3 Middle East & North Africa (IDA & IBRD countries) 3268.3189
## 2005 T3 Middle East & North Africa (IDA & IBRD countries) 3222.4974
## 2006 T3 Middle East & North Africa (IDA & IBRD countries) 3189.7752
## 2007 T3 Middle East & North Africa (IDA & IBRD countries) 3058.0203
## 2008 T3 Middle East & North Africa (IDA & IBRD countries) 2978.8002
## 2009 T3 Middle East & North Africa (IDA & IBRD countries) 2844.3406
## 2010 T3 Middle East & North Africa (IDA & IBRD countries) 2792.1990
## 2011 T3 Middle East & North Africa (IDA & IBRD countries) 2672.8160
## 2012 T3 Middle East & North Africa (IDA & IBRD countries) 2650.1156
## 2013 T3 Middle East & North Africa (IDA & IBRD countries) 2654.2853
## 2014 T3 Middle East & North Africa (IDA & IBRD countries) 2660.7295
## 2015 T3 Middle East & North Africa (IDA & IBRD countries) 2588.7531
## 2016 T3 Middle East & North Africa (IDA & IBRD countries) 2676.7326
## 2017 T3 Middle East & North Africa (IDA & IBRD countries) 2455.7135
## 2018 T3 Middle East & North Africa (IDA & IBRD countries) 2477.0373
## 2019 T3 Middle East & North Africa (IDA & IBRD countries) 2545.3368
## 2020 T3 Middle East & North Africa (IDA & IBRD countries) 2577.5365
## 2021 T3 Middle East & North Africa (IDA & IBRD countries) 2713.1389
## 2022 T3 Middle East & North Africa (IDA & IBRD countries) 2706.8141
## 2023 T3 Middle East & North Africa (IDA & IBRD countries) 2797.7086
## 2024 T3 Middle East & North Africa (IDA & IBRD countries) 2740.2878
## 2025 T3 Middle East & North Africa (IDA & IBRD countries) 2502.5625
## 2026 T3 Middle East & North Africa (IDA & IBRD countries) 2577.5950
## 2027 T3 Middle East & North Africa (IDA & IBRD countries) 2821.9192
## 2028 T3 Middle East & North Africa (IDA & IBRD countries) 2982.6391
## 2029 T3 Middle East & North Africa (IDA & IBRD countries) 3190.1384
## 2030 T3 Middle East & North Africa (IDA & IBRD countries) 3263.1812
## 2031 T3 Middle East & North Africa (IDA & IBRD countries) 2899.1714
## 2032 T3 Middle East & North Africa (IDA & IBRD countries) 2894.0089
## 2033 T3 Middle East & North Africa (IDA & IBRD countries) 2792.0554
## 2034 T3 Middle East & North Africa (IDA & IBRD countries) 2710.8654
## 2035 T3 Middle East & North Africa (IDA & IBRD countries) 2448.9961
## 2036 T3 Middle East & North Africa (IDA & IBRD countries) 2326.8842
## 2037 T3 Middle East & North Africa (IDA & IBRD countries) 2195.3372
## 2038 T3 Middle East & North Africa (IDA & IBRD countries) 2018.8861
## 2039 T3 Middle East & North Africa (IDA & IBRD countries) 1877.1574
## 2040 T3 Middle East & North Africa (IDA & IBRD countries) 1776.3605
## 2041 T3 Middle East & North Africa (IDA & IBRD countries) 1711.8804
## 2042 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2043 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2044 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2045 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2046 T3 Middle East & North Africa (IDA & IBRD countries) NA
## 2047 XP Middle income 5660.8768
## 2048 XP Middle income 5341.4794
## 2049 XP Middle income 5463.9939
## 2050 XP Middle income 5307.6598
## 2051 XP Middle income 5114.3425
## 2052 XP Middle income 4917.8443
## 2053 XP Middle income 4755.9356
## 2054 XP Middle income 4605.2638
## 2055 XP Middle income 4441.4448
## 2056 XP Middle income 4263.9754
## 2057 XP Middle income 4088.6596
## 2058 XP Middle income 3889.4378
## 2059 XP Middle income 3645.3078
## 2060 XP Middle income 3573.8054
## 2061 XP Middle income 3414.5555
## 2062 XP Middle income 3172.2393
## 2063 XP Middle income 2966.0938
## 2064 XP Middle income 2798.2222
## 2065 XP Middle income 2630.1994
## 2066 XP Middle income 2511.6938
## 2067 XP Middle income 2428.2685
## 2068 XP Middle income 2371.4826
## 2069 XP Middle income 2270.3068
## 2070 XP Middle income 2217.4399
## 2071 XP Middle income 2192.9368
## 2072 XP Middle income 2115.7323
## 2073 XP Middle income 2036.7250
## 2074 XP Middle income 1991.8974
## 2075 XP Middle income 1957.3420
## 2076 XP Middle income 1923.6882
## 2077 XP Middle income 1924.7866
## 2078 XP Middle income 1929.5221
## 2079 XP Middle income 1925.3513
## 2080 XP Middle income 1903.7211
## 2081 XP Middle income 1864.5654
## 2082 XP Middle income 1814.6707
## 2083 XP Middle income 1779.0398
## 2084 XP Middle income 1735.8028
## 2085 XP Middle income 1687.9363
## 2086 XP Middle income 1690.4182
## 2087 XP Middle income 1677.5237
## 2088 XP Middle income 1676.6810
## 2089 XP Middle income 1630.2855
## 2090 XP Middle income 1589.4594
## 2091 XP Middle income 1562.2944
## 2092 XP Middle income 1522.8483
## 2093 XP Middle income 1464.1179
## 2094 XP Middle income 1432.7155
## 2095 XP Middle income 1383.3314
## 2096 XP Middle income 1320.6895
## 2097 XP Middle income 1272.3539
## 2098 XP Middle income 1224.0518
## 2099 XP Middle income 1155.5844
## 2100 XP Middle income 1093.0746
## 2101 XP Middle income 1057.6965
## 2102 XP Middle income 1049.2571
## 2103 XP Middle income 1024.6356
## 2104 XP Middle income 989.7712
## 2105 XP Middle income 938.2176
## 2106 XP Middle income 916.7851
## 2107 XP Middle income 904.3638
## 2108 XP Middle income 905.7384
## 2109 XU North America 59496.4700
## 2110 XU North America 56441.3104
## 2111 XU North America 59094.8904
## 2112 XU North America 58113.1052
## 2113 XU North America 56820.7868
## 2114 XU North America 55918.0029
## 2115 XU North America 55452.4214
## 2116 XU North America 54478.1176
## 2117 XU North America 53643.0016
## 2118 XU North America 53038.5091
## 2119 XU North America 52278.6153
## 2120 XU North America 51806.0878
## 2121 XU North America 50860.3629
## 2122 XU North America 52706.2352
## 2123 XU North America 53113.1897
## 2124 XU North America 52378.2199
## 2125 XU North America 51404.4742
## 2126 XU North America 50082.3743
## 2127 XU North America 48671.4569
## 2128 XU North America 47724.0524
## 2129 XU North America 47316.6937
## 2130 XU North America 47323.7930
## 2131 XU North America 45943.4577
## 2132 XU North America 44358.0652
## 2133 XU North America 42988.8684
## 2134 XU North America 41648.2678
## 2135 XU North America 40599.2592
## 2136 XU North America 40005.0564
## 2137 XU North America 38925.7567
## 2138 XU North America 38377.6612
## 2139 XU North America 37582.4333
## 2140 XU North America 38126.2596
## 2141 XU North America 37860.2441
## 2142 XU North America 36897.2367
## 2143 XU North America 35754.5825
## 2144 XU North America 34883.8537
## 2145 XU North America 34031.1777
## 2146 XU North America 32961.7622
## 2147 XU North America 31008.2473
## 2148 XU North America 29924.1263
## 2149 XU North America 30773.2158
## 2150 XU North America 30315.0499
## 2151 XU North America 30694.5283
## 2152 XU North America 30079.4838
## 2153 XU North America 28804.2809
## 2154 XU North America 27813.6920
## 2155 XU North America 26652.5200
## 2156 XU North America 26983.6379
## 2157 XU North America 27391.6817
## 2158 XU North America 26183.7568
## 2159 XU North America 25145.8689
## 2160 XU North America 24693.1632
## 2161 XU North America 25058.1307
## 2162 XU North America 24552.1823
## 2163 XU North America 23676.7420
## 2164 XU North America 23366.3169
## 2165 XU North America 22208.7828
## 2166 XU North America 21146.5788
## 2167 XU North America 20275.6415
## 2168 XU North America 19710.5723
## 2169 XU North America 18870.9635
## 2170 XU North America 18760.6723
## 2171 XY Not classified NA
## 2172 XY Not classified NA
## 2173 XY Not classified NA
## 2174 XY Not classified NA
## 2175 XY Not classified NA
## 2176 XY Not classified NA
## 2177 XY Not classified NA
## 2178 XY Not classified NA
## 2179 XY Not classified NA
## 2180 XY Not classified NA
## 2181 XY Not classified NA
## 2182 XY Not classified NA
## 2183 XY Not classified NA
## 2184 XY Not classified NA
## 2185 XY Not classified NA
## 2186 XY Not classified NA
## 2187 XY Not classified NA
## 2188 XY Not classified NA
## 2189 XY Not classified NA
## 2190 XY Not classified NA
## 2191 XY Not classified NA
## 2192 XY Not classified NA
## 2193 XY Not classified NA
## 2194 XY Not classified NA
## 2195 XY Not classified NA
## 2196 XY Not classified NA
## 2197 XY Not classified NA
## 2198 XY Not classified NA
## 2199 XY Not classified NA
## 2200 XY Not classified NA
## 2201 XY Not classified NA
## 2202 XY Not classified NA
## 2203 XY Not classified NA
## 2204 XY Not classified NA
## 2205 XY Not classified NA
## 2206 XY Not classified NA
## 2207 XY Not classified NA
## 2208 XY Not classified NA
## 2209 XY Not classified NA
## 2210 XY Not classified NA
## 2211 XY Not classified NA
## 2212 XY Not classified NA
## 2213 XY Not classified NA
## 2214 XY Not classified NA
## 2215 XY Not classified NA
## 2216 XY Not classified NA
## 2217 XY Not classified NA
## 2218 XY Not classified NA
## 2219 XY Not classified NA
## 2220 XY Not classified NA
## 2221 XY Not classified NA
## 2222 XY Not classified NA
## 2223 XY Not classified NA
## 2224 XY Not classified NA
## 2225 XY Not classified NA
## 2226 XY Not classified NA
## 2227 XY Not classified NA
## 2228 XY Not classified NA
## 2229 XY Not classified NA
## 2230 XY Not classified NA
## 2231 XY Not classified NA
## 2232 XY Not classified NA
## 2233 OE OECD members 37667.8809
## 2234 OE OECD members 35869.3485
## 2235 OE OECD members 37758.5688
## 2236 OE OECD members 37301.2244
## 2237 OE OECD members 36662.9599
## 2238 OE OECD members 36000.9242
## 2239 OE OECD members 35590.7317
## 2240 OE OECD members 34969.3821
## 2241 OE OECD members 34487.1074
## 2242 OE OECD members 34186.7669
## 2243 OE OECD members 33928.7685
## 2244 OE OECD members 33468.5822
## 2245 OE OECD members 32716.7387
## 2246 OE OECD members 34092.5705
## 2247 OE OECD members 34225.5263
## 2248 OE OECD members 33567.2419
## 2249 OE OECD members 32809.5001
## 2250 OE OECD members 32124.8085
## 2251 OE OECD members 31328.0567
## 2252 OE OECD members 30912.6671
## 2253 OE OECD members 30661.0376
## 2254 OE OECD members 30471.1834
## 2255 OE OECD members 29498.9100
## 2256 OE OECD members 28742.7048
## 2257 OE OECD members 28123.5034
## 2258 OE OECD members 27354.8891
## 2259 OE OECD members 26726.3546
## 2260 OE OECD members 26242.3947
## 2261 OE OECD members 25643.1322
## 2262 OE OECD members 25528.3705
## 2263 OE OECD members 25218.5484
## 2264 OE OECD members 25127.2581
## 2265 OE OECD members 24602.9195
## 2266 OE OECD members 23886.5316
## 2267 OE OECD members 23027.0564
## 2268 OE OECD members 22426.2768
## 2269 OE OECD members 21928.8540
## 2270 OE OECD members 21314.9740
## 2271 OE OECD members 20519.0871
## 2272 OE OECD members 20098.4141
## 2273 OE OECD members 20224.5707
## 2274 OE OECD members 20003.3144
## 2275 OE OECD members 19961.7695
## 2276 OE OECD members 19390.2071
## 2277 OE OECD members 18733.9336
## 2278 OE OECD members 18218.5927
## 2279 OE OECD members 17543.6844
## 2280 OE OECD members 17691.7481
## 2281 OE OECD members 17720.7539
## 2282 OE OECD members 16892.4182
## 2283 OE OECD members 16213.0332
## 2284 OE OECD members 15836.7774
## 2285 OE OECD members 15588.8997
## 2286 OE OECD members 14979.3970
## 2287 OE OECD members 14287.2383
## 2288 OE OECD members 13851.6279
## 2289 OE OECD members 13235.3155
## 2290 OE OECD members 12714.8421
## 2291 OE OECD members 12107.6224
## 2292 OE OECD members 11651.9007
## 2293 OE OECD members 11185.5362
## 2294 OE OECD members 10870.7659
## 2295 S4 Other small states 12202.6497
## 2296 S4 Other small states 11981.0415
## 2297 S4 Other small states 12856.5071
## 2298 S4 Other small states 12827.6798
## 2299 S4 Other small states 12803.9885
## 2300 S4 Other small states 12895.6995
## 2301 S4 Other small states 12780.7264
## 2302 S4 Other small states 12653.2201
## 2303 S4 Other small states 12441.2147
## 2304 S4 Other small states 12245.6350
## 2305 S4 Other small states 12080.2044
## 2306 S4 Other small states 11491.7046
## 2307 S4 Other small states 10840.8229
## 2308 S4 Other small states 10920.3674
## 2309 S4 Other small states 10439.4273
## 2310 S4 Other small states 9741.6128
## 2311 S4 Other small states 9000.5353
## 2312 S4 Other small states 8695.0494
## 2313 S4 Other small states 8125.3038
## 2314 S4 Other small states 7912.2972
## 2315 S4 Other small states 7698.6157
## 2316 S4 Other small states 7519.5821
## 2317 S4 Other small states NA
## 2318 S4 Other small states NA
## 2319 S4 Other small states NA
## 2320 S4 Other small states NA
## 2321 S4 Other small states NA
## 2322 S4 Other small states NA
## 2323 S4 Other small states NA
## 2324 S4 Other small states NA
## 2325 S4 Other small states NA
## 2326 S4 Other small states NA
## 2327 S4 Other small states NA
## 2328 S4 Other small states NA
## 2329 S4 Other small states NA
## 2330 S4 Other small states NA
## 2331 S4 Other small states NA
## 2332 S4 Other small states NA
## 2333 S4 Other small states NA
## 2334 S4 Other small states NA
## 2335 S4 Other small states NA
## 2336 S4 Other small states NA
## 2337 S4 Other small states NA
## 2338 S4 Other small states NA
## 2339 S4 Other small states NA
## 2340 S4 Other small states NA
## 2341 S4 Other small states NA
## 2342 S4 Other small states NA
## 2343 S4 Other small states NA
## 2344 S4 Other small states NA
## 2345 S4 Other small states NA
## 2346 S4 Other small states NA
## 2347 S4 Other small states NA
## 2348 S4 Other small states NA
## 2349 S4 Other small states NA
## 2350 S4 Other small states NA
## 2351 S4 Other small states NA
## 2352 S4 Other small states NA
## 2353 S4 Other small states NA
## 2354 S4 Other small states NA
## 2355 S4 Other small states NA
## 2356 S4 Other small states NA
## 2357 S2 Pacific island small states 3445.7606
## 2358 S2 Pacific island small states 3621.3178
## 2359 S2 Pacific island small states 4060.3582
## 2360 S2 Pacific island small states 4088.4657
## 2361 S2 Pacific island small states 4030.1184
## 2362 S2 Pacific island small states 3918.2437
## 2363 S2 Pacific island small states 3832.5512
## 2364 S2 Pacific island small states 3744.9427
## 2365 S2 Pacific island small states 3658.1330
## 2366 S2 Pacific island small states 3583.5737
## 2367 S2 Pacific island small states 3598.4808
## 2368 S2 Pacific island small states 3507.9697
## 2369 S2 Pacific island small states 3438.5889
## 2370 S2 Pacific island small states 3502.6702
## 2371 S2 Pacific island small states 3482.5586
## 2372 S2 Pacific island small states 3513.9788
## 2373 S2 Pacific island small states 3474.3474
## 2374 S2 Pacific island small states 3433.8241
## 2375 S2 Pacific island small states 3339.1036
## 2376 S2 Pacific island small states 3305.9641
## 2377 S2 Pacific island small states 3272.9918
## 2378 S2 Pacific island small states 3275.0716
## 2379 S2 Pacific island small states 3371.4217
## 2380 S2 Pacific island small states 3251.5531
## 2381 S2 Pacific island small states 3239.8995
## 2382 S2 Pacific island small states 3323.6153
## 2383 S2 Pacific island small states 3270.3774
## 2384 S2 Pacific island small states 3181.3678
## 2385 S2 Pacific island small states 3085.8004
## 2386 S2 Pacific island small states 3050.7135
## 2387 S2 Pacific island small states 2938.3610
## 2388 S2 Pacific island small states 2982.5166
## 2389 S2 Pacific island small states 2908.4612
## 2390 S2 Pacific island small states 2804.0807
## 2391 S2 Pacific island small states 2813.8854
## 2392 S2 Pacific island small states 2926.2896
## 2393 S2 Pacific island small states 2815.6083
## 2394 S2 Pacific island small states 2944.7858
## 2395 S2 Pacific island small states 2837.5361
## 2396 S2 Pacific island small states 2935.6083
## 2397 S2 Pacific island small states 3112.3152
## 2398 S2 Pacific island small states 3048.8620
## 2399 S2 Pacific island small states NA
## 2400 S2 Pacific island small states NA
## 2401 S2 Pacific island small states NA
## 2402 S2 Pacific island small states NA
## 2403 S2 Pacific island small states NA
## 2404 S2 Pacific island small states NA
## 2405 S2 Pacific island small states NA
## 2406 S2 Pacific island small states NA
## 2407 S2 Pacific island small states NA
## 2408 S2 Pacific island small states NA
## 2409 S2 Pacific island small states NA
## 2410 S2 Pacific island small states NA
## 2411 S2 Pacific island small states NA
## 2412 S2 Pacific island small states NA
## 2413 S2 Pacific island small states NA
## 2414 S2 Pacific island small states NA
## 2415 S2 Pacific island small states NA
## 2416 S2 Pacific island small states NA
## 2417 S2 Pacific island small states NA
## 2418 S2 Pacific island small states NA
## 2419 V4 Post-demographic dividend 43303.8428
## 2420 V4 Post-demographic dividend 41227.0558
## 2421 V4 Post-demographic dividend 43408.2216
## 2422 V4 Post-demographic dividend 42800.3069
## 2423 V4 Post-demographic dividend 42004.2202
## 2424 V4 Post-demographic dividend 41196.0959
## 2425 V4 Post-demographic dividend 40669.0421
## 2426 V4 Post-demographic dividend 39989.9804
## 2427 V4 Post-demographic dividend 39422.1771
## 2428 V4 Post-demographic dividend 39046.8025
## 2429 V4 Post-demographic dividend 38725.9924
## 2430 V4 Post-demographic dividend 38189.9254
## 2431 V4 Post-demographic dividend 37284.2989
## 2432 V4 Post-demographic dividend 38784.0486
## 2433 V4 Post-demographic dividend 38880.0134
## 2434 V4 Post-demographic dividend 38079.1069
## 2435 V4 Post-demographic dividend 37178.0521
## 2436 V4 Post-demographic dividend 36344.2043
## 2437 V4 Post-demographic dividend 35388.5055
## 2438 V4 Post-demographic dividend 34843.1776
## 2439 V4 Post-demographic dividend 34480.6933
## 2440 V4 Post-demographic dividend 34139.4892
## 2441 V4 Post-demographic dividend 32996.1166
## 2442 V4 Post-demographic dividend 32036.9535
## 2443 V4 Post-demographic dividend 31319.6248
## 2444 V4 Post-demographic dividend 30444.2536
## 2445 V4 Post-demographic dividend 29727.6306
## 2446 V4 Post-demographic dividend 29101.5104
## 2447 V4 Post-demographic dividend 28390.5414
## 2448 V4 Post-demographic dividend 28258.6175
## 2449 V4 Post-demographic dividend 27904.0717
## 2450 V4 Post-demographic dividend 27759.0589
## 2451 V4 Post-demographic dividend 27170.8453
## 2452 V4 Post-demographic dividend 26321.9103
## 2453 V4 Post-demographic dividend 25287.3801
## 2454 V4 Post-demographic dividend 24566.9642
## 2455 V4 Post-demographic dividend 23928.8598
## 2456 V4 Post-demographic dividend 23193.2908
## 2457 V4 Post-demographic dividend 22253.8522
## 2458 V4 Post-demographic dividend 21686.8335
## 2459 V4 Post-demographic dividend 21750.0682
## 2460 V4 Post-demographic dividend 21489.0944
## 2461 V4 Post-demographic dividend 21427.4806
## 2462 V4 Post-demographic dividend 20780.9994
## 2463 V4 Post-demographic dividend 20042.9458
## 2464 V4 Post-demographic dividend 19437.4027
## 2465 V4 Post-demographic dividend 18668.1729
## 2466 V4 Post-demographic dividend 18808.4610
## 2467 V4 Post-demographic dividend 18827.1749
## 2468 V4 Post-demographic dividend 17898.8049
## 2469 V4 Post-demographic dividend 17148.5018
## 2470 V4 Post-demographic dividend 16721.7177
## 2471 V4 Post-demographic dividend 16438.5871
## 2472 V4 Post-demographic dividend 15749.3400
## 2473 V4 Post-demographic dividend 14998.7654
## 2474 V4 Post-demographic dividend 14514.3381
## 2475 V4 Post-demographic dividend 13850.8770
## 2476 V4 Post-demographic dividend 13276.8547
## 2477 V4 Post-demographic dividend 12628.8396
## 2478 V4 Post-demographic dividend 12138.7840
## 2479 V4 Post-demographic dividend 11628.6883
## 2480 V4 Post-demographic dividend 11280.1369
## 2481 V1 Pre-demographic dividend 1474.3011
## 2482 V1 Pre-demographic dividend 1463.2346
## 2483 V1 Pre-demographic dividend 1540.9839
## 2484 V1 Pre-demographic dividend 1534.6586
## 2485 V1 Pre-demographic dividend 1538.4675
## 2486 V1 Pre-demographic dividend 1557.2947
## 2487 V1 Pre-demographic dividend 1563.7312
## 2488 V1 Pre-demographic dividend 1558.9842
## 2489 V1 Pre-demographic dividend 1527.2159
## 2490 V1 Pre-demographic dividend 1486.1144
## 2491 V1 Pre-demographic dividend 1478.0224
## 2492 V1 Pre-demographic dividend 1462.6265
## 2493 V1 Pre-demographic dividend 1413.3357
## 2494 V1 Pre-demographic dividend 1389.8117
## 2495 V1 Pre-demographic dividend 1345.0293
## 2496 V1 Pre-demographic dividend 1304.7125
## 2497 V1 Pre-demographic dividend 1263.4703
## 2498 V1 Pre-demographic dividend 1227.0996
## 2499 V1 Pre-demographic dividend 1130.3021
## 2500 V1 Pre-demographic dividend 1169.9144
## 2501 V1 Pre-demographic dividend 1139.4180
## 2502 V1 Pre-demographic dividend 1120.7683
## 2503 V1 Pre-demographic dividend 1091.6666
## 2504 V1 Pre-demographic dividend 1075.7670
## 2505 V1 Pre-demographic dividend 1033.8367
## 2506 V1 Pre-demographic dividend 995.3928
## 2507 V1 Pre-demographic dividend 968.9957
## 2508 V1 Pre-demographic dividend 966.5685
## 2509 V1 Pre-demographic dividend 994.0625
## 2510 V1 Pre-demographic dividend 1026.1673
## 2511 V1 Pre-demographic dividend 1028.9472
## 2512 V1 Pre-demographic dividend 1151.7183
## 2513 V1 Pre-demographic dividend 1092.7409
## 2514 V1 Pre-demographic dividend 1102.4842
## 2515 V1 Pre-demographic dividend 1093.1219
## 2516 V1 Pre-demographic dividend 1077.0810
## 2517 V1 Pre-demographic dividend 1077.1060
## 2518 V1 Pre-demographic dividend 1069.1674
## 2519 V1 Pre-demographic dividend 1094.0501
## 2520 V1 Pre-demographic dividend 1178.9557
## 2521 V1 Pre-demographic dividend 1223.2983
## 2522 V1 Pre-demographic dividend 1307.5977
## 2523 V1 Pre-demographic dividend 1289.2120
## 2524 V1 Pre-demographic dividend 1256.8645
## 2525 V1 Pre-demographic dividend 1303.1927
## 2526 V1 Pre-demographic dividend 1279.3422
## 2527 V1 Pre-demographic dividend 1225.8718
## 2528 V1 Pre-demographic dividend 1262.5718
## 2529 V1 Pre-demographic dividend 1192.6281
## 2530 V1 Pre-demographic dividend 1175.9930
## 2531 V1 Pre-demographic dividend 1172.4162
## 2532 V1 Pre-demographic dividend 1098.8274
## 2533 V1 Pre-demographic dividend 1004.1242
## 2534 V1 Pre-demographic dividend 922.0059
## 2535 V1 Pre-demographic dividend 923.1743
## 2536 V1 Pre-demographic dividend 1011.5778
## 2537 V1 Pre-demographic dividend 1037.3444
## 2538 V1 Pre-demographic dividend 1020.1646
## 2539 V1 Pre-demographic dividend 1005.3268
## 2540 V1 Pre-demographic dividend 973.8110
## 2541 V1 Pre-demographic dividend 938.2531
## 2542 V1 Pre-demographic dividend 967.5629
## 2543 S1 Small states 11196.9262
## 2544 S1 Small states 10960.1744
## 2545 S1 Small states 11824.4002
## 2546 S1 Small states 11788.3116
## 2547 S1 Small states 11744.5974
## 2548 S1 Small states 11802.9003
## 2549 S1 Small states 11746.8397
## 2550 S1 Small states 11630.3405
## 2551 S1 Small states 11459.3853
## 2552 S1 Small states 11300.9281
## 2553 S1 Small states 11158.4543
## 2554 S1 Small states 10701.7784
## 2555 S1 Small states 10197.9933
## 2556 S1 Small states 10343.0155
## 2557 S1 Small states 9972.5145
## 2558 S1 Small states 9409.2900
## 2559 S1 Small states 8746.5797
## 2560 S1 Small states 8465.2036
## 2561 S1 Small states 7987.2439
## 2562 S1 Small states 7741.8767
## 2563 S1 Small states 7534.7305
## 2564 S1 Small states 7383.5578
## 2565 S1 Small states NA
## 2566 S1 Small states NA
## 2567 S1 Small states NA
## 2568 S1 Small states NA
## 2569 S1 Small states NA
## 2570 S1 Small states NA
## 2571 S1 Small states NA
## 2572 S1 Small states NA
## 2573 S1 Small states NA
## 2574 S1 Small states NA
## 2575 S1 Small states NA
## 2576 S1 Small states NA
## 2577 S1 Small states NA
## 2578 S1 Small states NA
## 2579 S1 Small states NA
## 2580 S1 Small states NA
## 2581 S1 Small states NA
## 2582 S1 Small states NA
## 2583 S1 Small states NA
## 2584 S1 Small states NA
## 2585 S1 Small states NA
## 2586 S1 Small states NA
## 2587 S1 Small states NA
## 2588 S1 Small states NA
## 2589 S1 Small states NA
## 2590 S1 Small states NA
## 2591 S1 Small states NA
## 2592 S1 Small states NA
## 2593 S1 Small states NA
## 2594 S1 Small states NA
## 2595 S1 Small states NA
## 2596 S1 Small states NA
## 2597 S1 Small states NA
## 2598 S1 Small states NA
## 2599 S1 Small states NA
## 2600 S1 Small states NA
## 2601 S1 Small states NA
## 2602 S1 Small states NA
## 2603 S1 Small states NA
## 2604 S1 Small states NA
## 2605 8S South Asia 1869.2833
## 2606 8S South Asia 1745.1997
## 2607 8S South Asia 1862.8755
## 2608 8S South Asia 1813.7778
## 2609 8S South Asia 1725.6227
## 2610 8S South Asia 1641.0013
## 2611 8S South Asia 1543.0481
## 2612 8S South Asia 1455.2711
## 2613 8S South Asia 1378.8330
## 2614 8S South Asia 1317.6022
## 2615 8S South Asia 1265.8857
## 2616 8S South Asia 1221.1817
## 2617 8S South Asia 1152.6504
## 2618 8S South Asia 1093.9391
## 2619 8S South Asia 1075.6207
## 2620 8S South Asia 1018.9303
## 2621 8S South Asia 962.1547
## 2622 8S South Asia 909.9139
## 2623 8S South Asia 860.9965
## 2624 8S South Asia 817.0586
## 2625 8S South Asia 803.0253
## 2626 8S South Asia 783.1514
## 2627 8S South Asia 766.5137
## 2628 8S South Asia 726.2874
## 2629 8S South Asia 702.0304
## 2630 8S South Asia 690.3611
## 2631 8S South Asia 660.0185
## 2632 8S South Asia 630.6661
## 2633 8S South Asia 607.9453
## 2634 8S South Asia 595.3963
## 2635 8S South Asia 575.2684
## 2636 8S South Asia 576.1945
## 2637 8S South Asia 558.9289
## 2638 8S South Asia 542.2914
## 2639 8S South Asia 511.6726
## 2640 8S South Asia 502.1702
## 2641 8S South Asia 490.2006
## 2642 8S South Asia 475.8533
## 2643 8S South Asia 467.4143
## 2644 8S South Asia 448.6709
## 2645 8S South Asia 442.5133
## 2646 8S South Asia 425.8022
## 2647 8S South Asia 409.5658
## 2648 8S South Asia 430.7695
## 2649 8S South Asia 415.6778
## 2650 8S South Asia 400.5309
## 2651 8S South Asia 399.7486
## 2652 8S South Asia 382.6115
## 2653 8S South Asia 382.1238
## 2654 8S South Asia 376.5119
## 2655 8S South Asia 392.2305
## 2656 8S South Asia 398.7820
## 2657 8S South Asia 385.4159
## 2658 8S South Asia 372.6987
## 2659 8S South Asia 364.5386
## 2660 8S South Asia 351.3007
## 2661 8S South Asia 354.9886
## 2662 8S South Asia 365.3080
## 2663 8S South Asia 346.4460
## 2664 8S South Asia 336.2955
## 2665 8S South Asia 332.2302
## 2666 8S South Asia 325.5888
## 2667 T5 South Asia (IDA & IBRD) 1869.2833
## 2668 T5 South Asia (IDA & IBRD) 1745.1997
## 2669 T5 South Asia (IDA & IBRD) 1862.8755
## 2670 T5 South Asia (IDA & IBRD) 1813.7778
## 2671 T5 South Asia (IDA & IBRD) 1725.6227
## 2672 T5 South Asia (IDA & IBRD) 1641.0013
## 2673 T5 South Asia (IDA & IBRD) 1543.0481
## 2674 T5 South Asia (IDA & IBRD) 1455.2711
## 2675 T5 South Asia (IDA & IBRD) 1378.8330
## 2676 T5 South Asia (IDA & IBRD) 1317.6022
## 2677 T5 South Asia (IDA & IBRD) 1265.8857
## 2678 T5 South Asia (IDA & IBRD) 1221.1817
## 2679 T5 South Asia (IDA & IBRD) 1152.6504
## 2680 T5 South Asia (IDA & IBRD) 1093.9391
## 2681 T5 South Asia (IDA & IBRD) 1075.6207
## 2682 T5 South Asia (IDA & IBRD) 1018.9303
## 2683 T5 South Asia (IDA & IBRD) 962.1547
## 2684 T5 South Asia (IDA & IBRD) 909.9139
## 2685 T5 South Asia (IDA & IBRD) 860.9965
## 2686 T5 South Asia (IDA & IBRD) 817.0586
## 2687 T5 South Asia (IDA & IBRD) 803.0253
## 2688 T5 South Asia (IDA & IBRD) 783.1514
## 2689 T5 South Asia (IDA & IBRD) 766.5137
## 2690 T5 South Asia (IDA & IBRD) 726.2874
## 2691 T5 South Asia (IDA & IBRD) 702.0304
## 2692 T5 South Asia (IDA & IBRD) 690.3611
## 2693 T5 South Asia (IDA & IBRD) 660.0185
## 2694 T5 South Asia (IDA & IBRD) 630.6661
## 2695 T5 South Asia (IDA & IBRD) 607.9453
## 2696 T5 South Asia (IDA & IBRD) 595.3963
## 2697 T5 South Asia (IDA & IBRD) 575.2684
## 2698 T5 South Asia (IDA & IBRD) 576.1945
## 2699 T5 South Asia (IDA & IBRD) 558.9289
## 2700 T5 South Asia (IDA & IBRD) 542.2914
## 2701 T5 South Asia (IDA & IBRD) 511.6726
## 2702 T5 South Asia (IDA & IBRD) 502.1702
## 2703 T5 South Asia (IDA & IBRD) 490.2006
## 2704 T5 South Asia (IDA & IBRD) 475.8533
## 2705 T5 South Asia (IDA & IBRD) 467.4143
## 2706 T5 South Asia (IDA & IBRD) 448.6709
## 2707 T5 South Asia (IDA & IBRD) 442.5133
## 2708 T5 South Asia (IDA & IBRD) 425.8022
## 2709 T5 South Asia (IDA & IBRD) 409.5658
## 2710 T5 South Asia (IDA & IBRD) 430.7695
## 2711 T5 South Asia (IDA & IBRD) 415.6778
## 2712 T5 South Asia (IDA & IBRD) 400.5309
## 2713 T5 South Asia (IDA & IBRD) 399.7486
## 2714 T5 South Asia (IDA & IBRD) 382.6115
## 2715 T5 South Asia (IDA & IBRD) 382.1238
## 2716 T5 South Asia (IDA & IBRD) 376.5119
## 2717 T5 South Asia (IDA & IBRD) 392.2305
## 2718 T5 South Asia (IDA & IBRD) 398.7820
## 2719 T5 South Asia (IDA & IBRD) 385.4159
## 2720 T5 South Asia (IDA & IBRD) 372.6987
## 2721 T5 South Asia (IDA & IBRD) 364.5386
## 2722 T5 South Asia (IDA & IBRD) 351.3007
## 2723 T5 South Asia (IDA & IBRD) 354.9886
## 2724 T5 South Asia (IDA & IBRD) 365.3080
## 2725 T5 South Asia (IDA & IBRD) 346.4460
## 2726 T5 South Asia (IDA & IBRD) 336.2955
## 2727 T5 South Asia (IDA & IBRD) 332.2302
## 2728 T5 South Asia (IDA & IBRD) 325.5888
## 2729 ZG Sub-Saharan Africa 1612.0585
## 2730 ZG Sub-Saharan Africa 1588.3935
## 2731 ZG Sub-Saharan Africa 1663.2647
## 2732 ZG Sub-Saharan Africa 1664.9522
## 2733 ZG Sub-Saharan Africa 1664.7540
## 2734 ZG Sub-Saharan Africa 1668.8508
## 2735 ZG Sub-Saharan Africa 1692.6743
## 2736 ZG Sub-Saharan Africa 1690.6272
## 2737 ZG Sub-Saharan Africa 1656.6833
## 2738 ZG Sub-Saharan Africa 1620.6056
## 2739 ZG Sub-Saharan Africa 1620.7438
## 2740 ZG Sub-Saharan Africa 1598.6486
## 2741 ZG Sub-Saharan Africa 1550.9627
## 2742 ZG Sub-Saharan Africa 1546.6716
## 2743 ZG Sub-Saharan Africa 1511.3988
## 2744 ZG Sub-Saharan Africa 1462.7478
## 2745 ZG Sub-Saharan Africa 1416.7190
## 2746 ZG Sub-Saharan Africa 1372.5485
## 2747 ZG Sub-Saharan Africa 1322.6375
## 2748 ZG Sub-Saharan Africa 1304.5708
## 2749 ZG Sub-Saharan Africa 1260.0411
## 2750 ZG Sub-Saharan Africa 1240.4518
## 2751 ZG Sub-Saharan Africa 1230.2591
## 2752 ZG Sub-Saharan Africa 1236.2200
## 2753 ZG Sub-Saharan Africa 1238.1788
## 2754 ZG Sub-Saharan Africa 1218.2272
## 2755 ZG Sub-Saharan Africa 1189.9917
## 2756 ZG Sub-Saharan Africa 1182.5134
## 2757 ZG Sub-Saharan Africa 1201.6308
## 2758 ZG Sub-Saharan Africa 1243.3630
## 2759 ZG Sub-Saharan Africa 1279.5435
## 2760 ZG Sub-Saharan Africa 1308.8006
## 2761 ZG Sub-Saharan Africa 1313.6942
## 2762 ZG Sub-Saharan Africa 1316.3495
## 2763 ZG Sub-Saharan Africa 1298.3030
## 2764 ZG Sub-Saharan Africa 1295.3092
## 2765 ZG Sub-Saharan Africa 1307.5110
## 2766 ZG Sub-Saharan Africa 1321.5635
## 2767 ZG Sub-Saharan Africa 1332.2541
## 2768 ZG Sub-Saharan Africa 1406.0833
## 2769 ZG Sub-Saharan Africa 1462.5341
## 2770 ZG Sub-Saharan Africa 1515.6671
## 2771 ZG Sub-Saharan Africa 1502.8638
## 2772 ZG Sub-Saharan Africa 1487.5170
## 2773 ZG Sub-Saharan Africa 1538.4495
## 2774 ZG Sub-Saharan Africa 1538.0302
## 2775 ZG Sub-Saharan Africa 1499.1609
## 2776 ZG Sub-Saharan Africa 1542.9951
## 2777 ZG Sub-Saharan Africa 1469.6070
## 2778 ZG Sub-Saharan Africa 1447.1971
## 2779 ZG Sub-Saharan Africa 1448.5731
## 2780 ZG Sub-Saharan Africa 1379.4974
## 2781 ZG Sub-Saharan Africa 1284.2355
## 2782 ZG Sub-Saharan Africa 1204.9749
## 2783 ZG Sub-Saharan Africa 1199.8165
## 2784 ZG Sub-Saharan Africa 1244.9355
## 2785 ZG Sub-Saharan Africa 1259.0017
## 2786 ZG Sub-Saharan Africa 1231.6689
## 2787 ZG Sub-Saharan Africa 1202.3810
## 2788 ZG Sub-Saharan Africa 1160.6861
## 2789 ZG Sub-Saharan Africa 1120.4620
## 2790 ZG Sub-Saharan Africa 1135.8406
## 2791 ZF Sub-Saharan Africa (excluding high income) 1610.8583
## 2792 ZF Sub-Saharan Africa (excluding high income) 1587.1839
## 2793 ZF Sub-Saharan Africa (excluding high income) 1661.9129
## 2794 ZF Sub-Saharan Africa (excluding high income) 1663.6094
## 2795 ZF Sub-Saharan Africa (excluding high income) 1663.4211
## 2796 ZF Sub-Saharan Africa (excluding high income) 1667.5463
## 2797 ZF Sub-Saharan Africa (excluding high income) 1691.4106
## 2798 ZF Sub-Saharan Africa (excluding high income) 1689.4031
## 2799 ZF Sub-Saharan Africa (excluding high income) 1655.4810
## 2800 ZF Sub-Saharan Africa (excluding high income) 1619.4432
## 2801 ZF Sub-Saharan Africa (excluding high income) 1619.5645
## 2802 ZF Sub-Saharan Africa (excluding high income) 1597.5394
## 2803 ZF Sub-Saharan Africa (excluding high income) 1549.8868
## 2804 ZF Sub-Saharan Africa (excluding high income) 1545.5506
## 2805 ZF Sub-Saharan Africa (excluding high income) 1510.2088
## 2806 ZF Sub-Saharan Africa (excluding high income) 1461.6509
## 2807 ZF Sub-Saharan Africa (excluding high income) 1415.6955
## 2808 ZF Sub-Saharan Africa (excluding high income) 1371.5922
## 2809 ZF Sub-Saharan Africa (excluding high income) 1321.6151
## 2810 ZF Sub-Saharan Africa (excluding high income) 1303.4432
## 2811 ZF Sub-Saharan Africa (excluding high income) 1258.8882
## 2812 ZF Sub-Saharan Africa (excluding high income) 1239.2335
## 2813 ZF Sub-Saharan Africa (excluding high income) 1229.0264
## 2814 ZF Sub-Saharan Africa (excluding high income) 1234.9783
## 2815 ZF Sub-Saharan Africa (excluding high income) 1237.0136
## 2816 ZF Sub-Saharan Africa (excluding high income) 1217.1730
## 2817 ZF Sub-Saharan Africa (excluding high income) 1188.9614
## 2818 ZF Sub-Saharan Africa (excluding high income) 1181.4410
## 2819 ZF Sub-Saharan Africa (excluding high income) 1200.5169
## 2820 ZF Sub-Saharan Africa (excluding high income) 1242.2985
## 2821 ZF Sub-Saharan Africa (excluding high income) 1278.5397
## 2822 ZF Sub-Saharan Africa (excluding high income) 1307.8034
## 2823 ZF Sub-Saharan Africa (excluding high income) 1312.7487
## 2824 ZF Sub-Saharan Africa (excluding high income) 1315.4952
## 2825 ZF Sub-Saharan Africa (excluding high income) 1297.4760
## 2826 ZF Sub-Saharan Africa (excluding high income) 1294.4943
## 2827 ZF Sub-Saharan Africa (excluding high income) 1306.6701
## 2828 ZF Sub-Saharan Africa (excluding high income) 1320.8098
## 2829 ZF Sub-Saharan Africa (excluding high income) 1331.5226
## 2830 ZF Sub-Saharan Africa (excluding high income) 1405.3264
## 2831 ZF Sub-Saharan Africa (excluding high income) 1461.7517
## 2832 ZF Sub-Saharan Africa (excluding high income) 1514.7659
## 2833 ZF Sub-Saharan Africa (excluding high income) 1501.8655
## 2834 ZF Sub-Saharan Africa (excluding high income) 1486.6775
## 2835 ZF Sub-Saharan Africa (excluding high income) 1537.8205
## 2836 ZF Sub-Saharan Africa (excluding high income) 1537.2998
## 2837 ZF Sub-Saharan Africa (excluding high income) 1498.5574
## 2838 ZF Sub-Saharan Africa (excluding high income) 1542.4095
## 2839 ZF Sub-Saharan Africa (excluding high income) 1468.9871
## 2840 ZF Sub-Saharan Africa (excluding high income) 1446.6347
## 2841 ZF Sub-Saharan Africa (excluding high income) 1448.0454
## 2842 ZF Sub-Saharan Africa (excluding high income) 1379.0598
## 2843 ZF Sub-Saharan Africa (excluding high income) 1283.8188
## 2844 ZF Sub-Saharan Africa (excluding high income) 1204.5139
## 2845 ZF Sub-Saharan Africa (excluding high income) 1199.3925
## 2846 ZF Sub-Saharan Africa (excluding high income) 1244.5096
## 2847 ZF Sub-Saharan Africa (excluding high income) 1258.6609
## 2848 ZF Sub-Saharan Africa (excluding high income) 1231.2936
## 2849 ZF Sub-Saharan Africa (excluding high income) 1202.0212
## 2850 ZF Sub-Saharan Africa (excluding high income) 1160.3642
## 2851 ZF Sub-Saharan Africa (excluding high income) 1120.1648
## 2852 ZF Sub-Saharan Africa (excluding high income) 1135.4982
## 2853 T6 Sub-Saharan Africa (IDA & IBRD countries) 1612.0585
## 2854 T6 Sub-Saharan Africa (IDA & IBRD countries) 1588.3935
## 2855 T6 Sub-Saharan Africa (IDA & IBRD countries) 1663.2647
## 2856 T6 Sub-Saharan Africa (IDA & IBRD countries) 1664.9522
## 2857 T6 Sub-Saharan Africa (IDA & IBRD countries) 1664.7540
## 2858 T6 Sub-Saharan Africa (IDA & IBRD countries) 1668.8508
## 2859 T6 Sub-Saharan Africa (IDA & IBRD countries) 1692.6743
## 2860 T6 Sub-Saharan Africa (IDA & IBRD countries) 1690.6272
## 2861 T6 Sub-Saharan Africa (IDA & IBRD countries) 1656.6833
## 2862 T6 Sub-Saharan Africa (IDA & IBRD countries) 1620.6056
## 2863 T6 Sub-Saharan Africa (IDA & IBRD countries) 1620.7438
## 2864 T6 Sub-Saharan Africa (IDA & IBRD countries) 1598.6486
## 2865 T6 Sub-Saharan Africa (IDA & IBRD countries) 1550.9627
## 2866 T6 Sub-Saharan Africa (IDA & IBRD countries) 1546.6716
## 2867 T6 Sub-Saharan Africa (IDA & IBRD countries) 1511.3988
## 2868 T6 Sub-Saharan Africa (IDA & IBRD countries) 1462.7478
## 2869 T6 Sub-Saharan Africa (IDA & IBRD countries) 1416.7190
## 2870 T6 Sub-Saharan Africa (IDA & IBRD countries) 1372.5485
## 2871 T6 Sub-Saharan Africa (IDA & IBRD countries) 1322.6375
## 2872 T6 Sub-Saharan Africa (IDA & IBRD countries) 1304.5708
## 2873 T6 Sub-Saharan Africa (IDA & IBRD countries) 1260.0411
## 2874 T6 Sub-Saharan Africa (IDA & IBRD countries) 1240.4518
## 2875 T6 Sub-Saharan Africa (IDA & IBRD countries) 1230.2591
## 2876 T6 Sub-Saharan Africa (IDA & IBRD countries) 1236.2200
## 2877 T6 Sub-Saharan Africa (IDA & IBRD countries) 1238.1788
## 2878 T6 Sub-Saharan Africa (IDA & IBRD countries) 1218.2272
## 2879 T6 Sub-Saharan Africa (IDA & IBRD countries) 1189.9917
## 2880 T6 Sub-Saharan Africa (IDA & IBRD countries) 1182.5134
## 2881 T6 Sub-Saharan Africa (IDA & IBRD countries) 1201.6308
## 2882 T6 Sub-Saharan Africa (IDA & IBRD countries) 1243.3630
## 2883 T6 Sub-Saharan Africa (IDA & IBRD countries) 1279.5435
## 2884 T6 Sub-Saharan Africa (IDA & IBRD countries) 1308.8006
## 2885 T6 Sub-Saharan Africa (IDA & IBRD countries) 1313.6942
## 2886 T6 Sub-Saharan Africa (IDA & IBRD countries) 1316.3495
## 2887 T6 Sub-Saharan Africa (IDA & IBRD countries) 1298.3030
## 2888 T6 Sub-Saharan Africa (IDA & IBRD countries) 1295.3092
## 2889 T6 Sub-Saharan Africa (IDA & IBRD countries) 1307.5110
## 2890 T6 Sub-Saharan Africa (IDA & IBRD countries) 1321.5635
## 2891 T6 Sub-Saharan Africa (IDA & IBRD countries) 1332.2541
## 2892 T6 Sub-Saharan Africa (IDA & IBRD countries) 1406.0833
## 2893 T6 Sub-Saharan Africa (IDA & IBRD countries) 1462.5341
## 2894 T6 Sub-Saharan Africa (IDA & IBRD countries) 1515.6671
## 2895 T6 Sub-Saharan Africa (IDA & IBRD countries) 1502.8638
## 2896 T6 Sub-Saharan Africa (IDA & IBRD countries) 1487.5170
## 2897 T6 Sub-Saharan Africa (IDA & IBRD countries) 1538.4495
## 2898 T6 Sub-Saharan Africa (IDA & IBRD countries) 1538.0302
## 2899 T6 Sub-Saharan Africa (IDA & IBRD countries) 1499.1609
## 2900 T6 Sub-Saharan Africa (IDA & IBRD countries) 1542.9951
## 2901 T6 Sub-Saharan Africa (IDA & IBRD countries) 1469.6070
## 2902 T6 Sub-Saharan Africa (IDA & IBRD countries) 1447.1971
## 2903 T6 Sub-Saharan Africa (IDA & IBRD countries) 1448.5731
## 2904 T6 Sub-Saharan Africa (IDA & IBRD countries) 1379.4974
## 2905 T6 Sub-Saharan Africa (IDA & IBRD countries) 1284.2355
## 2906 T6 Sub-Saharan Africa (IDA & IBRD countries) 1204.9749
## 2907 T6 Sub-Saharan Africa (IDA & IBRD countries) 1199.8165
## 2908 T6 Sub-Saharan Africa (IDA & IBRD countries) 1244.9355
## 2909 T6 Sub-Saharan Africa (IDA & IBRD countries) 1259.0017
## 2910 T6 Sub-Saharan Africa (IDA & IBRD countries) 1231.6689
## 2911 T6 Sub-Saharan Africa (IDA & IBRD countries) 1202.3810
## 2912 T6 Sub-Saharan Africa (IDA & IBRD countries) 1160.6861
## 2913 T6 Sub-Saharan Africa (IDA & IBRD countries) 1120.4620
## 2914 T6 Sub-Saharan Africa (IDA & IBRD countries) 1135.8406
## 2915 XT Upper middle income 10054.5569
## 2916 XT Upper middle income 9395.1386
## 2917 XT Upper middle income 9496.8875
## 2918 XT Upper middle income 9176.5555
## 2919 XT Upper middle income 8803.0639
## 2920 XT Upper middle income 8430.0008
## 2921 XT Upper middle income 8149.7518
## 2922 XT Upper middle income 7874.2038
## 2923 XT Upper middle income 7580.4136
## 2924 XT Upper middle income 7240.2179
## 2925 XT Upper middle income 6892.7471
## 2926 XT Upper middle income 6494.7252
## 2927 XT Upper middle income 6031.8975
## 2928 XT Upper middle income 5913.8127
## 2929 XT Upper middle income 5592.6371
## 2930 XT Upper middle income 5135.8985
## 2931 XT Upper middle income 4749.8242
## 2932 XT Upper middle income 4440.5549
## 2933 XT Upper middle income 4136.7363
## 2934 XT Upper middle income 3932.5639
## 2935 XT Upper middle income 3784.2269
## 2936 XT Upper middle income 3682.8705
## 2937 XT Upper middle income 3491.0632
## 2938 XT Upper middle income 3399.5029
## 2939 XT Upper middle income 3331.8496
## 2940 XT Upper middle income 3181.6468
## 2941 XT Upper middle income 3055.4674
## 2942 XT Upper middle income 2984.4774
## 2943 XT Upper middle income 2910.1377
## 2944 XT Upper middle income 2825.3466
## 2945 XT Upper middle income 2829.3310
## 2946 XT Upper middle income 2837.2134
## 2947 XT Upper middle income 2849.4937
## 2948 XT Upper middle income 2826.1103
## 2949 XT Upper middle income 2765.5086
## 2950 XT Upper middle income 2662.7773
## 2951 XT Upper middle income 2579.8117
## 2952 XT Upper middle income 2495.0501
## 2953 XT Upper middle income 2384.0683
## 2954 XT Upper middle income 2398.6292
## 2955 XT Upper middle income 2388.8982
## 2956 XT Upper middle income 2373.0670
## 2957 XT Upper middle income 2259.5238
## 2958 XT Upper middle income 2145.6105
## 2959 XT Upper middle income 2071.0948
## 2960 XT Upper middle income 2007.5816
## 2961 XT Upper middle income 1944.3492
## 2962 XT Upper middle income 1885.2193
## 2963 XT Upper middle income 1813.0371
## 2964 XT Upper middle income 1715.2220
## 2965 XT Upper middle income 1645.2012
## 2966 XT Upper middle income 1579.2171
## 2967 XT Upper middle income 1493.8261
## 2968 XT Upper middle income 1419.7785
## 2969 XT Upper middle income 1377.4147
## 2970 XT Upper middle income 1366.3664
## 2971 XT Upper middle income 1319.1487
## 2972 XT Upper middle income 1259.1435
## 2973 XT Upper middle income 1184.5509
## 2974 XT Upper middle income 1167.9740
## 2975 XT Upper middle income 1146.4737
## 2976 XT Upper middle income 1152.3195
## 2977 1W World 11057.4208
## 2978 1W World 10548.9042
## 2979 1W World 11019.3754
## 2980 1W World 10853.1115
## 2981 1W World 10625.2559
## 2982 1W World 10396.4334
## 2983 1W World 10231.7026
## 2984 1W World 10043.2007
## 2985 1W World 9862.6603
## 2986 1W World 9708.8721
## 2987 1W World 9568.3563
## 2988 1W World 9370.3853
## 2989 1W World 9071.9727
## 2990 1W World 9306.1935
## 2991 1W World 9230.9248
## 2992 1W World 8944.5147
## 2993 1W World 8667.7692
## 2994 1W World 8434.8197
## 2995 1W World 8173.3436
## 2996 1W World 8023.6392
## 2997 1W World 7941.1178
## 2998 1W World 7886.6774
## 2999 1W World 7647.8413
## 3000 1W World 7487.4175
## 3001 1W World 7385.2486
## 3002 1W World 7209.1572
## 3003 1W World 7058.3206
## 3004 1W World 6949.8107
## 3005 1W World 6829.6525
## 3006 1W World 6813.3086
## 3007 1W World 6780.1226
## 3008 1W World 6794.0106
## 3009 1W World 6719.2209
## 3010 1W World 6588.7245
## 3011 1W World 6408.0141
## 3012 1W World 6287.6449
## 3013 1W World 6185.8098
## 3014 1W World 6069.4556
## 3015 1W World 5899.6461
## 3016 1W World 5849.8938
## 3017 1W World 5931.8236
## 3018 1W World 5921.9563
## 3019 1W World 5914.4827
## 3020 1W World 5777.5080
## 3021 1W World 5644.9690
## 3022 1W World 5517.5712
## 3023 1W World 5333.7613
## 3024 1W World 5398.3825
## 3025 1W World 5405.5943
## 3026 1W World 5180.8645
## 3027 1W World 5004.8790
## 3028 1W World 4902.1002
## 3029 1W World 4815.4389
## 3030 1W World 4645.7989
## 3031 1W World 4475.4189
## 3032 1W World 4384.8833
## 3033 1W World 4235.3988
## 3034 1W World 4095.1962
## 3035 1W World 3922.0515
## 3036 1W World 3806.4035
## 3037 1W World 3676.5755
## 3038 1W World 3588.3786
## 3039 CI Cote d'Ivoire 2414.4403
## 3040 CI Cote d'Ivoire 2313.7934
## 3041 CI Cote d'Ivoire 2327.7454
## 3042 CI Cote d'Ivoire 2247.7766
## 3043 CI Cote d'Ivoire 2157.2452
## 3044 CI Cote d'Ivoire 2061.2152
## 3045 CI Cote d'Ivoire 1972.5457
## 3046 CI Cote d'Ivoire 1887.1649
## 3047 CI Cote d'Ivoire 1769.2149
## 3048 CI Cote d'Ivoire 1637.3928
## 3049 CI Cote d'Ivoire 1558.9687
## 3050 CI Cote d'Ivoire 1687.2165
## 3051 CI Cote d'Ivoire 1616.3782
## 3052 CI Cote d'Ivoire 1596.2552
## 3053 CI Cote d'Ivoire 1557.9083
## 3054 CI Cote d'Ivoire 1575.1428
## 3055 CI Cote d'Ivoire 1565.4285
## 3056 CI Cote d'Ivoire 1583.1120
## 3057 CI Cote d'Ivoire 1566.5772
## 3058 CI Cote d'Ivoire 1679.4065
## 3059 CI Cote d'Ivoire 1765.3281
## 3060 CI Cote d'Ivoire 1847.8700
## 3061 CI Cote d'Ivoire 1901.5727
## 3062 CI Cote d'Ivoire 1933.0732
## 3063 CI Cote d'Ivoire 1910.2299
## 3064 CI Cote d'Ivoire 1797.4387
## 3065 CI Cote d'Ivoire 1723.1574
## 3066 CI Cote d'Ivoire 1662.9131
## 3067 CI Cote d'Ivoire 1707.1777
## 3068 CI Cote d'Ivoire 1771.7750
## 3069 CI Cote d'Ivoire 1840.7741
## 3070 CI Cote d'Ivoire 1907.5326
## 3071 CI Cote d'Ivoire 1999.4981
## 3072 CI Cote d'Ivoire 2013.6148
## 3073 CI Cote d'Ivoire 2064.7879
## 3074 CI Cote d'Ivoire 2150.6034
## 3075 CI Cote d'Ivoire 2164.4197
## 3076 CI Cote d'Ivoire 2155.5373
## 3077 CI Cote d'Ivoire 2308.6871
## 3078 CI Cote d'Ivoire 2506.5257
## 3079 CI Cote d'Ivoire 2612.1582
## 3080 CI Cote d'Ivoire 2636.9196
## 3081 CI Cote d'Ivoire 3095.4035
## 3082 CI Cote d'Ivoire 3161.0695
## 3083 CI Cote d'Ivoire 2981.4659
## 3084 CI Cote d'Ivoire 2907.5851
## 3085 CI Cote d'Ivoire 2696.0767
## 3086 CI Cote d'Ivoire 2608.9795
## 3087 CI Cote d'Ivoire 2620.5372
## 3088 CI Cote d'Ivoire 2591.3985
## 3089 CI Cote d'Ivoire 2601.4443
## 3090 CI Cote d'Ivoire 2482.2764
## 3091 CI Cote d'Ivoire 2342.9009
## 3092 CI Cote d'Ivoire 2222.5231
## 3093 CI Cote d'Ivoire 2048.1556
## 3094 CI Cote d'Ivoire 2029.7858
## 3095 CI Cote d'Ivoire 1886.6925
## 3096 CI Cote d'Ivoire 2021.5840
## 3097 CI Cote d'Ivoire 1785.8576
## 3098 CI Cote d'Ivoire 1621.0027
## 3099 CI Cote d'Ivoire 1662.7393
## 3100 CI Cote d'Ivoire 1567.7618
## 3101 CW Curacao NA
## 3102 CW Curacao 14748.8955
## 3103 CW Curacao 17796.6996
## 3104 CW Curacao 18198.6641
## 3105 CW Curacao 18504.3057
## 3106 CW Curacao 18890.7588
## 3107 CW Curacao 19260.2698
## 3108 CW Curacao 19459.4944
## 3109 CW Curacao 19963.3453
## 3110 CW Curacao 20356.1818
## 3111 CW Curacao 20539.3601
## 3112 CW Curacao 20706.4372
## 3113 CW Curacao 20952.8997
## 3114 CW Curacao 21202.4307
## 3115 CW Curacao 21011.1569
## 3116 CW Curacao 20913.6631
## 3117 CW Curacao 21112.3220
## 3118 CW Curacao 21512.1115
## 3119 CW Curacao 21840.8911
## 3120 CW Curacao 22231.8795
## 3121 CW Curacao 22171.0657
## 3122 CW Curacao 21523.6459
## 3123 CW Curacao NA
## 3124 CW Curacao NA
## 3125 CW Curacao NA
## 3126 CW Curacao NA
## 3127 CW Curacao NA
## 3128 CW Curacao NA
## 3129 CW Curacao NA
## 3130 CW Curacao NA
## 3131 CW Curacao NA
## 3132 CW Curacao NA
## 3133 CW Curacao NA
## 3134 CW Curacao NA
## 3135 CW Curacao NA
## 3136 CW Curacao NA
## 3137 CW Curacao NA
## 3138 CW Curacao NA
## 3139 CW Curacao NA
## 3140 CW Curacao NA
## 3141 CW Curacao NA
## 3142 CW Curacao NA
## 3143 CW Curacao NA
## 3144 CW Curacao NA
## 3145 CW Curacao NA
## 3146 CW Curacao NA
## 3147 CW Curacao NA
## 3148 CW Curacao NA
## 3149 CW Curacao NA
## 3150 CW Curacao NA
## 3151 CW Curacao NA
## 3152 CW Curacao NA
## 3153 CW Curacao NA
## 3154 CW Curacao NA
## 3155 CW Curacao NA
## 3156 CW Curacao NA
## 3157 CW Curacao NA
## 3158 CW Curacao NA
## 3159 CW Curacao NA
## 3160 CW Curacao NA
## 3161 CW Curacao NA
## 3162 CW Curacao NA
## 3163 CZ Czechia 19608.9851
## 3164 CZ Czechia 18984.6373
## 3165 CZ Czechia 20202.1516
## 3166 CZ Czechia 19685.4945
## 3167 CZ Czechia 19139.2399
## 3168 CZ Czechia 18247.0117
## 3169 CZ Czechia 17829.6983
## 3170 CZ Czechia 16951.3791
## 3171 CZ Czechia 16593.8642
## 3172 CZ Czechia 16606.9925
## 3173 CZ Czechia 16761.8273
## 3174 CZ Czechia 16505.9537
## 3175 CZ Czechia 16160.6206
## 3176 CZ Czechia 17046.8850
## 3177 CZ Czechia 16739.1787
## 3178 CZ Czechia 15948.7453
## 3179 CZ Czechia 14978.4132
## 3180 CZ Czechia 14070.2805
## 3181 CZ Czechia 13428.0996
## 3182 CZ Czechia 12959.8175
## 3183 CZ Czechia 12734.9220
## 3184 CZ Czechia 12312.4978
## 3185 CZ Czechia 11805.6718
## 3186 CZ Czechia 11632.6029
## 3187 CZ Czechia 11663.1738
## 3188 CZ Czechia 11711.3154
## 3189 CZ Czechia 11219.1501
## 3190 CZ Czechia 10527.8757
## 3191 CZ Czechia 10233.9422
## 3192 CZ Czechia 10238.2477
## 3193 CZ Czechia 10300.8992
## 3194 CZ Czechia 11626.6259
## 3195 CZ Czechia NA
## 3196 CZ Czechia NA
## 3197 CZ Czechia NA
## 3198 CZ Czechia NA
## 3199 CZ Czechia NA
## 3200 CZ Czechia NA
## 3201 CZ Czechia NA
## 3202 CZ Czechia NA
## 3203 CZ Czechia NA
## 3204 CZ Czechia NA
## 3205 CZ Czechia NA
## 3206 CZ Czechia NA
## 3207 CZ Czechia NA
## 3208 CZ Czechia NA
## 3209 CZ Czechia NA
## 3210 CZ Czechia NA
## 3211 CZ Czechia NA
## 3212 CZ Czechia NA
## 3213 CZ Czechia NA
## 3214 CZ Czechia NA
## 3215 CZ Czechia NA
## 3216 CZ Czechia NA
## 3217 CZ Czechia NA
## 3218 CZ Czechia NA
## 3219 CZ Czechia NA
## 3220 CZ Czechia NA
## 3221 CZ Czechia NA
## 3222 CZ Czechia NA
## 3223 CZ Czechia NA
## 3224 CZ Czechia NA
## 3225 ST Sao Tome and Principe 1690.2633
## 3226 ST Sao Tome and Principe 1692.2187
## 3227 ST Sao Tome and Principe 1672.8962
## 3228 ST Sao Tome and Principe 1667.8579
## 3229 ST Sao Tome and Principe 1651.0120
## 3230 ST Sao Tome and Principe 1620.0565
## 3231 ST Sao Tome and Principe 1584.7757
## 3232 ST Sao Tome and Principe 1554.0472
## 3233 ST Sao Tome and Principe 1486.2390
## 3234 ST Sao Tome and Principe 1445.6798
## 3235 ST Sao Tome and Principe 1431.0603
## 3236 ST Sao Tome and Principe 1402.3021
## 3237 ST Sao Tome and Principe 1348.1906
## 3238 ST Sao Tome and Principe 1352.8295
## 3239 ST Sao Tome and Principe 1286.7458
## 3240 ST Sao Tome and Principe 1281.8180
## 3241 ST Sao Tome and Principe 1206.0952
## 3242 ST Sao Tome and Principe 1153.5731
## 3243 ST Sao Tome and Principe 1135.6023
## 3244 ST Sao Tome and Principe 1086.9126
## 3245 ST Sao Tome and Principe 1081.4064
## 3246 ST Sao Tome and Principe NA
## 3247 ST Sao Tome and Principe NA
## 3248 ST Sao Tome and Principe NA
## 3249 ST Sao Tome and Principe NA
## 3250 ST Sao Tome and Principe NA
## 3251 ST Sao Tome and Principe NA
## 3252 ST Sao Tome and Principe NA
## 3253 ST Sao Tome and Principe NA
## 3254 ST Sao Tome and Principe NA
## 3255 ST Sao Tome and Principe NA
## 3256 ST Sao Tome and Principe NA
## 3257 ST Sao Tome and Principe NA
## 3258 ST Sao Tome and Principe NA
## 3259 ST Sao Tome and Principe NA
## 3260 ST Sao Tome and Principe NA
## 3261 ST Sao Tome and Principe NA
## 3262 ST Sao Tome and Principe NA
## 3263 ST Sao Tome and Principe NA
## 3264 ST Sao Tome and Principe NA
## 3265 ST Sao Tome and Principe NA
## 3266 ST Sao Tome and Principe NA
## 3267 ST Sao Tome and Principe NA
## 3268 ST Sao Tome and Principe NA
## 3269 ST Sao Tome and Principe NA
## 3270 ST Sao Tome and Principe NA
## 3271 ST Sao Tome and Principe NA
## 3272 ST Sao Tome and Principe NA
## 3273 ST Sao Tome and Principe NA
## 3274 ST Sao Tome and Principe NA
## 3275 ST Sao Tome and Principe NA
## 3276 ST Sao Tome and Principe NA
## 3277 ST Sao Tome and Principe NA
## 3278 ST Sao Tome and Principe NA
## 3279 ST Sao Tome and Principe NA
## 3280 ST Sao Tome and Principe NA
## 3281 ST Sao Tome and Principe NA
## 3282 ST Sao Tome and Principe NA
## 3283 ST Sao Tome and Principe NA
## 3284 ST Sao Tome and Principe NA
## 3285 ST Sao Tome and Principe NA
## 3286 ST Sao Tome and Principe NA
## 3287 TR Turkiye 13250.6589
## 3288 TR Turkiye 12038.6281
## 3289 TR Turkiye 11955.4335
## 3290 TR Turkiye 12006.8159
## 3291 TR Turkiye 11835.2611
## 3292 TR Turkiye 11187.0536
## 3293 TR Turkiye 11006.2795
## 3294 TR Turkiye 10549.6761
## 3295 TR Turkiye 10225.7161
## 3296 TR Turkiye 9586.7691
## 3297 TR Turkiye 9299.1373
## 3298 TR Turkiye 8491.5887
## 3299 TR Turkiye 7942.0313
## 3300 TR Turkiye 8451.4791
## 3301 TR Turkiye 8483.9661
## 3302 TR Turkiye 8173.5363
## 3303 TR Turkiye 7738.5782
## 3304 TR Turkiye 7194.6820
## 3305 TR Turkiye 6644.1459
## 3306 TR Turkiye 6373.1319
## 3307 TR Turkiye 6075.9956
## 3308 TR Turkiye 6543.7314
## 3309 TR Turkiye 6213.0638
## 3310 TR Turkiye 6522.9417
## 3311 TR Turkiye 6470.7834
## 3312 TR Turkiye 6111.0779
## 3313 TR Turkiye 5782.2531
## 3314 TR Turkiye 5445.8526
## 3315 TR Turkiye 5804.3191
## 3316 TR Turkiye 5479.2938
## 3317 TR Turkiye 5303.0098
## 3318 TR Turkiye 5354.8045
## 3319 TR Turkiye 4986.6375
## 3320 TR Turkiye 5061.8726
## 3321 TR Turkiye 5039.3078
## 3322 TR Turkiye 4691.9979
## 3323 TR Turkiye 4473.3084
## 3324 TR Turkiye 4382.2532
## 3325 TR Turkiye 4197.4045
## 3326 TR Turkiye 4089.6834
## 3327 TR Turkiye 4039.9978
## 3328 TR Turkiye 3941.5802
## 3329 TR Turkiye 4132.7435
## 3330 TR Turkiye 4253.0765
## 3331 TR Turkiye 4285.0681
## 3332 TR Turkiye 4238.6282
## 3333 TR Turkiye 3926.3395
## 3334 TR Turkiye 3750.1105
## 3335 TR Turkiye 3636.5296
## 3336 TR Turkiye 3606.8320
## 3337 TR Turkiye 3438.9713
## 3338 TR Turkiye 3336.4917
## 3339 TR Turkiye 3309.8922
## 3340 TR Turkiye 3256.5036
## 3341 TR Turkiye 3122.8900
## 3342 TR Turkiye 3053.2711
## 3343 TR Turkiye 2811.4238
## 3344 TR Turkiye 2800.1036
## 3345 TR Turkiye 2719.2533
## 3346 TR Turkiye 2553.6141
## 3347 TR Turkiye 2477.7954
## 3348 TR Turkiye 2509.6235
## year
## 1 2021
## 2 2020
## 3 2019
## 4 2018
## 5 2017
## 6 2016
## 7 2015
## 8 2014
## 9 2013
## 10 2012
## 11 2011
## 12 2010
## 13 2009
## 14 2008
## 15 2007
## 16 2006
## 17 2005
## 18 2004
## 19 2003
## 20 2002
## 21 2001
## 22 2000
## 23 1999
## 24 1998
## 25 1997
## 26 1996
## 27 1995
## 28 1994
## 29 1993
## 30 1992
## 31 1991
## 32 1990
## 33 1989
## 34 1988
## 35 1987
## 36 1986
## 37 1985
## 38 1984
## 39 1983
## 40 1982
## 41 1981
## 42 1980
## 43 1979
## 44 1978
## 45 1977
## 46 1976
## 47 1975
## 48 1974
## 49 1973
## 50 1972
## 51 1971
## 52 1970
## 53 1969
## 54 1968
## 55 1967
## 56 1966
## 57 1965
## 58 1964
## 59 1963
## 60 1962
## 61 1961
## 62 1960
## 63 2021
## 64 2020
## 65 2019
## 66 2018
## 67 2017
## 68 2016
## 69 2015
## 70 2014
## 71 2013
## 72 2012
## 73 2011
## 74 2010
## 75 2009
## 76 2008
## 77 2007
## 78 2006
## 79 2005
## 80 2004
## 81 2003
## 82 2002
## 83 2001
## 84 2000
## 85 1999
## 86 1998
## 87 1997
## 88 1996
## 89 1995
## 90 1994
## 91 1993
## 92 1992
## 93 1991
## 94 1990
## 95 1989
## 96 1988
## 97 1987
## 98 1986
## 99 1985
## 100 1984
## 101 1983
## 102 1982
## 103 1981
## 104 1980
## 105 1979
## 106 1978
## 107 1977
## 108 1976
## 109 1975
## 110 1974
## 111 1973
## 112 1972
## 113 1971
## 114 1970
## 115 1969
## 116 1968
## 117 1967
## 118 1966
## 119 1965
## 120 1964
## 121 1963
## 122 1962
## 123 1961
## 124 1960
## 125 2021
## 126 2020
## 127 2019
## 128 2018
## 129 2017
## 130 2016
## 131 2015
## 132 2014
## 133 2013
## 134 2012
## 135 2011
## 136 2010
## 137 2009
## 138 2008
## 139 2007
## 140 2006
## 141 2005
## 142 2004
## 143 2003
## 144 2002
## 145 2001
## 146 2000
## 147 1999
## 148 1998
## 149 1997
## 150 1996
## 151 1995
## 152 1994
## 153 1993
## 154 1992
## 155 1991
## 156 1990
## 157 1989
## 158 1988
## 159 1987
## 160 1986
## 161 1985
## 162 1984
## 163 1983
## 164 1982
## 165 1981
## 166 1980
## 167 1979
## 168 1978
## 169 1977
## 170 1976
## 171 1975
## 172 1974
## 173 1973
## 174 1972
## 175 1971
## 176 1970
## 177 1969
## 178 1968
## 179 1967
## 180 1966
## 181 1965
## 182 1964
## 183 1963
## 184 1962
## 185 1961
## 186 1960
## 187 2021
## 188 2020
## 189 2019
## 190 2018
## 191 2017
## 192 2016
## 193 2015
## 194 2014
## 195 2013
## 196 2012
## 197 2011
## 198 2010
## 199 2009
## 200 2008
## 201 2007
## 202 2006
## 203 2005
## 204 2004
## 205 2003
## 206 2002
## 207 2001
## 208 2000
## 209 1999
## 210 1998
## 211 1997
## 212 1996
## 213 1995
## 214 1994
## 215 1993
## 216 1992
## 217 1991
## 218 1990
## 219 1989
## 220 1988
## 221 1987
## 222 1986
## 223 1985
## 224 1984
## 225 1983
## 226 1982
## 227 1981
## 228 1980
## 229 1979
## 230 1978
## 231 1977
## 232 1976
## 233 1975
## 234 1974
## 235 1973
## 236 1972
## 237 1971
## 238 1970
## 239 1969
## 240 1968
## 241 1967
## 242 1966
## 243 1965
## 244 1964
## 245 1963
## 246 1962
## 247 1961
## 248 1960
## 249 2021
## 250 2020
## 251 2019
## 252 2018
## 253 2017
## 254 2016
## 255 2015
## 256 2014
## 257 2013
## 258 2012
## 259 2011
## 260 2010
## 261 2009
## 262 2008
## 263 2007
## 264 2006
## 265 2005
## 266 2004
## 267 2003
## 268 2002
## 269 2001
## 270 2000
## 271 1999
## 272 1998
## 273 1997
## 274 1996
## 275 1995
## 276 1994
## 277 1993
## 278 1992
## 279 1991
## 280 1990
## 281 1989
## 282 1988
## 283 1987
## 284 1986
## 285 1985
## 286 1984
## 287 1983
## 288 1982
## 289 1981
## 290 1980
## 291 1979
## 292 1978
## 293 1977
## 294 1976
## 295 1975
## 296 1974
## 297 1973
## 298 1972
## 299 1971
## 300 1970
## 301 1969
## 302 1968
## 303 1967
## 304 1966
## 305 1965
## 306 1964
## 307 1963
## 308 1962
## 309 1961
## 310 1960
## 311 2021
## 312 2020
## 313 2019
## 314 2018
## 315 2017
## 316 2016
## 317 2015
## 318 2014
## 319 2013
## 320 2012
## 321 2011
## 322 2010
## 323 2009
## 324 2008
## 325 2007
## 326 2006
## 327 2005
## 328 2004
## 329 2003
## 330 2002
## 331 2001
## 332 2000
## 333 1999
## 334 1998
## 335 1997
## 336 1996
## 337 1995
## 338 1994
## 339 1993
## 340 1992
## 341 1991
## 342 1990
## 343 1989
## 344 1988
## 345 1987
## 346 1986
## 347 1985
## 348 1984
## 349 1983
## 350 1982
## 351 1981
## 352 1980
## 353 1979
## 354 1978
## 355 1977
## 356 1976
## 357 1975
## 358 1974
## 359 1973
## 360 1972
## 361 1971
## 362 1970
## 363 1969
## 364 1968
## 365 1967
## 366 1966
## 367 1965
## 368 1964
## 369 1963
## 370 1962
## 371 1961
## 372 1960
## 373 2021
## 374 2020
## 375 2019
## 376 2018
## 377 2017
## 378 2016
## 379 2015
## 380 2014
## 381 2013
## 382 2012
## 383 2011
## 384 2010
## 385 2009
## 386 2008
## 387 2007
## 388 2006
## 389 2005
## 390 2004
## 391 2003
## 392 2002
## 393 2001
## 394 2000
## 395 1999
## 396 1998
## 397 1997
## 398 1996
## 399 1995
## 400 1994
## 401 1993
## 402 1992
## 403 1991
## 404 1990
## 405 1989
## 406 1988
## 407 1987
## 408 1986
## 409 1985
## 410 1984
## 411 1983
## 412 1982
## 413 1981
## 414 1980
## 415 1979
## 416 1978
## 417 1977
## 418 1976
## 419 1975
## 420 1974
## 421 1973
## 422 1972
## 423 1971
## 424 1970
## 425 1969
## 426 1968
## 427 1967
## 428 1966
## 429 1965
## 430 1964
## 431 1963
## 432 1962
## 433 1961
## 434 1960
## 435 2021
## 436 2020
## 437 2019
## 438 2018
## 439 2017
## 440 2016
## 441 2015
## 442 2014
## 443 2013
## 444 2012
## 445 2011
## 446 2010
## 447 2009
## 448 2008
## 449 2007
## 450 2006
## 451 2005
## 452 2004
## 453 2003
## 454 2002
## 455 2001
## 456 2000
## 457 1999
## 458 1998
## 459 1997
## 460 1996
## 461 1995
## 462 1994
## 463 1993
## 464 1992
## 465 1991
## 466 1990
## 467 1989
## 468 1988
## 469 1987
## 470 1986
## 471 1985
## 472 1984
## 473 1983
## 474 1982
## 475 1981
## 476 1980
## 477 1979
## 478 1978
## 479 1977
## 480 1976
## 481 1975
## 482 1974
## 483 1973
## 484 1972
## 485 1971
## 486 1970
## 487 1969
## 488 1968
## 489 1967
## 490 1966
## 491 1965
## 492 1964
## 493 1963
## 494 1962
## 495 1961
## 496 1960
## 497 2021
## 498 2020
## 499 2019
## 500 2018
## 501 2017
## 502 2016
## 503 2015
## 504 2014
## 505 2013
## 506 2012
## 507 2011
## 508 2010
## 509 2009
## 510 2008
## 511 2007
## 512 2006
## 513 2005
## 514 2004
## 515 2003
## 516 2002
## 517 2001
## 518 2000
## 519 1999
## 520 1998
## 521 1997
## 522 1996
## 523 1995
## 524 1994
## 525 1993
## 526 1992
## 527 1991
## 528 1990
## 529 1989
## 530 1988
## 531 1987
## 532 1986
## 533 1985
## 534 1984
## 535 1983
## 536 1982
## 537 1981
## 538 1980
## 539 1979
## 540 1978
## 541 1977
## 542 1976
## 543 1975
## 544 1974
## 545 1973
## 546 1972
## 547 1971
## 548 1970
## 549 1969
## 550 1968
## 551 1967
## 552 1966
## 553 1965
## 554 1964
## 555 1963
## 556 1962
## 557 1961
## 558 1960
## 559 2021
## 560 2020
## 561 2019
## 562 2018
## 563 2017
## 564 2016
## 565 2015
## 566 2014
## 567 2013
## 568 2012
## 569 2011
## 570 2010
## 571 2009
## 572 2008
## 573 2007
## 574 2006
## 575 2005
## 576 2004
## 577 2003
## 578 2002
## 579 2001
## 580 2000
## 581 1999
## 582 1998
## 583 1997
## 584 1996
## 585 1995
## 586 1994
## 587 1993
## 588 1992
## 589 1991
## 590 1990
## 591 1989
## 592 1988
## 593 1987
## 594 1986
## 595 1985
## 596 1984
## 597 1983
## 598 1982
## 599 1981
## 600 1980
## 601 1979
## 602 1978
## 603 1977
## 604 1976
## 605 1975
## 606 1974
## 607 1973
## 608 1972
## 609 1971
## 610 1970
## 611 1969
## 612 1968
## 613 1967
## 614 1966
## 615 1965
## 616 1964
## 617 1963
## 618 1962
## 619 1961
## 620 1960
## 621 2021
## 622 2020
## 623 2019
## 624 2018
## 625 2017
## 626 2016
## 627 2015
## 628 2014
## 629 2013
## 630 2012
## 631 2011
## 632 2010
## 633 2009
## 634 2008
## 635 2007
## 636 2006
## 637 2005
## 638 2004
## 639 2003
## 640 2002
## 641 2001
## 642 2000
## 643 1999
## 644 1998
## 645 1997
## 646 1996
## 647 1995
## 648 1994
## 649 1993
## 650 1992
## 651 1991
## 652 1990
## 653 1989
## 654 1988
## 655 1987
## 656 1986
## 657 1985
## 658 1984
## 659 1983
## 660 1982
## 661 1981
## 662 1980
## 663 1979
## 664 1978
## 665 1977
## 666 1976
## 667 1975
## 668 1974
## 669 1973
## 670 1972
## 671 1971
## 672 1970
## 673 1969
## 674 1968
## 675 1967
## 676 1966
## 677 1965
## 678 1964
## 679 1963
## 680 1962
## 681 1961
## 682 1960
## 683 2021
## 684 2020
## 685 2019
## 686 2018
## 687 2017
## 688 2016
## 689 2015
## 690 2014
## 691 2013
## 692 2012
## 693 2011
## 694 2010
## 695 2009
## 696 2008
## 697 2007
## 698 2006
## 699 2005
## 700 2004
## 701 2003
## 702 2002
## 703 2001
## 704 2000
## 705 1999
## 706 1998
## 707 1997
## 708 1996
## 709 1995
## 710 1994
## 711 1993
## 712 1992
## 713 1991
## 714 1990
## 715 1989
## 716 1988
## 717 1987
## 718 1986
## 719 1985
## 720 1984
## 721 1983
## 722 1982
## 723 1981
## 724 1980
## 725 1979
## 726 1978
## 727 1977
## 728 1976
## 729 1975
## 730 1974
## 731 1973
## 732 1972
## 733 1971
## 734 1970
## 735 1969
## 736 1968
## 737 1967
## 738 1966
## 739 1965
## 740 1964
## 741 1963
## 742 1962
## 743 1961
## 744 1960
## 745 2021
## 746 2020
## 747 2019
## 748 2018
## 749 2017
## 750 2016
## 751 2015
## 752 2014
## 753 2013
## 754 2012
## 755 2011
## 756 2010
## 757 2009
## 758 2008
## 759 2007
## 760 2006
## 761 2005
## 762 2004
## 763 2003
## 764 2002
## 765 2001
## 766 2000
## 767 1999
## 768 1998
## 769 1997
## 770 1996
## 771 1995
## 772 1994
## 773 1993
## 774 1992
## 775 1991
## 776 1990
## 777 1989
## 778 1988
## 779 1987
## 780 1986
## 781 1985
## 782 1984
## 783 1983
## 784 1982
## 785 1981
## 786 1980
## 787 1979
## 788 1978
## 789 1977
## 790 1976
## 791 1975
## 792 1974
## 793 1973
## 794 1972
## 795 1971
## 796 1970
## 797 1969
## 798 1968
## 799 1967
## 800 1966
## 801 1965
## 802 1964
## 803 1963
## 804 1962
## 805 1961
## 806 1960
## 807 2021
## 808 2020
## 809 2019
## 810 2018
## 811 2017
## 812 2016
## 813 2015
## 814 2014
## 815 2013
## 816 2012
## 817 2011
## 818 2010
## 819 2009
## 820 2008
## 821 2007
## 822 2006
## 823 2005
## 824 2004
## 825 2003
## 826 2002
## 827 2001
## 828 2000
## 829 1999
## 830 1998
## 831 1997
## 832 1996
## 833 1995
## 834 1994
## 835 1993
## 836 1992
## 837 1991
## 838 1990
## 839 1989
## 840 1988
## 841 1987
## 842 1986
## 843 1985
## 844 1984
## 845 1983
## 846 1982
## 847 1981
## 848 1980
## 849 1979
## 850 1978
## 851 1977
## 852 1976
## 853 1975
## 854 1974
## 855 1973
## 856 1972
## 857 1971
## 858 1970
## 859 1969
## 860 1968
## 861 1967
## 862 1966
## 863 1965
## 864 1964
## 865 1963
## 866 1962
## 867 1961
## 868 1960
## 869 2021
## 870 2020
## 871 2019
## 872 2018
## 873 2017
## 874 2016
## 875 2015
## 876 2014
## 877 2013
## 878 2012
## 879 2011
## 880 2010
## 881 2009
## 882 2008
## 883 2007
## 884 2006
## 885 2005
## 886 2004
## 887 2003
## 888 2002
## 889 2001
## 890 2000
## 891 1999
## 892 1998
## 893 1997
## 894 1996
## 895 1995
## 896 1994
## 897 1993
## 898 1992
## 899 1991
## 900 1990
## 901 1989
## 902 1988
## 903 1987
## 904 1986
## 905 1985
## 906 1984
## 907 1983
## 908 1982
## 909 1981
## 910 1980
## 911 1979
## 912 1978
## 913 1977
## 914 1976
## 915 1975
## 916 1974
## 917 1973
## 918 1972
## 919 1971
## 920 1970
## 921 1969
## 922 1968
## 923 1967
## 924 1966
## 925 1965
## 926 1964
## 927 1963
## 928 1962
## 929 1961
## 930 1960
## 931 2021
## 932 2020
## 933 2019
## 934 2018
## 935 2017
## 936 2016
## 937 2015
## 938 2014
## 939 2013
## 940 2012
## 941 2011
## 942 2010
## 943 2009
## 944 2008
## 945 2007
## 946 2006
## 947 2005
## 948 2004
## 949 2003
## 950 2002
## 951 2001
## 952 2000
## 953 1999
## 954 1998
## 955 1997
## 956 1996
## 957 1995
## 958 1994
## 959 1993
## 960 1992
## 961 1991
## 962 1990
## 963 1989
## 964 1988
## 965 1987
## 966 1986
## 967 1985
## 968 1984
## 969 1983
## 970 1982
## 971 1981
## 972 1980
## 973 1979
## 974 1978
## 975 1977
## 976 1976
## 977 1975
## 978 1974
## 979 1973
## 980 1972
## 981 1971
## 982 1970
## 983 1969
## 984 1968
## 985 1967
## 986 1966
## 987 1965
## 988 1964
## 989 1963
## 990 1962
## 991 1961
## 992 1960
## 993 2021
## 994 2020
## 995 2019
## 996 2018
## 997 2017
## 998 2016
## 999 2015
## 1000 2014
## 1001 2013
## 1002 2012
## 1003 2011
## 1004 2010
## 1005 2009
## 1006 2008
## 1007 2007
## 1008 2006
## 1009 2005
## 1010 2004
## 1011 2003
## 1012 2002
## 1013 2001
## 1014 2000
## 1015 1999
## 1016 1998
## 1017 1997
## 1018 1996
## 1019 1995
## 1020 1994
## 1021 1993
## 1022 1992
## 1023 1991
## 1024 1990
## 1025 1989
## 1026 1988
## 1027 1987
## 1028 1986
## 1029 1985
## 1030 1984
## 1031 1983
## 1032 1982
## 1033 1981
## 1034 1980
## 1035 1979
## 1036 1978
## 1037 1977
## 1038 1976
## 1039 1975
## 1040 1974
## 1041 1973
## 1042 1972
## 1043 1971
## 1044 1970
## 1045 1969
## 1046 1968
## 1047 1967
## 1048 1966
## 1049 1965
## 1050 1964
## 1051 1963
## 1052 1962
## 1053 1961
## 1054 1960
## 1055 2021
## 1056 2020
## 1057 2019
## 1058 2018
## 1059 2017
## 1060 2016
## 1061 2015
## 1062 2014
## 1063 2013
## 1064 2012
## 1065 2011
## 1066 2010
## 1067 2009
## 1068 2008
## 1069 2007
## 1070 2006
## 1071 2005
## 1072 2004
## 1073 2003
## 1074 2002
## 1075 2001
## 1076 2000
## 1077 1999
## 1078 1998
## 1079 1997
## 1080 1996
## 1081 1995
## 1082 1994
## 1083 1993
## 1084 1992
## 1085 1991
## 1086 1990
## 1087 1989
## 1088 1988
## 1089 1987
## 1090 1986
## 1091 1985
## 1092 1984
## 1093 1983
## 1094 1982
## 1095 1981
## 1096 1980
## 1097 1979
## 1098 1978
## 1099 1977
## 1100 1976
## 1101 1975
## 1102 1974
## 1103 1973
## 1104 1972
## 1105 1971
## 1106 1970
## 1107 1969
## 1108 1968
## 1109 1967
## 1110 1966
## 1111 1965
## 1112 1964
## 1113 1963
## 1114 1962
## 1115 1961
## 1116 1960
## 1117 2021
## 1118 2020
## 1119 2019
## 1120 2018
## 1121 2017
## 1122 2016
## 1123 2015
## 1124 2014
## 1125 2013
## 1126 2012
## 1127 2011
## 1128 2010
## 1129 2009
## 1130 2008
## 1131 2007
## 1132 2006
## 1133 2005
## 1134 2004
## 1135 2003
## 1136 2002
## 1137 2001
## 1138 2000
## 1139 1999
## 1140 1998
## 1141 1997
## 1142 1996
## 1143 1995
## 1144 1994
## 1145 1993
## 1146 1992
## 1147 1991
## 1148 1990
## 1149 1989
## 1150 1988
## 1151 1987
## 1152 1986
## 1153 1985
## 1154 1984
## 1155 1983
## 1156 1982
## 1157 1981
## 1158 1980
## 1159 1979
## 1160 1978
## 1161 1977
## 1162 1976
## 1163 1975
## 1164 1974
## 1165 1973
## 1166 1972
## 1167 1971
## 1168 1970
## 1169 1969
## 1170 1968
## 1171 1967
## 1172 1966
## 1173 1965
## 1174 1964
## 1175 1963
## 1176 1962
## 1177 1961
## 1178 1960
## 1179 2021
## 1180 2020
## 1181 2019
## 1182 2018
## 1183 2017
## 1184 2016
## 1185 2015
## 1186 2014
## 1187 2013
## 1188 2012
## 1189 2011
## 1190 2010
## 1191 2009
## 1192 2008
## 1193 2007
## 1194 2006
## 1195 2005
## 1196 2004
## 1197 2003
## 1198 2002
## 1199 2001
## 1200 2000
## 1201 1999
## 1202 1998
## 1203 1997
## 1204 1996
## 1205 1995
## 1206 1994
## 1207 1993
## 1208 1992
## 1209 1991
## 1210 1990
## 1211 1989
## 1212 1988
## 1213 1987
## 1214 1986
## 1215 1985
## 1216 1984
## 1217 1983
## 1218 1982
## 1219 1981
## 1220 1980
## 1221 1979
## 1222 1978
## 1223 1977
## 1224 1976
## 1225 1975
## 1226 1974
## 1227 1973
## 1228 1972
## 1229 1971
## 1230 1970
## 1231 1969
## 1232 1968
## 1233 1967
## 1234 1966
## 1235 1965
## 1236 1964
## 1237 1963
## 1238 1962
## 1239 1961
## 1240 1960
## 1241 2021
## 1242 2020
## 1243 2019
## 1244 2018
## 1245 2017
## 1246 2016
## 1247 2015
## 1248 2014
## 1249 2013
## 1250 2012
## 1251 2011
## 1252 2010
## 1253 2009
## 1254 2008
## 1255 2007
## 1256 2006
## 1257 2005
## 1258 2004
## 1259 2003
## 1260 2002
## 1261 2001
## 1262 2000
## 1263 1999
## 1264 1998
## 1265 1997
## 1266 1996
## 1267 1995
## 1268 1994
## 1269 1993
## 1270 1992
## 1271 1991
## 1272 1990
## 1273 1989
## 1274 1988
## 1275 1987
## 1276 1986
## 1277 1985
## 1278 1984
## 1279 1983
## 1280 1982
## 1281 1981
## 1282 1980
## 1283 1979
## 1284 1978
## 1285 1977
## 1286 1976
## 1287 1975
## 1288 1974
## 1289 1973
## 1290 1972
## 1291 1971
## 1292 1970
## 1293 1969
## 1294 1968
## 1295 1967
## 1296 1966
## 1297 1965
## 1298 1964
## 1299 1963
## 1300 1962
## 1301 1961
## 1302 1960
## 1303 2021
## 1304 2020
## 1305 2019
## 1306 2018
## 1307 2017
## 1308 2016
## 1309 2015
## 1310 2014
## 1311 2013
## 1312 2012
## 1313 2011
## 1314 2010
## 1315 2009
## 1316 2008
## 1317 2007
## 1318 2006
## 1319 2005
## 1320 2004
## 1321 2003
## 1322 2002
## 1323 2001
## 1324 2000
## 1325 1999
## 1326 1998
## 1327 1997
## 1328 1996
## 1329 1995
## 1330 1994
## 1331 1993
## 1332 1992
## 1333 1991
## 1334 1990
## 1335 1989
## 1336 1988
## 1337 1987
## 1338 1986
## 1339 1985
## 1340 1984
## 1341 1983
## 1342 1982
## 1343 1981
## 1344 1980
## 1345 1979
## 1346 1978
## 1347 1977
## 1348 1976
## 1349 1975
## 1350 1974
## 1351 1973
## 1352 1972
## 1353 1971
## 1354 1970
## 1355 1969
## 1356 1968
## 1357 1967
## 1358 1966
## 1359 1965
## 1360 1964
## 1361 1963
## 1362 1962
## 1363 1961
## 1364 1960
## 1365 2021
## 1366 2020
## 1367 2019
## 1368 2018
## 1369 2017
## 1370 2016
## 1371 2015
## 1372 2014
## 1373 2013
## 1374 2012
## 1375 2011
## 1376 2010
## 1377 2009
## 1378 2008
## 1379 2007
## 1380 2006
## 1381 2005
## 1382 2004
## 1383 2003
## 1384 2002
## 1385 2001
## 1386 2000
## 1387 1999
## 1388 1998
## 1389 1997
## 1390 1996
## 1391 1995
## 1392 1994
## 1393 1993
## 1394 1992
## 1395 1991
## 1396 1990
## 1397 1989
## 1398 1988
## 1399 1987
## 1400 1986
## 1401 1985
## 1402 1984
## 1403 1983
## 1404 1982
## 1405 1981
## 1406 1980
## 1407 1979
## 1408 1978
## 1409 1977
## 1410 1976
## 1411 1975
## 1412 1974
## 1413 1973
## 1414 1972
## 1415 1971
## 1416 1970
## 1417 1969
## 1418 1968
## 1419 1967
## 1420 1966
## 1421 1965
## 1422 1964
## 1423 1963
## 1424 1962
## 1425 1961
## 1426 1960
## 1427 2021
## 1428 2020
## 1429 2019
## 1430 2018
## 1431 2017
## 1432 2016
## 1433 2015
## 1434 2014
## 1435 2013
## 1436 2012
## 1437 2011
## 1438 2010
## 1439 2009
## 1440 2008
## 1441 2007
## 1442 2006
## 1443 2005
## 1444 2004
## 1445 2003
## 1446 2002
## 1447 2001
## 1448 2000
## 1449 1999
## 1450 1998
## 1451 1997
## 1452 1996
## 1453 1995
## 1454 1994
## 1455 1993
## 1456 1992
## 1457 1991
## 1458 1990
## 1459 1989
## 1460 1988
## 1461 1987
## 1462 1986
## 1463 1985
## 1464 1984
## 1465 1983
## 1466 1982
## 1467 1981
## 1468 1980
## 1469 1979
## 1470 1978
## 1471 1977
## 1472 1976
## 1473 1975
## 1474 1974
## 1475 1973
## 1476 1972
## 1477 1971
## 1478 1970
## 1479 1969
## 1480 1968
## 1481 1967
## 1482 1966
## 1483 1965
## 1484 1964
## 1485 1963
## 1486 1962
## 1487 1961
## 1488 1960
## 1489 2021
## 1490 2020
## 1491 2019
## 1492 2018
## 1493 2017
## 1494 2016
## 1495 2015
## 1496 2014
## 1497 2013
## 1498 2012
## 1499 2011
## 1500 2010
## 1501 2009
## 1502 2008
## 1503 2007
## 1504 2006
## 1505 2005
## 1506 2004
## 1507 2003
## 1508 2002
## 1509 2001
## 1510 2000
## 1511 1999
## 1512 1998
## 1513 1997
## 1514 1996
## 1515 1995
## 1516 1994
## 1517 1993
## 1518 1992
## 1519 1991
## 1520 1990
## 1521 1989
## 1522 1988
## 1523 1987
## 1524 1986
## 1525 1985
## 1526 1984
## 1527 1983
## 1528 1982
## 1529 1981
## 1530 1980
## 1531 1979
## 1532 1978
## 1533 1977
## 1534 1976
## 1535 1975
## 1536 1974
## 1537 1973
## 1538 1972
## 1539 1971
## 1540 1970
## 1541 1969
## 1542 1968
## 1543 1967
## 1544 1966
## 1545 1965
## 1546 1964
## 1547 1963
## 1548 1962
## 1549 1961
## 1550 1960
## 1551 2021
## 1552 2020
## 1553 2019
## 1554 2018
## 1555 2017
## 1556 2016
## 1557 2015
## 1558 2014
## 1559 2013
## 1560 2012
## 1561 2011
## 1562 2010
## 1563 2009
## 1564 2008
## 1565 2007
## 1566 2006
## 1567 2005
## 1568 2004
## 1569 2003
## 1570 2002
## 1571 2001
## 1572 2000
## 1573 1999
## 1574 1998
## 1575 1997
## 1576 1996
## 1577 1995
## 1578 1994
## 1579 1993
## 1580 1992
## 1581 1991
## 1582 1990
## 1583 1989
## 1584 1988
## 1585 1987
## 1586 1986
## 1587 1985
## 1588 1984
## 1589 1983
## 1590 1982
## 1591 1981
## 1592 1980
## 1593 1979
## 1594 1978
## 1595 1977
## 1596 1976
## 1597 1975
## 1598 1974
## 1599 1973
## 1600 1972
## 1601 1971
## 1602 1970
## 1603 1969
## 1604 1968
## 1605 1967
## 1606 1966
## 1607 1965
## 1608 1964
## 1609 1963
## 1610 1962
## 1611 1961
## 1612 1960
## 1613 2021
## 1614 2020
## 1615 2019
## 1616 2018
## 1617 2017
## 1618 2016
## 1619 2015
## 1620 2014
## 1621 2013
## 1622 2012
## 1623 2011
## 1624 2010
## 1625 2009
## 1626 2008
## 1627 2007
## 1628 2006
## 1629 2005
## 1630 2004
## 1631 2003
## 1632 2002
## 1633 2001
## 1634 2000
## 1635 1999
## 1636 1998
## 1637 1997
## 1638 1996
## 1639 1995
## 1640 1994
## 1641 1993
## 1642 1992
## 1643 1991
## 1644 1990
## 1645 1989
## 1646 1988
## 1647 1987
## 1648 1986
## 1649 1985
## 1650 1984
## 1651 1983
## 1652 1982
## 1653 1981
## 1654 1980
## 1655 1979
## 1656 1978
## 1657 1977
## 1658 1976
## 1659 1975
## 1660 1974
## 1661 1973
## 1662 1972
## 1663 1971
## 1664 1970
## 1665 1969
## 1666 1968
## 1667 1967
## 1668 1966
## 1669 1965
## 1670 1964
## 1671 1963
## 1672 1962
## 1673 1961
## 1674 1960
## 1675 2021
## 1676 2020
## 1677 2019
## 1678 2018
## 1679 2017
## 1680 2016
## 1681 2015
## 1682 2014
## 1683 2013
## 1684 2012
## 1685 2011
## 1686 2010
## 1687 2009
## 1688 2008
## 1689 2007
## 1690 2006
## 1691 2005
## 1692 2004
## 1693 2003
## 1694 2002
## 1695 2001
## 1696 2000
## 1697 1999
## 1698 1998
## 1699 1997
## 1700 1996
## 1701 1995
## 1702 1994
## 1703 1993
## 1704 1992
## 1705 1991
## 1706 1990
## 1707 1989
## 1708 1988
## 1709 1987
## 1710 1986
## 1711 1985
## 1712 1984
## 1713 1983
## 1714 1982
## 1715 1981
## 1716 1980
## 1717 1979
## 1718 1978
## 1719 1977
## 1720 1976
## 1721 1975
## 1722 1974
## 1723 1973
## 1724 1972
## 1725 1971
## 1726 1970
## 1727 1969
## 1728 1968
## 1729 1967
## 1730 1966
## 1731 1965
## 1732 1964
## 1733 1963
## 1734 1962
## 1735 1961
## 1736 1960
## 1737 2021
## 1738 2020
## 1739 2019
## 1740 2018
## 1741 2017
## 1742 2016
## 1743 2015
## 1744 2014
## 1745 2013
## 1746 2012
## 1747 2011
## 1748 2010
## 1749 2009
## 1750 2008
## 1751 2007
## 1752 2006
## 1753 2005
## 1754 2004
## 1755 2003
## 1756 2002
## 1757 2001
## 1758 2000
## 1759 1999
## 1760 1998
## 1761 1997
## 1762 1996
## 1763 1995
## 1764 1994
## 1765 1993
## 1766 1992
## 1767 1991
## 1768 1990
## 1769 1989
## 1770 1988
## 1771 1987
## 1772 1986
## 1773 1985
## 1774 1984
## 1775 1983
## 1776 1982
## 1777 1981
## 1778 1980
## 1779 1979
## 1780 1978
## 1781 1977
## 1782 1976
## 1783 1975
## 1784 1974
## 1785 1973
## 1786 1972
## 1787 1971
## 1788 1970
## 1789 1969
## 1790 1968
## 1791 1967
## 1792 1966
## 1793 1965
## 1794 1964
## 1795 1963
## 1796 1962
## 1797 1961
## 1798 1960
## 1799 2021
## 1800 2020
## 1801 2019
## 1802 2018
## 1803 2017
## 1804 2016
## 1805 2015
## 1806 2014
## 1807 2013
## 1808 2012
## 1809 2011
## 1810 2010
## 1811 2009
## 1812 2008
## 1813 2007
## 1814 2006
## 1815 2005
## 1816 2004
## 1817 2003
## 1818 2002
## 1819 2001
## 1820 2000
## 1821 1999
## 1822 1998
## 1823 1997
## 1824 1996
## 1825 1995
## 1826 1994
## 1827 1993
## 1828 1992
## 1829 1991
## 1830 1990
## 1831 1989
## 1832 1988
## 1833 1987
## 1834 1986
## 1835 1985
## 1836 1984
## 1837 1983
## 1838 1982
## 1839 1981
## 1840 1980
## 1841 1979
## 1842 1978
## 1843 1977
## 1844 1976
## 1845 1975
## 1846 1974
## 1847 1973
## 1848 1972
## 1849 1971
## 1850 1970
## 1851 1969
## 1852 1968
## 1853 1967
## 1854 1966
## 1855 1965
## 1856 1964
## 1857 1963
## 1858 1962
## 1859 1961
## 1860 1960
## 1861 2021
## 1862 2020
## 1863 2019
## 1864 2018
## 1865 2017
## 1866 2016
## 1867 2015
## 1868 2014
## 1869 2013
## 1870 2012
## 1871 2011
## 1872 2010
## 1873 2009
## 1874 2008
## 1875 2007
## 1876 2006
## 1877 2005
## 1878 2004
## 1879 2003
## 1880 2002
## 1881 2001
## 1882 2000
## 1883 1999
## 1884 1998
## 1885 1997
## 1886 1996
## 1887 1995
## 1888 1994
## 1889 1993
## 1890 1992
## 1891 1991
## 1892 1990
## 1893 1989
## 1894 1988
## 1895 1987
## 1896 1986
## 1897 1985
## 1898 1984
## 1899 1983
## 1900 1982
## 1901 1981
## 1902 1980
## 1903 1979
## 1904 1978
## 1905 1977
## 1906 1976
## 1907 1975
## 1908 1974
## 1909 1973
## 1910 1972
## 1911 1971
## 1912 1970
## 1913 1969
## 1914 1968
## 1915 1967
## 1916 1966
## 1917 1965
## 1918 1964
## 1919 1963
## 1920 1962
## 1921 1961
## 1922 1960
## 1923 2021
## 1924 2020
## 1925 2019
## 1926 2018
## 1927 2017
## 1928 2016
## 1929 2015
## 1930 2014
## 1931 2013
## 1932 2012
## 1933 2011
## 1934 2010
## 1935 2009
## 1936 2008
## 1937 2007
## 1938 2006
## 1939 2005
## 1940 2004
## 1941 2003
## 1942 2002
## 1943 2001
## 1944 2000
## 1945 1999
## 1946 1998
## 1947 1997
## 1948 1996
## 1949 1995
## 1950 1994
## 1951 1993
## 1952 1992
## 1953 1991
## 1954 1990
## 1955 1989
## 1956 1988
## 1957 1987
## 1958 1986
## 1959 1985
## 1960 1984
## 1961 1983
## 1962 1982
## 1963 1981
## 1964 1980
## 1965 1979
## 1966 1978
## 1967 1977
## 1968 1976
## 1969 1975
## 1970 1974
## 1971 1973
## 1972 1972
## 1973 1971
## 1974 1970
## 1975 1969
## 1976 1968
## 1977 1967
## 1978 1966
## 1979 1965
## 1980 1964
## 1981 1963
## 1982 1962
## 1983 1961
## 1984 1960
## 1985 2021
## 1986 2020
## 1987 2019
## 1988 2018
## 1989 2017
## 1990 2016
## 1991 2015
## 1992 2014
## 1993 2013
## 1994 2012
## 1995 2011
## 1996 2010
## 1997 2009
## 1998 2008
## 1999 2007
## 2000 2006
## 2001 2005
## 2002 2004
## 2003 2003
## 2004 2002
## 2005 2001
## 2006 2000
## 2007 1999
## 2008 1998
## 2009 1997
## 2010 1996
## 2011 1995
## 2012 1994
## 2013 1993
## 2014 1992
## 2015 1991
## 2016 1990
## 2017 1989
## 2018 1988
## 2019 1987
## 2020 1986
## 2021 1985
## 2022 1984
## 2023 1983
## 2024 1982
## 2025 1981
## 2026 1980
## 2027 1979
## 2028 1978
## 2029 1977
## 2030 1976
## 2031 1975
## 2032 1974
## 2033 1973
## 2034 1972
## 2035 1971
## 2036 1970
## 2037 1969
## 2038 1968
## 2039 1967
## 2040 1966
## 2041 1965
## 2042 1964
## 2043 1963
## 2044 1962
## 2045 1961
## 2046 1960
## 2047 2021
## 2048 2020
## 2049 2019
## 2050 2018
## 2051 2017
## 2052 2016
## 2053 2015
## 2054 2014
## 2055 2013
## 2056 2012
## 2057 2011
## 2058 2010
## 2059 2009
## 2060 2008
## 2061 2007
## 2062 2006
## 2063 2005
## 2064 2004
## 2065 2003
## 2066 2002
## 2067 2001
## 2068 2000
## 2069 1999
## 2070 1998
## 2071 1997
## 2072 1996
## 2073 1995
## 2074 1994
## 2075 1993
## 2076 1992
## 2077 1991
## 2078 1990
## 2079 1989
## 2080 1988
## 2081 1987
## 2082 1986
## 2083 1985
## 2084 1984
## 2085 1983
## 2086 1982
## 2087 1981
## 2088 1980
## 2089 1979
## 2090 1978
## 2091 1977
## 2092 1976
## 2093 1975
## 2094 1974
## 2095 1973
## 2096 1972
## 2097 1971
## 2098 1970
## 2099 1969
## 2100 1968
## 2101 1967
## 2102 1966
## 2103 1965
## 2104 1964
## 2105 1963
## 2106 1962
## 2107 1961
## 2108 1960
## 2109 2021
## 2110 2020
## 2111 2019
## 2112 2018
## 2113 2017
## 2114 2016
## 2115 2015
## 2116 2014
## 2117 2013
## 2118 2012
## 2119 2011
## 2120 2010
## 2121 2009
## 2122 2008
## 2123 2007
## 2124 2006
## 2125 2005
## 2126 2004
## 2127 2003
## 2128 2002
## 2129 2001
## 2130 2000
## 2131 1999
## 2132 1998
## 2133 1997
## 2134 1996
## 2135 1995
## 2136 1994
## 2137 1993
## 2138 1992
## 2139 1991
## 2140 1990
## 2141 1989
## 2142 1988
## 2143 1987
## 2144 1986
## 2145 1985
## 2146 1984
## 2147 1983
## 2148 1982
## 2149 1981
## 2150 1980
## 2151 1979
## 2152 1978
## 2153 1977
## 2154 1976
## 2155 1975
## 2156 1974
## 2157 1973
## 2158 1972
## 2159 1971
## 2160 1970
## 2161 1969
## 2162 1968
## 2163 1967
## 2164 1966
## 2165 1965
## 2166 1964
## 2167 1963
## 2168 1962
## 2169 1961
## 2170 1960
## 2171 2021
## 2172 2020
## 2173 2019
## 2174 2018
## 2175 2017
## 2176 2016
## 2177 2015
## 2178 2014
## 2179 2013
## 2180 2012
## 2181 2011
## 2182 2010
## 2183 2009
## 2184 2008
## 2185 2007
## 2186 2006
## 2187 2005
## 2188 2004
## 2189 2003
## 2190 2002
## 2191 2001
## 2192 2000
## 2193 1999
## 2194 1998
## 2195 1997
## 2196 1996
## 2197 1995
## 2198 1994
## 2199 1993
## 2200 1992
## 2201 1991
## 2202 1990
## 2203 1989
## 2204 1988
## 2205 1987
## 2206 1986
## 2207 1985
## 2208 1984
## 2209 1983
## 2210 1982
## 2211 1981
## 2212 1980
## 2213 1979
## 2214 1978
## 2215 1977
## 2216 1976
## 2217 1975
## 2218 1974
## 2219 1973
## 2220 1972
## 2221 1971
## 2222 1970
## 2223 1969
## 2224 1968
## 2225 1967
## 2226 1966
## 2227 1965
## 2228 1964
## 2229 1963
## 2230 1962
## 2231 1961
## 2232 1960
## 2233 2021
## 2234 2020
## 2235 2019
## 2236 2018
## 2237 2017
## 2238 2016
## 2239 2015
## 2240 2014
## 2241 2013
## 2242 2012
## 2243 2011
## 2244 2010
## 2245 2009
## 2246 2008
## 2247 2007
## 2248 2006
## 2249 2005
## 2250 2004
## 2251 2003
## 2252 2002
## 2253 2001
## 2254 2000
## 2255 1999
## 2256 1998
## 2257 1997
## 2258 1996
## 2259 1995
## 2260 1994
## 2261 1993
## 2262 1992
## 2263 1991
## 2264 1990
## 2265 1989
## 2266 1988
## 2267 1987
## 2268 1986
## 2269 1985
## 2270 1984
## 2271 1983
## 2272 1982
## 2273 1981
## 2274 1980
## 2275 1979
## 2276 1978
## 2277 1977
## 2278 1976
## 2279 1975
## 2280 1974
## 2281 1973
## 2282 1972
## 2283 1971
## 2284 1970
## 2285 1969
## 2286 1968
## 2287 1967
## 2288 1966
## 2289 1965
## 2290 1964
## 2291 1963
## 2292 1962
## 2293 1961
## 2294 1960
## 2295 2021
## 2296 2020
## 2297 2019
## 2298 2018
## 2299 2017
## 2300 2016
## 2301 2015
## 2302 2014
## 2303 2013
## 2304 2012
## 2305 2011
## 2306 2010
## 2307 2009
## 2308 2008
## 2309 2007
## 2310 2006
## 2311 2005
## 2312 2004
## 2313 2003
## 2314 2002
## 2315 2001
## 2316 2000
## 2317 1999
## 2318 1998
## 2319 1997
## 2320 1996
## 2321 1995
## 2322 1994
## 2323 1993
## 2324 1992
## 2325 1991
## 2326 1990
## 2327 1989
## 2328 1988
## 2329 1987
## 2330 1986
## 2331 1985
## 2332 1984
## 2333 1983
## 2334 1982
## 2335 1981
## 2336 1980
## 2337 1979
## 2338 1978
## 2339 1977
## 2340 1976
## 2341 1975
## 2342 1974
## 2343 1973
## 2344 1972
## 2345 1971
## 2346 1970
## 2347 1969
## 2348 1968
## 2349 1967
## 2350 1966
## 2351 1965
## 2352 1964
## 2353 1963
## 2354 1962
## 2355 1961
## 2356 1960
## 2357 2021
## 2358 2020
## 2359 2019
## 2360 2018
## 2361 2017
## 2362 2016
## 2363 2015
## 2364 2014
## 2365 2013
## 2366 2012
## 2367 2011
## 2368 2010
## 2369 2009
## 2370 2008
## 2371 2007
## 2372 2006
## 2373 2005
## 2374 2004
## 2375 2003
## 2376 2002
## 2377 2001
## 2378 2000
## 2379 1999
## 2380 1998
## 2381 1997
## 2382 1996
## 2383 1995
## 2384 1994
## 2385 1993
## 2386 1992
## 2387 1991
## 2388 1990
## 2389 1989
## 2390 1988
## 2391 1987
## 2392 1986
## 2393 1985
## 2394 1984
## 2395 1983
## 2396 1982
## 2397 1981
## 2398 1980
## 2399 1979
## 2400 1978
## 2401 1977
## 2402 1976
## 2403 1975
## 2404 1974
## 2405 1973
## 2406 1972
## 2407 1971
## 2408 1970
## 2409 1969
## 2410 1968
## 2411 1967
## 2412 1966
## 2413 1965
## 2414 1964
## 2415 1963
## 2416 1962
## 2417 1961
## 2418 1960
## 2419 2021
## 2420 2020
## 2421 2019
## 2422 2018
## 2423 2017
## 2424 2016
## 2425 2015
## 2426 2014
## 2427 2013
## 2428 2012
## 2429 2011
## 2430 2010
## 2431 2009
## 2432 2008
## 2433 2007
## 2434 2006
## 2435 2005
## 2436 2004
## 2437 2003
## 2438 2002
## 2439 2001
## 2440 2000
## 2441 1999
## 2442 1998
## 2443 1997
## 2444 1996
## 2445 1995
## 2446 1994
## 2447 1993
## 2448 1992
## 2449 1991
## 2450 1990
## 2451 1989
## 2452 1988
## 2453 1987
## 2454 1986
## 2455 1985
## 2456 1984
## 2457 1983
## 2458 1982
## 2459 1981
## 2460 1980
## 2461 1979
## 2462 1978
## 2463 1977
## 2464 1976
## 2465 1975
## 2466 1974
## 2467 1973
## 2468 1972
## 2469 1971
## 2470 1970
## 2471 1969
## 2472 1968
## 2473 1967
## 2474 1966
## 2475 1965
## 2476 1964
## 2477 1963
## 2478 1962
## 2479 1961
## 2480 1960
## 2481 2021
## 2482 2020
## 2483 2019
## 2484 2018
## 2485 2017
## 2486 2016
## 2487 2015
## 2488 2014
## 2489 2013
## 2490 2012
## 2491 2011
## 2492 2010
## 2493 2009
## 2494 2008
## 2495 2007
## 2496 2006
## 2497 2005
## 2498 2004
## 2499 2003
## 2500 2002
## 2501 2001
## 2502 2000
## 2503 1999
## 2504 1998
## 2505 1997
## 2506 1996
## 2507 1995
## 2508 1994
## 2509 1993
## 2510 1992
## 2511 1991
## 2512 1990
## 2513 1989
## 2514 1988
## 2515 1987
## 2516 1986
## 2517 1985
## 2518 1984
## 2519 1983
## 2520 1982
## 2521 1981
## 2522 1980
## 2523 1979
## 2524 1978
## 2525 1977
## 2526 1976
## 2527 1975
## 2528 1974
## 2529 1973
## 2530 1972
## 2531 1971
## 2532 1970
## 2533 1969
## 2534 1968
## 2535 1967
## 2536 1966
## 2537 1965
## 2538 1964
## 2539 1963
## 2540 1962
## 2541 1961
## 2542 1960
## 2543 2021
## 2544 2020
## 2545 2019
## 2546 2018
## 2547 2017
## 2548 2016
## 2549 2015
## 2550 2014
## 2551 2013
## 2552 2012
## 2553 2011
## 2554 2010
## 2555 2009
## 2556 2008
## 2557 2007
## 2558 2006
## 2559 2005
## 2560 2004
## 2561 2003
## 2562 2002
## 2563 2001
## 2564 2000
## 2565 1999
## 2566 1998
## 2567 1997
## 2568 1996
## 2569 1995
## 2570 1994
## 2571 1993
## 2572 1992
## 2573 1991
## 2574 1990
## 2575 1989
## 2576 1988
## 2577 1987
## 2578 1986
## 2579 1985
## 2580 1984
## 2581 1983
## 2582 1982
## 2583 1981
## 2584 1980
## 2585 1979
## 2586 1978
## 2587 1977
## 2588 1976
## 2589 1975
## 2590 1974
## 2591 1973
## 2592 1972
## 2593 1971
## 2594 1970
## 2595 1969
## 2596 1968
## 2597 1967
## 2598 1966
## 2599 1965
## 2600 1964
## 2601 1963
## 2602 1962
## 2603 1961
## 2604 1960
## 2605 2021
## 2606 2020
## 2607 2019
## 2608 2018
## 2609 2017
## 2610 2016
## 2611 2015
## 2612 2014
## 2613 2013
## 2614 2012
## 2615 2011
## 2616 2010
## 2617 2009
## 2618 2008
## 2619 2007
## 2620 2006
## 2621 2005
## 2622 2004
## 2623 2003
## 2624 2002
## 2625 2001
## 2626 2000
## 2627 1999
## 2628 1998
## 2629 1997
## 2630 1996
## 2631 1995
## 2632 1994
## 2633 1993
## 2634 1992
## 2635 1991
## 2636 1990
## 2637 1989
## 2638 1988
## 2639 1987
## 2640 1986
## 2641 1985
## 2642 1984
## 2643 1983
## 2644 1982
## 2645 1981
## 2646 1980
## 2647 1979
## 2648 1978
## 2649 1977
## 2650 1976
## 2651 1975
## 2652 1974
## 2653 1973
## 2654 1972
## 2655 1971
## 2656 1970
## 2657 1969
## 2658 1968
## 2659 1967
## 2660 1966
## 2661 1965
## 2662 1964
## 2663 1963
## 2664 1962
## 2665 1961
## 2666 1960
## 2667 2021
## 2668 2020
## 2669 2019
## 2670 2018
## 2671 2017
## 2672 2016
## 2673 2015
## 2674 2014
## 2675 2013
## 2676 2012
## 2677 2011
## 2678 2010
## 2679 2009
## 2680 2008
## 2681 2007
## 2682 2006
## 2683 2005
## 2684 2004
## 2685 2003
## 2686 2002
## 2687 2001
## 2688 2000
## 2689 1999
## 2690 1998
## 2691 1997
## 2692 1996
## 2693 1995
## 2694 1994
## 2695 1993
## 2696 1992
## 2697 1991
## 2698 1990
## 2699 1989
## 2700 1988
## 2701 1987
## 2702 1986
## 2703 1985
## 2704 1984
## 2705 1983
## 2706 1982
## 2707 1981
## 2708 1980
## 2709 1979
## 2710 1978
## 2711 1977
## 2712 1976
## 2713 1975
## 2714 1974
## 2715 1973
## 2716 1972
## 2717 1971
## 2718 1970
## 2719 1969
## 2720 1968
## 2721 1967
## 2722 1966
## 2723 1965
## 2724 1964
## 2725 1963
## 2726 1962
## 2727 1961
## 2728 1960
## 2729 2021
## 2730 2020
## 2731 2019
## 2732 2018
## 2733 2017
## 2734 2016
## 2735 2015
## 2736 2014
## 2737 2013
## 2738 2012
## 2739 2011
## 2740 2010
## 2741 2009
## 2742 2008
## 2743 2007
## 2744 2006
## 2745 2005
## 2746 2004
## 2747 2003
## 2748 2002
## 2749 2001
## 2750 2000
## 2751 1999
## 2752 1998
## 2753 1997
## 2754 1996
## 2755 1995
## 2756 1994
## 2757 1993
## 2758 1992
## 2759 1991
## 2760 1990
## 2761 1989
## 2762 1988
## 2763 1987
## 2764 1986
## 2765 1985
## 2766 1984
## 2767 1983
## 2768 1982
## 2769 1981
## 2770 1980
## 2771 1979
## 2772 1978
## 2773 1977
## 2774 1976
## 2775 1975
## 2776 1974
## 2777 1973
## 2778 1972
## 2779 1971
## 2780 1970
## 2781 1969
## 2782 1968
## 2783 1967
## 2784 1966
## 2785 1965
## 2786 1964
## 2787 1963
## 2788 1962
## 2789 1961
## 2790 1960
## 2791 2021
## 2792 2020
## 2793 2019
## 2794 2018
## 2795 2017
## 2796 2016
## 2797 2015
## 2798 2014
## 2799 2013
## 2800 2012
## 2801 2011
## 2802 2010
## 2803 2009
## 2804 2008
## 2805 2007
## 2806 2006
## 2807 2005
## 2808 2004
## 2809 2003
## 2810 2002
## 2811 2001
## 2812 2000
## 2813 1999
## 2814 1998
## 2815 1997
## 2816 1996
## 2817 1995
## 2818 1994
## 2819 1993
## 2820 1992
## 2821 1991
## 2822 1990
## 2823 1989
## 2824 1988
## 2825 1987
## 2826 1986
## 2827 1985
## 2828 1984
## 2829 1983
## 2830 1982
## 2831 1981
## 2832 1980
## 2833 1979
## 2834 1978
## 2835 1977
## 2836 1976
## 2837 1975
## 2838 1974
## 2839 1973
## 2840 1972
## 2841 1971
## 2842 1970
## 2843 1969
## 2844 1968
## 2845 1967
## 2846 1966
## 2847 1965
## 2848 1964
## 2849 1963
## 2850 1962
## 2851 1961
## 2852 1960
## 2853 2021
## 2854 2020
## 2855 2019
## 2856 2018
## 2857 2017
## 2858 2016
## 2859 2015
## 2860 2014
## 2861 2013
## 2862 2012
## 2863 2011
## 2864 2010
## 2865 2009
## 2866 2008
## 2867 2007
## 2868 2006
## 2869 2005
## 2870 2004
## 2871 2003
## 2872 2002
## 2873 2001
## 2874 2000
## 2875 1999
## 2876 1998
## 2877 1997
## 2878 1996
## 2879 1995
## 2880 1994
## 2881 1993
## 2882 1992
## 2883 1991
## 2884 1990
## 2885 1989
## 2886 1988
## 2887 1987
## 2888 1986
## 2889 1985
## 2890 1984
## 2891 1983
## 2892 1982
## 2893 1981
## 2894 1980
## 2895 1979
## 2896 1978
## 2897 1977
## 2898 1976
## 2899 1975
## 2900 1974
## 2901 1973
## 2902 1972
## 2903 1971
## 2904 1970
## 2905 1969
## 2906 1968
## 2907 1967
## 2908 1966
## 2909 1965
## 2910 1964
## 2911 1963
## 2912 1962
## 2913 1961
## 2914 1960
## 2915 2021
## 2916 2020
## 2917 2019
## 2918 2018
## 2919 2017
## 2920 2016
## 2921 2015
## 2922 2014
## 2923 2013
## 2924 2012
## 2925 2011
## 2926 2010
## 2927 2009
## 2928 2008
## 2929 2007
## 2930 2006
## 2931 2005
## 2932 2004
## 2933 2003
## 2934 2002
## 2935 2001
## 2936 2000
## 2937 1999
## 2938 1998
## 2939 1997
## 2940 1996
## 2941 1995
## 2942 1994
## 2943 1993
## 2944 1992
## 2945 1991
## 2946 1990
## 2947 1989
## 2948 1988
## 2949 1987
## 2950 1986
## 2951 1985
## 2952 1984
## 2953 1983
## 2954 1982
## 2955 1981
## 2956 1980
## 2957 1979
## 2958 1978
## 2959 1977
## 2960 1976
## 2961 1975
## 2962 1974
## 2963 1973
## 2964 1972
## 2965 1971
## 2966 1970
## 2967 1969
## 2968 1968
## 2969 1967
## 2970 1966
## 2971 1965
## 2972 1964
## 2973 1963
## 2974 1962
## 2975 1961
## 2976 1960
## 2977 2021
## 2978 2020
## 2979 2019
## 2980 2018
## 2981 2017
## 2982 2016
## 2983 2015
## 2984 2014
## 2985 2013
## 2986 2012
## 2987 2011
## 2988 2010
## 2989 2009
## 2990 2008
## 2991 2007
## 2992 2006
## 2993 2005
## 2994 2004
## 2995 2003
## 2996 2002
## 2997 2001
## 2998 2000
## 2999 1999
## 3000 1998
## 3001 1997
## 3002 1996
## 3003 1995
## 3004 1994
## 3005 1993
## 3006 1992
## 3007 1991
## 3008 1990
## 3009 1989
## 3010 1988
## 3011 1987
## 3012 1986
## 3013 1985
## 3014 1984
## 3015 1983
## 3016 1982
## 3017 1981
## 3018 1980
## 3019 1979
## 3020 1978
## 3021 1977
## 3022 1976
## 3023 1975
## 3024 1974
## 3025 1973
## 3026 1972
## 3027 1971
## 3028 1970
## 3029 1969
## 3030 1968
## 3031 1967
## 3032 1966
## 3033 1965
## 3034 1964
## 3035 1963
## 3036 1962
## 3037 1961
## 3038 1960
## 3039 2021
## 3040 2020
## 3041 2019
## 3042 2018
## 3043 2017
## 3044 2016
## 3045 2015
## 3046 2014
## 3047 2013
## 3048 2012
## 3049 2011
## 3050 2010
## 3051 2009
## 3052 2008
## 3053 2007
## 3054 2006
## 3055 2005
## 3056 2004
## 3057 2003
## 3058 2002
## 3059 2001
## 3060 2000
## 3061 1999
## 3062 1998
## 3063 1997
## 3064 1996
## 3065 1995
## 3066 1994
## 3067 1993
## 3068 1992
## 3069 1991
## 3070 1990
## 3071 1989
## 3072 1988
## 3073 1987
## 3074 1986
## 3075 1985
## 3076 1984
## 3077 1983
## 3078 1982
## 3079 1981
## 3080 1980
## 3081 1979
## 3082 1978
## 3083 1977
## 3084 1976
## 3085 1975
## 3086 1974
## 3087 1973
## 3088 1972
## 3089 1971
## 3090 1970
## 3091 1969
## 3092 1968
## 3093 1967
## 3094 1966
## 3095 1965
## 3096 1964
## 3097 1963
## 3098 1962
## 3099 1961
## 3100 1960
## 3101 2021
## 3102 2020
## 3103 2019
## 3104 2018
## 3105 2017
## 3106 2016
## 3107 2015
## 3108 2014
## 3109 2013
## 3110 2012
## 3111 2011
## 3112 2010
## 3113 2009
## 3114 2008
## 3115 2007
## 3116 2006
## 3117 2005
## 3118 2004
## 3119 2003
## 3120 2002
## 3121 2001
## 3122 2000
## 3123 1999
## 3124 1998
## 3125 1997
## 3126 1996
## 3127 1995
## 3128 1994
## 3129 1993
## 3130 1992
## 3131 1991
## 3132 1990
## 3133 1989
## 3134 1988
## 3135 1987
## 3136 1986
## 3137 1985
## 3138 1984
## 3139 1983
## 3140 1982
## 3141 1981
## 3142 1980
## 3143 1979
## 3144 1978
## 3145 1977
## 3146 1976
## 3147 1975
## 3148 1974
## 3149 1973
## 3150 1972
## 3151 1971
## 3152 1970
## 3153 1969
## 3154 1968
## 3155 1967
## 3156 1966
## 3157 1965
## 3158 1964
## 3159 1963
## 3160 1962
## 3161 1961
## 3162 1960
## 3163 2021
## 3164 2020
## 3165 2019
## 3166 2018
## 3167 2017
## 3168 2016
## 3169 2015
## 3170 2014
## 3171 2013
## 3172 2012
## 3173 2011
## 3174 2010
## 3175 2009
## 3176 2008
## 3177 2007
## 3178 2006
## 3179 2005
## 3180 2004
## 3181 2003
## 3182 2002
## 3183 2001
## 3184 2000
## 3185 1999
## 3186 1998
## 3187 1997
## 3188 1996
## 3189 1995
## 3190 1994
## 3191 1993
## 3192 1992
## 3193 1991
## 3194 1990
## 3195 1989
## 3196 1988
## 3197 1987
## 3198 1986
## 3199 1985
## 3200 1984
## 3201 1983
## 3202 1982
## 3203 1981
## 3204 1980
## 3205 1979
## 3206 1978
## 3207 1977
## 3208 1976
## 3209 1975
## 3210 1974
## 3211 1973
## 3212 1972
## 3213 1971
## 3214 1970
## 3215 1969
## 3216 1968
## 3217 1967
## 3218 1966
## 3219 1965
## 3220 1964
## 3221 1963
## 3222 1962
## 3223 1961
## 3224 1960
## 3225 2021
## 3226 2020
## 3227 2019
## 3228 2018
## 3229 2017
## 3230 2016
## 3231 2015
## 3232 2014
## 3233 2013
## 3234 2012
## 3235 2011
## 3236 2010
## 3237 2009
## 3238 2008
## 3239 2007
## 3240 2006
## 3241 2005
## 3242 2004
## 3243 2003
## 3244 2002
## 3245 2001
## 3246 2000
## 3247 1999
## 3248 1998
## 3249 1997
## 3250 1996
## 3251 1995
## 3252 1994
## 3253 1993
## 3254 1992
## 3255 1991
## 3256 1990
## 3257 1989
## 3258 1988
## 3259 1987
## 3260 1986
## 3261 1985
## 3262 1984
## 3263 1983
## 3264 1982
## 3265 1981
## 3266 1980
## 3267 1979
## 3268 1978
## 3269 1977
## 3270 1976
## 3271 1975
## 3272 1974
## 3273 1973
## 3274 1972
## 3275 1971
## 3276 1970
## 3277 1969
## 3278 1968
## 3279 1967
## 3280 1966
## 3281 1965
## 3282 1964
## 3283 1963
## 3284 1962
## 3285 1961
## 3286 1960
## 3287 2021
## 3288 2020
## 3289 2019
## 3290 2018
## 3291 2017
## 3292 2016
## 3293 2015
## 3294 2014
## 3295 2013
## 3296 2012
## 3297 2011
## 3298 2010
## 3299 2009
## 3300 2008
## 3301 2007
## 3302 2006
## 3303 2005
## 3304 2004
## 3305 2003
## 3306 2002
## 3307 2001
## 3308 2000
## 3309 1999
## 3310 1998
## 3311 1997
## 3312 1996
## 3313 1995
## 3314 1994
## 3315 1993
## 3316 1992
## 3317 1991
## 3318 1990
## 3319 1989
## 3320 1988
## 3321 1987
## 3322 1986
## 3323 1985
## 3324 1984
## 3325 1983
## 3326 1982
## 3327 1981
## 3328 1980
## 3329 1979
## 3330 1978
## 3331 1977
## 3332 1976
## 3333 1975
## 3334 1974
## 3335 1973
## 3336 1972
## 3337 1971
## 3338 1970
## 3339 1969
## 3340 1968
## 3341 1967
## 3342 1966
## 3343 1965
## 3344 1964
## 3345 1963
## 3346 1962
## 3347 1961
## 3348 1960
Note: World Bank provides the WDI_csv for more information.
- WDICountry-Series.csv - 965,9KB
- WDICountry.csv - 125.8KB
- WDIData.csv - 193 MB
- WDIFootNote.csv - 61.1MB
- WDISeries-Time.csv - 46.1KB
- WDISeries.csv” - 3.5MB
B.2.5.5 Join Tables
There are three types of joining tables. Commands are from tidyverse packages though there is a way to do the same by Base R with appropriate arguments.
- Bind rows: bind_rows(), intersect(), setdiff(), union()
- Bind columns: bind_cols(), left_join(), right_join(), inner_join(), full_join()
- Filtering join: semi_join(), anti_join()
B.2.5.6 Join Tables: Quick References
Cheatsheet: Data Transformation, pages 2 and 3. You can download it from RStudio > Help.
Tidyverse Homepage:
- Efficiently bind multiple data frames by row and column: bind_rows(), bind_cols()
- Set operations: intersect(), setdiff(), union()
- Mutating joins: left_join(), right_join(), inner_join(), full_join()
- Filtering joins: semi_join(), anti_join()
R Studio Primers: Tidy Your Data – r4ds: Wrangle, II
- Reshape Data, Separate and Unite Columns, Join Data Sets
B.3 United Nations
` * UN Data: https://data.un.org - Datamarts: http://data.un.org/Explorer.aspx
B.3.1 Importing Data
- Get the URL (uniform resource locator) - copy the link
url_of_data <- "https://data.un.org/--long url--.csv"
- Download the file into the
destfilein data folder:
download.file(url = url_of_data, destfile = "data/un_pop.csv")
- Read the file:
df_un_pop <- read_csv("data/un_pop.csv")
Alternative, skip 2 and read the file using the URL.
* read_csv(url)
B.3.2 Example
B.3.2.1 Population
The followind do not look line the pdf above.
df_un_pop <- read_csv("https://data.un.org/_Docs/SYB/CSV/SYB64_1_202110_Population,%20Surface%20Area%20and%20Density.csv", skip = 1)## New names:
## Rows: 7260 Columns: 7
## ── Column specification
## ────────────────────────────────────────────────────────────────
## Delimiter: "," chr (4): ...2, Series, Footnotes, Source dbl (2): Region/Country/Area,
## Year
## ℹ Use `spec()` to retrieve the full column specification for this data. ℹ Specify the
## column types or set `show_col_types = FALSE` to quiet this message.
## • `` -> `...2`
df_un_pop## # A tibble: 7,260 × 7
## `Region/Country/Area` ...2 Year Series Value Footn…¹ Source
## <dbl> <chr> <dbl> <chr> <dbl> <chr> <chr>
## 1 1 Total, all countrie… 2010 Popul… 6957. <NA> Unite…
## 2 1 Total, all countrie… 2010 Popul… 3508. <NA> Unite…
## 3 1 Total, all countrie… 2010 Popul… 3449. <NA> Unite…
## 4 1 Total, all countrie… 2010 Sex r… 102. <NA> Unite…
## 5 1 Total, all countrie… 2010 Popul… 27 <NA> Unite…
## 6 1 Total, all countrie… 2010 Popul… 11 <NA> Unite…
## 7 1 Total, all countrie… 2010 Popul… 53.5 <NA> Unite…
## 8 1 Total, all countrie… 2015 Popul… 7380. <NA> Unite…
## 9 1 Total, all countrie… 2015 Popul… 3721. <NA> Unite…
## 10 1 Total, all countrie… 2015 Popul… 3659. <NA> Unite…
## # … with 7,250 more rows, and abbreviated variable name ¹Footnotes
colnames(df_un_pop)## [1] "Region/Country/Area" "...2" "Year"
## [4] "Series" "Value" "Footnotes"
## [7] "Source"
un_pop_tbl <- df_un_pop %>% select(num = "Region/Country/Area", region = "...2", year = "Year", series = "Series", value = "Value") %>%
pivot_wider(names_from = series, values_from = value)
un_pop_tbl## # A tibble: 1,058 × 11
## num region year Popul…¹ Popul…² Popul…³ Sex r…⁴ Popul…⁵ Popul…⁶ Popul…⁷
## <dbl> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 Total, a… 2010 6957. 3508. 3449. 102. 27 11 53.5
## 2 1 Total, a… 2015 7380. 3721. 3659. 102. 26.2 12.2 56.7
## 3 1 Total, a… 2019 7713. 3889. 3824. 102. 25.6 13.2 59.3
## 4 1 Total, a… 2021 7875. 3970. 3905. 102. 25.3 13.7 60.5
## 5 2 Africa 2010 1039. 518. 521. 99.5 41.5 5.1 35.1
## 6 2 Africa 2015 1182. 590. 592. 99.7 41.1 5.3 39.9
## 7 2 Africa 2019 1308. 654. 655. 99.8 40.6 5.5 44.1
## 8 2 Africa 2021 1373. 686. 687. 99.9 40.1 5.6 46.3
## 9 15 Northern… 2010 203. 102. 101. 101. 32.1 7.4 26.1
## 10 15 Northern… 2015 224. 112. 111. 101. 32.4 8 28.8
## # … with 1,048 more rows, 1 more variable: `Surface area (thousand km2)` <dbl>,
## # and abbreviated variable names ¹`Population mid-year estimates (millions)`,
## # ²`Population mid-year estimates for males (millions)`,
## # ³`Population mid-year estimates for females (millions)`,
## # ⁴`Sex ratio (males per 100 females)`,
## # ⁵`Population aged 0 to 14 years old (percentage)`,
## # ⁶`Population aged 60+ years old (percentage)`, ⁷`Population density`
colnames(un_pop_tbl) <- c("num", "region", "year", "total", "male", "female", "ratio", "0-14", "60+", "density", "area")
un_pop_tbl## # A tibble: 1,058 × 11
## num region year total male female ratio `0-14` `60+` density area
## <dbl> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 1 Total, all … 2010 6957. 3508. 3449. 102. 27 11 53.5 NA
## 2 1 Total, all … 2015 7380. 3721. 3659. 102. 26.2 12.2 56.7 136162
## 3 1 Total, all … 2019 7713. 3889. 3824. 102. 25.6 13.2 59.3 130094
## 4 1 Total, all … 2021 7875. 3970. 3905. 102. 25.3 13.7 60.5 NA
## 5 2 Africa 2010 1039. 518. 521. 99.5 41.5 5.1 35.1 NA
## 6 2 Africa 2015 1182. 590. 592. 99.7 41.1 5.3 39.9 30311
## 7 2 Africa 2019 1308. 654. 655. 99.8 40.6 5.5 44.1 29648
## 8 2 Africa 2021 1373. 686. 687. 99.9 40.1 5.6 46.3 NA
## 9 15 Northern Af… 2010 203. 102. 101. 101. 32.1 7.4 26.1 NA
## 10 15 Northern Af… 2015 224. 112. 111. 101. 32.4 8 28.8 7880
## # … with 1,048 more rows